/* ---------- BREADCRUMB OVERLAY ---------- */
.special-list {
  position: relative;
  z-index: 1;
  margin-top: -56px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f7 100%);
}

#breadcrumb:has(+ .special-list) {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

#breadcrumb:has(+ .special-list) > div {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#breadcrumb:has(+ .special-list) .breadcrumb-item a {
  color: rgba(255,255,255,0.8);
}

#breadcrumb:has(+ .special-list) .breadcrumb-item a:hover {
  color: #fff;
}

#breadcrumb:has(+ .special-list) .breadcrumb-item:last-child {
  color: #fff !important;
}

#breadcrumb:has(+ .special-list) .breadcrumb-item::after {
  color: rgba(255,255,255,0.5);
}

/* Hero styles come from .page-hero in main.css. */
.special-list .page-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

/* ---------- SPECIALS SECTIONS ---------- */
.special-list .wrap-list-special {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- SECTION SPACING ---------- */
.special-list .wrap-list-special .section-kicker {
  margin-top: 48px;
}

.special-list .wrap-list-special .section-title {
  margin-bottom: 24px;
}

/* ---------- SPECIALS GRID ---------- */
/* Grid layout defined in card_item.css */

/* ---------- SKELETON LOADER ---------- */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.spc-shimmer {
  background: linear-gradient(90deg, #eee 25%, #e0e0e0 50%, #eee 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite ease-in-out;
}

.spc-skeleton__header {
  margin-top: 48px;
  margin-bottom: 24px;
}

.spc-skeleton__overline {
  width: 100px;
  height: 12px;
  border-radius: 6px;
  background: #eee;
  margin-bottom: 8px;
}

.spc-skeleton__title {
  width: 260px;
  height: 28px;
  border-radius: 8px;
  background: #e8e8e8;
}

.spc-skeleton-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.spc-skeleton-card__image {
  aspect-ratio: 16 / 8;
  width: 100%;
}

.spc-skeleton-card__body {
  padding: 20px 24px 24px;
}

.spc-skeleton-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.spc-skeleton-card__date {
  width: 120px;
  height: 24px;
  border-radius: 100px;
}

.spc-skeleton-card__logo {
  width: 80px;
  height: 24px;
  border-radius: 6px;
}

.spc-skeleton-card__line {
  border-radius: 6px;
  margin-bottom: 10px;
}

.spc-skeleton-card__line--title {
  width: 75%;
  height: 22px;
}

.spc-skeleton-card__line--sub {
  width: 90%;
  height: 16px;
}

.spc-skeleton-card__line--desc {
  width: 60%;
  height: 14px;
  margin-bottom: 20px;
}

.spc-skeleton-card__btns {
  display: flex;
  gap: 10px;
}

.spc-skeleton-card__btn {
  flex: 1;
  height: 44px;
  border-radius: 10px;
}

/* ---------- EMPTY STATE ---------- */
.special-list .spc-empty {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-top: 48px;
}

.special-list .spc-empty__icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(29,66,136,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-list .spc-empty__content {
  flex: 1;
}

.special-list .spc-empty__heading {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.special-list .spc-empty__text {
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px;
}

.special-list .spc-empty__actions {
  display: flex;
  gap: 12px;
}

/* Empty-state action buttons use .btn-cta-green / .btn-cta-blue from main.css. */

@media (max-width: 768px) {
  .special-list .spc-empty {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }

  .special-list .spc-empty__actions {
    flex-direction: column;
    width: 100%;
  }

  .special-list .spc-empty__actions .btn-cta-green,
  .special-list .spc-empty__actions .btn-cta-blue {
    width: 100%;
  }
}

/* ---------- WHY CHOOSE ---------- */
.special-list .spc-why {
  padding: 72px 24px;
  background: #f8f9fa;
}

.special-list .spc-why__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 56px;
}

.special-list .spc-why__content {
  flex: 1;
}

.special-list .spc-why .section-kicker {
  margin-top: 0;
}

.special-list .spc-why .section-title {
  margin-bottom: 16px;
}

.special-list .spc-why__intro {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 24px;
}

.special-list .spc-why__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.special-list .spc-why__list li {
  list-style: none !important;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  padding: 0;
}

.special-list .spc-why__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 4px;
  background: #3eb049;
  border-radius: 50%;
  box-sizing: border-box;
}

.special-list .spc-why__image-wrap {
  flex: 0 0 400px;
  position: relative;
}

.special-list .spc-why__image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ---------- BOTTOM CTA ---------- */
.special-list .spc-cta {
  background: var(--brand-primary);
  padding: 91px 24px;
  text-align: center;
}

.special-list .spc-cta__content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special-list .spc-cta__heading {
  color: #fff;
  margin: 0 0 28px;
}

@media (max-width: 767px) {
  .special-list .spc-cta {
    padding: 75px 24px;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .special-list .page-hero__ctas {
    flex-direction: column;
    gap: 8px;
  }

  .special-list .page-hero__ctas .btn-cta-green {
    width: 100%;
    justify-content: center;
    max-width: 240px;
  }

  .special-list .spc-why__inner {
    flex-direction: column;
    gap: 32px;
  }

  .special-list .spc-why__image-wrap {
    flex: none;
    width: 100%;
  }

  .special-list .spc-why__image-wrap img {
    height: 240px;
  }

  .special-list .spc-why {
    padding: 40px 20px;
  }
}
