/* ============================================================
   BLOG PAGE — blog-page.css
   Loads ONLY on Blog page template (Template Name: Blog).
   ============================================================ */


/* ═══════════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════════ */

.bl-hero {
  position: relative;
  min-height: 620px;
  background-color: #030B23;
  background-image: url('../images/blog-hero-bg.jpg'); /* fallback; overridden by inline style */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bl-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 35, 0.82);
  z-index: 1;
}

.bl-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--site-header-full-height, 153px) + 64px) 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Left Content ── */
.bl-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.bl-hero__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.bl-hero__desc {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
  max-width: 480px;
}

.bl-hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bl-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.bl-hero__btn--primary {
  background: #D6B54A;
  color: #071B2E;
}
.bl-hero__btn--primary:hover { background: #c4a33d; color: #071B2E; }

.bl-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
}
.bl-hero__btn--secondary:hover { background: rgba(255, 255, 255, 0.16); color: #ffffff; }

/* ── Right: Search + Chips ── */
.bl-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl-hero__search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  backdrop-filter: blur(12px);
}

.bl-hero__search-icon {
  color: rgba(255, 255, 255, 0.50);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bl-hero__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  color: #ffffff;
  padding: 8px 4px;
  min-width: 0;
}
.bl-hero__search-input::placeholder { color: rgba(255, 255, 255, 0.45); }

.bl-hero__search-btn {
  background: #D6B54A;
  color: #071B2E;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.bl-hero__search-btn:hover { background: #c4a33d; }

.bl-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bl-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.bl-hero__chip:hover {
  background: rgba(214, 181, 74, 0.14);
  border-color: rgba(214, 181, 74, 0.35);
  color: #ffffff;
}

.bl-hero__chip-dot {
  width: 8px;
  height: 8px;
  color: #D6B54A;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 2: FEATURED ARTICLE
   ═══════════════════════════════════════════════════════════ */

.bl-featured {
  background: #ffffff;
  padding: 88px 0;
}

.bl-featured__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.bl-featured__heading {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #071B2E;
  text-align: center;
  margin: 0 0 52px;
  letter-spacing: -0.01em;
}

.bl-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 40px rgba(7, 27, 46, 0.10);
  padding: 40px;
  border: 1px solid rgba(7, 27, 46, 0.06);
}

.bl-featured__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #0E2238 0%, #1a3a5c 100%);
}

.bl-featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bl-featured__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #071B2E 0%, #0E2A44 60%, #071B2E 100%);
}

.bl-featured__content {
  display: flex;
  flex-direction: column;
}

.bl-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bl-featured__category {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-radius: 999px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bl-featured__read-time {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  color: #94A3B8;
}

.bl-featured__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: #071B2E;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.bl-featured__desc {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  line-height: 1.70;
  color: #64748B;
  margin: 0 0 28px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-featured__author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.bl-featured__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6B54A, #c4a33d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #071B2E;
  flex-shrink: 0;
}

.bl-featured__author-name {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #071B2E;
}

.bl-featured__author-date {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  color: #94A3B8;
  margin-top: 2px;
}

.bl-featured__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid #071B2E;
  color: #071B2E;
  background: transparent;
  border-radius: 8px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.bl-featured__btn:hover { background: #071B2E; color: #ffffff; }


/* ═══════════════════════════════════════════════════════════
   SECTION 3: LATEST ARTICLES
   ═══════════════════════════════════════════════════════════ */

.bl-latest {
  background: #F6F7FA;
  padding: 88px 0;
}

.bl-latest__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.bl-latest__heading {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #071B2E;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.bl-latest__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ── Article Grid ── */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bl-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(7, 27, 46, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.bl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(7, 27, 46, 0.14);
}

.bl-card__image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #0E2238 0%, #1a3a5c 100%);
  position: relative;
}

.bl-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.bl-card:hover .bl-card__image { transform: scale(1.04); }

