/* ============================================
   THE CANADIAN JETSETTER — BLOG PAGE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

:root {
  --red:          #8B0000;
  --red-light:    #a80000;
  --red-glow:     rgba(139, 0, 0, 0.35);
  --black:        #1a0000;
  --card-bg:      #240000;
  --card-hover:   #2d0000;
  --border:       #3d0000;
  --white:        #ffffff;
  --grey-100:     #f5f5f5;
  --grey-400:     #ccbbbb;
  --grey-600:     #7a5555;
  --cream:        #F6F2E7;
  --cream-border: #ddd8ca;
  --cream-card:   #fffcf5;
  --cream-text:   #1a0000;
  --cream-muted:  #6b4a4a;
  --font:         'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ───────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
  border: none;
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── TOP NAV ───────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
  position: relative;
  padding-left: 8px;
}

.nav-logo {
  flex: 1;
  padding-left: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
  padding: 5px 0;
}

/* Hamburger button */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: width 0.2s, transform 0.25s, opacity 0.2s;
}

.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }

.nav-hamburger:hover span { background: var(--white); }

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  background: #1a0000;
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none;
}

.nav-dropdown.is-open {
  display: block;
}

.nav-dropdown ul {
  list-style: none;
  padding: 6px 0;
}

.nav-dropdown ul li a {
  display: block;
  padding: 11px 20px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.nav-dropdown ul li a:hover {
  background: rgba(139, 0, 0, 0.35);
  color: var(--white);
  padding-left: 26px;
}

/* ── DESKTOP NAV LINKS ─────────────────────── */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 10;
}

.nav-item--dropdown { position: relative; }

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link--btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: inherit;
}

.nav-chevron {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.nav-link--btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0000;
  min-width: 180px;
  border-top: 2px solid var(--red);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none;
  z-index: 110;
}

.nav-submenu.is-open { display: block; }

.nav-submenu a {
  display: block;
  padding: 11px 20px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-submenu a:last-child { border-bottom: none; }

.nav-submenu a:hover {
  background: rgba(139,0,0,0.35);
  color: var(--white);
}

/* Desktop: hide hamburger */
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
}

/* Mobile: hide desktop nav */
@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── HERO ──────────────────────────────────── */
.hero {
  padding: 56px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('TCJ Website Assets/icons/website banner (1).jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #761915 0%, #000000 100%);
  opacity: 0.5;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: #e8e8e8;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  color: var(--white);
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ── FEATURED LATEST POST ──────────────────── */
.featured-section {
  background: var(--black);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.featured-card {
  display: grid;
  grid-template-columns: 55% 45%;
  border: 1px solid var(--red);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(139, 0, 0, 0.18);
  min-height: 360px;
}

.featured-img-wrap {
  display: block;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.featured-img-wrap:hover .featured-img {
  transform: scale(1.03);
}

.featured-body {
  background: #240000;
  padding: 36px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.featured-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.featured-excerpt {
  font-size: 0.92rem;
  color: var(--grey-400);
  line-height: 1.65;
}

.featured-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 4px 20px var(--red-glow);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
}

.featured-cta:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}

/* ── FILTER BAR ────────────────────────────── */
.filter-bar {
  background: #120000;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── SEARCH BAR ────────────────────────────── */
.blog-search-input {
  width: 300px;
  max-width: 100%;
  padding: 9px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid #761915;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.blog-search-input::placeholder {
  color: var(--white);
  opacity: 0.45;
}

.blog-search-input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.11);
}

.blog-search-input::-webkit-search-cancel-button {
  filter: invert(0.7);
  cursor: pointer;
}

/* ── FILTER DROPDOWN ───────────────────────── */
.filter-dropdown {
  position: relative;
}

.filter-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.filter-dropdown-btn:hover {
  background: #6b0000;
  border-color: #6b0000;
}

.filter-chevron {
  font-size: 0.7em;
  transition: transform 0.2s;
}

.filter-dropdown-btn[aria-expanded="true"] .filter-chevron {
  transform: rotate(180deg);
}

.filter-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 200;
  width: 300px;
  max-width: 90vw;
  background: #1a0000;
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}

.filter-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.88rem;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.filter-search-input::placeholder {
  color: var(--cream);
  opacity: 0.4;
}

.filter-search-input:focus {
  border-color: var(--red);
}

.filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 2px;
  border-radius: 3px;
  user-select: none;
  transition: background 0.15s;
}

.filter-checkbox-item:hover {
  background: rgba(139,0,0,0.2);
}

.filter-checkbox-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-checkbox-label {
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 1.3;
}

.filter-panel-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 2px;
}

.filter-apply-btn {
  background: var(--red);
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.filter-apply-btn:hover {
  background: #6b0000;
}

.filter-clear-link {
  background: none;
  border: none;
  color: var(--cream);
  opacity: 0.6;
  font-family: var(--font);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.filter-clear-link:hover {
  opacity: 1;
}

/* ── BLOG SECTION ──────────────────────────── */
.blog-section {
  background: var(--cream);
  padding: 52px 0 60px;
}

/* ── BLOG LOADING / ERROR ──────────────────── */
.blog-loading {
  text-align: center;
  padding: 48px 0;
  color: var(--cream-muted);
}

.blog-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.blog-loading-spinner {
  display: block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--cream-border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.blog-error {
  text-align: center;
  padding: 48px 0;
  color: var(--cream-muted);
}

.blog-error a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.blog-error a:hover {
  text-decoration: underline;
}

/* ── BLOG GRID ─────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* ── BLOG CARD ─────────────────────────────── */
.blog-card {
  text-decoration: none;
  color: inherit;
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(139, 0, 0, 0.12);
  border-color: var(--red);
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  /* Placeholder shown when thumbnail is absent or fails to load */
  background: #761915 url('TCJ Website Assets/logos/banner_text_logo.png') center / 55% auto no-repeat;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-tag {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--cream-muted);
  font-weight: 500;
}

.blog-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--cream-text);
  margin-bottom: 14px;
  flex: 1;
}

.blog-title a {
  color: var(--cream-text);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-title a:hover {
  color: var(--red);
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-read-more {
  display: inline-block;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s, letter-spacing 0.2s;
  margin-top: auto;
}

.blog-read-more:hover {
  color: var(--red-light);
  letter-spacing: 0.05em;
}

/* ── LOAD MORE ─────────────────────────────── */
.load-more-wrap {
  text-align: center;
  padding-top: 8px;
}

/* ── NEWSLETTER SECTION ────────────────────── */
.newsletter-section {
  background: var(--black);
  padding: 48px 0;
}

.newsletter-box {
  background: #120000;
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 36px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 0 48px rgba(139, 0, 0, 0.18);
}

.newsletter-box h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}

.beehiiv-wrapper {
  width: 100%;
  overflow: hidden;
}

.beehiiv-wrapper iframe {
  width: 100%;
  max-width: 100%;
}

/* ── SOCIAL PROOF BAR ──────────────────────── */
.social-proof-bar {
  background: var(--red);
  padding: 16px 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.social-stat {
  text-align: center;
}

.social-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.social-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: #120000;
  border-top: 1px solid var(--border);
  padding: 28px 0 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--cream);
  opacity: 0.55;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, opacity 0.2s;
}

.footer-nav a:hover {
  color: var(--cream);
  opacity: 1;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.3;
  text-align: center;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-img-wrap {
    aspect-ratio: 16 / 9;
  }

  .featured-body {
    padding: 28px 24px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .social-proof-inner {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    padding: 36px 0 40px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .filter-panel {
    width: min(300px, 92vw);
  }

  .newsletter-box {
    padding: 28px 20px;
  }

  .social-proof-inner {
    gap: 28px;
  }

  footer {
    padding: 40px 0 28px;
  }
}

/* ── SOCIAL FOLLOW ─────────────────────────── */
.social-section {
  padding: 60px 0;
  background: #2a0000;
  border-top: 1px solid var(--border);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.social-card {
  display: block;
  text-decoration: none;
}

.social-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.social-card:hover .social-thumb-wrapper {
  border-color: var(--red);
  transform: translateY(-3px);
}

.social-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.social-card:hover .social-thumb-wrapper img {
  opacity: 0.85;
}

.social-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: white;
  background: rgba(139, 0, 0, 0.8);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-follow-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 36px;
  }
}

@media (max-width: 640px) {
  .social-follow-ctas {
    flex-direction: column;
    align-items: center;
  }

  .social-follow-ctas .btn {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }
}

/* ── Mobile OFFERINGS sub-dropdown ──────────── */
.mobile-offerings-btn {
  display: block;
  width: 100%;
  padding: 11px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.mobile-offerings-btn:hover {
  background: rgba(139, 0, 0, 0.35);
  color: var(--white);
  padding-left: 26px;
}
.mobile-offerings-arrow {
  display: inline-block;
  float: right;
  transition: transform 0.3s ease;
}
.mobile-offerings-btn[aria-expanded="true"] .mobile-offerings-arrow {
  transform: rotate(90deg);
}
.mobile-offerings-sub {
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.15);
}
.mobile-offerings-sub.is-open {
  max-height: 300px;
}
.mobile-offerings-sub li a {
  padding-left: 32px;
}


/* ── DYNAMIC LOADING INDICATOR ────────────── */
.dyn-loading {
  display: flex;
  justify-content: center;
  padding: 32px 0 8px;
}

/* ── NO RESULTS ────────────────────────────── */
.blog-no-results {
  text-align: center;
  padding: 56px 0;
  color: var(--cream-muted);
  font-size: 1rem;
}