.bl-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl-card__body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bl-card__category {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  align-self: flex-start;
}
.bl-card__category--airport   { background: rgba(59, 130, 246, 0.12);  color: #2563EB; }
.bl-card__category--taxi      { background: rgba(214, 181, 74, 0.15);  color: #8B6914; }
.bl-card__category--corporate { background: rgba(99, 102, 241, 0.12);  color: #4338CA; }
.bl-card__category--shuttle   { background: rgba(16, 185, 129, 0.12);  color: #059669; }
.bl-card__category--winter    { background: rgba(14, 165, 233, 0.12);  color: #0284C7; }
.bl-card__category--guide     { background: rgba(239, 68, 68, 0.10);   color: #DC2626; }

.bl-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #071B2E;
  margin: 0 0 8px;
}
.bl-card__title a { color: inherit; text-decoration: none; }
.bl-card__title a:hover { color: #D6B54A; }

.bl-card__excerpt {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  line-height: 1.65;
  color: #64748B;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
  margin-top: auto;
}

.bl-card__author-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bl-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6B54A, #c4a33d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 11px;
  font-weight: 700;
  color: #071B2E;
  flex-shrink: 0;
}

.bl-card__author-name {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

.bl-card__date {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 11px;
  color: #94A3B8;
}

.bl-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: #D6B54A;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}
.bl-card__read-more:hover { gap: 8px; color: #c4a33d; }

/* ── Load More ── */
.bl-load-more {
  text-align: center;
  margin-top: 44px;
}

.bl-load-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1.5px solid #CBD5E1;
  background: #ffffff;
  color: #071B2E;
  border-radius: 8px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.bl-load-more__btn:hover {
  border-color: #D6B54A;
  background: rgba(214, 181, 74, 0.06);
  color: #071B2E;
}

/* ── Sidebar ── */
.bl-sidebar {
  position: sticky;
  top: calc(var(--site-header-full-height, 153px) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl-widget {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(7, 27, 46, 0.06);
}

.bl-widget__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #94A3B8;
  margin: 0 0 16px;
}

.bl-widget__search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.18s;
}
.bl-widget__search-wrap:focus-within { border-color: #D6B54A; }

.bl-widget__search-icon {
  color: #94A3B8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bl-widget__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  color: #071B2E;
  background: transparent;
  min-width: 0;
}
.bl-widget__search-input::placeholder { color: #94A3B8; }

.bl-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bl-cat-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
}
.bl-cat-list__item:hover { background: #F6F7FA; }

.bl-cat-list__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071B2E;
  flex-shrink: 0;
  transition: background 0.18s;
}
.bl-cat-list__item:hover .bl-cat-list__icon { background: rgba(214, 181, 74, 0.14); }

.bl-cat-list__label {
  flex: 1;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #071B2E;
}

.bl-cat-list__arrow { color: #CBD5E1; flex-shrink: 0; }

/* ── Sidebar CTA Card ── */
.bl-cta-card {
  background: linear-gradient(145deg, #071B2E 0%, #0D2540 60%, #071B2E 100%);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bl-cta-card__heading {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.bl-cta-card__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 16px;
}

.bl-cta-card__bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #D6B54A;
  margin-bottom: 20px;
}

.bl-cta-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D6B54A;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(214, 181, 74, 0.50);
}

.bl-cta-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  background: #D6B54A;
  color: #071B2E;
  border-radius: 8px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
}
.bl-cta-card__btn:hover { background: #c4a33d; color: #071B2E; }


/* ═══════════════════════════════════════════════════════════
   SECTION 4: NEWSLETTER
   ═══════════════════════════════════════════════════════════ */

.bl-newsletter {
  position: relative;
  padding: 88px 0;
  background-color: #030B23;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bl-newsletter__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 35, 0.85);
  z-index: 1;
}

.bl-newsletter__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bl-newsletter__heading {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.bl-newsletter__desc {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

.bl-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl-newsletter__input-row {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.bl-newsletter__input-row:focus-within { border-color: rgba(214, 181, 74, 0.60); }

.bl-newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  color: #ffffff;
  min-width: 0;
}
.bl-newsletter__input::placeholder { color: rgba(255, 255, 255, 0.45); }

.bl-newsletter__submit {
  background: #D6B54A;
  color: #071B2E;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.bl-newsletter__submit:hover { background: #c4a33d; }

.bl-newsletter__privacy {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  /* Hero */
  .bl-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: calc(var(--site-header-full-height, 153px) + 50px);
    padding-bottom: 60px;
  }
  .bl-hero__title { font-size: 38px; }
  .bl-hero__desc  { max-width: 100%; }

  /* Featured */
  .bl-featured__card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  /* Latest */
  .bl-latest__layout {
    grid-template-columns: 1fr;
  }
  .bl-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bl-cta-card { grid-column: 1 / -1; }

  /* Grid */
  .bl-grid { grid-template-columns: repeat(2, 1fr); }

  /* Newsletter */
  .bl-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bl-newsletter__heading { font-size: 30px; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 767px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* Hero */
  .bl-hero { min-height: 520px; }
  .bl-hero__inner { padding: calc(var(--site-header-full-height, 153px) + 40px) 20px 56px; }
  .bl-hero__title { font-size: 28px; }
  .bl-hero__desc  { font-size: 15px; }
  .bl-hero__buttons { flex-direction: column; }
  .bl-hero__btn { width: 100%; }
  .bl-hero__search-wrap { flex-wrap: wrap; }
  .bl-hero__search-btn { width: 100%; justify-content: center; }

  /* Featured */
  .bl-featured { padding: 56px 0; }
  .bl-featured__container { padding: 0 20px; }
  .bl-featured__heading { font-size: 26px; margin-bottom: 32px; }
  .bl-featured__card { padding: 20px; gap: 24px; }
  .bl-featured__title { font-size: 20px; }
  .bl-featured__btn { width: 100%; justify-content: center; }

  /* Latest */
  .bl-latest { padding: 56px 0; }
  .bl-latest__container { padding: 0 20px; }
  .bl-latest__heading { font-size: 26px; }
  .bl-grid { grid-template-columns: 1fr; gap: 16px; }
  .bl-sidebar { grid-template-columns: 1fr; }
  .bl-cta-card { grid-column: auto; }

  /* Newsletter */
  .bl-newsletter { padding: 56px 0; }
  .bl-newsletter__inner { padding: 0 20px; gap: 32px; }
  .bl-newsletter__heading { font-size: 26px; }
  .bl-newsletter__input-row { flex-direction: column; border-radius: 10px; }
  .bl-newsletter__input { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .bl-newsletter__submit { width: 100%; justify-content: center; border-radius: 0 0 8px 8px; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .bl-hero__title  { font-size: 24px; }
  .bl-featured__title { font-size: 18px; }
  .bl-featured__card  { padding: 16px; }
}
