/* ============================================================
   Fat Columbus – Global Stylesheet
   All pages should link to this file for consistent styling.
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --white:       #FFFFFF;
  --banner-blue: #8DCBDF;
  --popup-blue:  #4A9BB7;
  --dark-gray:   #4B4B4B;
  --accent:      #EB4826;
  --font:        'Montserrat', sans-serif;
}

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

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  background-color: var(--dark-gray);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── BRAND BAR ──────────────────────────────────────────────── */
.brand-bar {
  background-color: var(--dark-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 36px;
  position: relative;
  z-index: 10;
}

.brand-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  user-select: none;
  text-decoration: none;
}

/* ── SOCIAL ICONS ───────────────────────────────────────────── */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.08);
}

.social-icon svg {
  display: block;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar-wrap {
  background-color: var(--banner-blue);
  position: relative;
  z-index: 11; /* must exceed brand-bar (10) so the logo can paint over it */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 60px;
  position: relative;
}

.nav-group {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

.nav-link {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(0.98rem, 1.27vw, 1.21rem);
  color: var(--dark-gray);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Home icon nav link */
.nav-home {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-home svg {
  display: block;
}

/* Logo – centered, overlaps the brand bar above */
.nav-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -115px;
  z-index: 20;
}

.nav-logo-img {
  width: 322px;
  height: 322px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 520px;
  /* No background-image here — each page sets its own via inline style */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 100px 24px 60px;
}

/* Subtle darkening overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(0, 0, 0, 0.50) 100%
  );
}

.hero-tagline,
.hero-blurb {
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.2px;
  margin-top: 10px;
}

.hero-blurb {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.55;
  max-width: 740px;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.65);
  margin-bottom: -10px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background-color: var(--banner-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 36px;
}

.footer-copy {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-cta {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta:hover {
  background-color: #c73a1a;
  transform: scale(1.04);
}

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-top: 6px solid var(--accent);
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  border-radius: 4px;
  position: relative;
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.modal p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 22px;
  font-weight: 500;
}

.modal input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 2px solid var(--banner-blue);
  border-radius: 2px;
  outline: none;
  margin-bottom: 14px;
  color: var(--dark-gray);
}

.modal input[type="email"]:focus {
  border-color: var(--popup-blue);
}

.modal-btn-row {
  display: flex;
  gap: 10px;
}

.modal .btn-submit {
  flex: 1;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: none;
  padding: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.modal .btn-submit:hover {
  background: #c73a1a;
}

.modal .btn-cancel {
  background: transparent;
  color: var(--dark-gray);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--dark-gray);
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.modal .btn-cancel:hover {
  background: rgba(75, 75, 75, 0.08);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-gray);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================================
   ARTICLES PAGE STYLES
   ============================================================ */

/* ── Page Hero (interior pages) ─────────────────────────────── */
.page-hero {
  background-color: var(--dark-gray);
  background-image: url('images/hero-articles.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 110px 36px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Darkening overlay — same as home page hero */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(0, 0, 0, 0.50) 100%
  );
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  z-index: 1;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.2px;
  margin-top: 10px;
  margin-bottom: 0;
}

.page-hero p {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.55;
  max-width: 740px;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.65);
  margin: 0 auto;
}

/* ── Articles Controls (search + filter) ────────────────────── */
.articles-controls {
  background-color: var(--white);
  padding: 24px 36px 20px;
  position: sticky;
  top: 0;
  z-index: 9;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 18px;
}

.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-gray);
  opacity: 0.5;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--banner-blue);
  border-radius: 3px;
  outline: none;
  color: var(--dark-gray);
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: var(--popup-blue);
}

.search-input::placeholder {
  font-weight: 500;
  color: #999;
}

/* Destination filter pills */
.destination-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pill {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 2px solid var(--banner-blue);
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: var(--dark-gray);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.pill:hover {
  background: var(--banner-blue);
  color: var(--white);
}

.pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ── Articles Grid ───────────────────────────────────────────── */
.articles-container {
  background: #f5f5f5;
  flex: 1;
  padding: 40px 36px 60px;
  min-height: 300px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Article card */
.article-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--banner-blue);
}

.card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--banner-blue) 0%, var(--popup-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
  padding: 12px;
  letter-spacing: 0.3px;
}

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

.card-destination {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-gray);
  line-height: 1.3;
  margin-bottom: 10px;
}

.card-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 12px;
}

.card-summary {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  background: #eef7fb;
  color: var(--popup-blue);
  border-radius: 2px;
}

.card-read-more {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 11px 18px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.card-read-more:hover {
  background: #c73a1a;
}

/* No results message */
.no-results {
  text-align: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  color: #999;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

/* ── Article Detail View ─────────────────────────────────────── */
.article-detail {
  background: #f5f5f5;
  flex: 1;
  padding: 36px 36px 80px;
}

.article-detail-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.back-btn {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: transparent;
  color: var(--popup-blue);
  border: 2px solid var(--popup-blue);
  padding: 10px 20px;
  cursor: pointer;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}

.back-btn:hover {
  background: var(--popup-blue);
  color: var(--white);
}

.detail-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 32px;
  display: block;
}

.detail-hero-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--banner-blue) 0%, var(--popup-blue) 100%);
  border-radius: 3px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.detail-destination {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.detail-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--dark-gray);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.detail-meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 20px;
}
.detail-updated {
  font-style: italic;
  font-weight: 400;
}

.detail-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin: 32px 0 14px;
}

.detail-content p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.article-inline-figure {
  margin: 28px 0;
  text-align: center;
}

.article-inline-figure img {
  width: auto;
  max-width: 70%;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

.article-inline-figure figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  font-style: italic;
}

/* ── Float left / right layouts ──────────────────────────────────── */
.article-float-left,
.article-float-right {
  width: 38%;
  margin-bottom: 12px;
}
.article-float-left  { float: left;  margin-right: 28px; margin-top: 6px; }
.article-float-right { float: right; margin-left:  28px; margin-top: 6px; }

.article-float-left img,
.article-float-right img {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  display: block;
}

.article-float-left figcaption,
.article-float-right figcaption {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
  font-style: italic;
  text-align: center;
}

.article-clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* ── Photo gallery ───────────────────────────────────────────────── */
.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0;
}

.article-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f0f0f0;
}

.article-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.article-gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gallery-lightbox.open { display: flex; }

.gallery-lightbox-img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.gallery-lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 14px;
  text-align: center;
  min-height: 20px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.15s;
}
.gallery-lightbox-close:hover { color: #fff; }

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 3rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 18px;
  line-height: 1;
  transition: color 0.15s;
  user-select: none;
}
.gallery-lightbox-nav:hover { color: #fff; }
.gallery-lightbox-prev { left: 0; }
.gallery-lightbox-next { right: 0; }

.gallery-lightbox-counter {
  position: absolute;
  bottom: 18px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── Side-by-side image pair ─────────────────────────────────────── */
.article-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px auto;
  max-width: 80%;
}

.article-img-pair figure {
  margin: 0;
}

.article-img-pair img {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  display: block;
}

.article-img-pair figcaption {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
  font-style: italic;
  text-align: center;
}


.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid #e0e0e0;
}

.detail-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: #eef7fb;
  color: var(--popup-blue);
  border-radius: 2px;
}

/* ============================================================
   FEATURED SECTION (home page)
   ============================================================ */

.featured-section {
  background: #f5f5f5;
  padding: 64px 36px 72px;
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-row {
  margin-bottom: 64px;
}

.featured-row:last-child {
  margin-bottom: 0;
}

.featured-row-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 12px;
  margin-bottom: 28px;
}

.featured-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--dark-gray);
  letter-spacing: -0.3px;
}

.featured-all-link {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.featured-all-link:hover {
  color: #c73a1a;
  text-decoration: underline;
}

.featured-loading {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: #aaa;
  padding: 40px 20px;
}

/* ── Two-column scrollable layout ───────────────────────────── */
.featured-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.featured-col {
  flex: 1;
  min-width: 0;
}

/* Scrollable card list */
.featured-scroll-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--banner-blue) transparent;
}

.featured-scroll-list::-webkit-scrollbar {
  width: 5px;
}

.featured-scroll-list::-webkit-scrollbar-track {
  background: transparent;
}

.featured-scroll-list::-webkit-scrollbar-thumb {
  background: var(--banner-blue);
  border-radius: 3px;
}

/* Cards inside the scroll list are horizontal (image left, text right) */
.featured-scroll-list .article-card {
  flex-direction: row;
  align-items: flex-start; /* card height = body content, not thumbnail */
  flex-shrink: 0; /* prevent cards shrinking to fit the max-height container */
}

.featured-scroll-list .card-thumb {
  width: 110px;
  min-width: 110px;
  aspect-ratio: unset;
  align-self: stretch; /* thumbnail fills the full card height */
  object-fit: cover;
}

.featured-scroll-list .card-thumb-placeholder {
  width: 110px;
  min-width: 110px;
  aspect-ratio: unset;
  align-self: stretch; /* placeholder fills the full card height */
  min-height: 80px;
  font-size: 0.72rem;
}

.featured-scroll-list .card-body {
  padding: 12px 14px 14px;
  flex: 1;
}

.featured-scroll-list .card-destination {
  font-size: 0.63rem;
  margin-bottom: 4px;
}

.featured-scroll-list .card-title {
  font-size: 0.86rem;
  margin-bottom: 5px;
}

.featured-scroll-list .card-date {
  font-size: 0.66rem;
  margin-bottom: 6px;
}

.featured-scroll-list .card-tags {
  gap: 4px;
  margin-bottom: 8px;
}

.featured-scroll-list .card-tag {
  font-size: 0.6rem;
  padding: 2px 6px;
}

.featured-scroll-list .card-summary {
  flex: none;
  font-size: 0.76rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.featured-scroll-list .category-badge {
  font-size: 0.58rem;
  padding: 2px 7px;
  margin-bottom: 4px;
}

.featured-scroll-list .fatties-label {
  font-size: 0.63rem;
}

.featured-scroll-list .fatties-display {
  margin-bottom: 7px;
}

@media (max-width: 700px) {
  .featured-inner {
    flex-direction: column;
    gap: 40px;
  }
  .featured-scroll-list {
    max-height: 420px;
  }
}

@media (max-width: 700px) {
  .featured-section { padding: 40px 18px 56px; }
  .featured-row      { margin-bottom: 48px; }
}

@media (max-width: 600px) {
  .featured-section { padding: 28px 14px 44px; }
  .featured-row      { margin-bottom: 40px; }
  .featured-row-header { align-items: center; }

}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-page {
  background: #f5f5f5;
  flex: 1;
  padding: 60px 36px 80px;
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ── Section rows ────────────────────────────────────────────── */
.about-section {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 64px;
  background: var(--white);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.about-section--alt {
  flex-direction: row-reverse;
}

/* ── Text block ──────────────────────────────────────────────── */
.about-text {
  flex: 1;
  min-width: 0;
}

.about-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--dark-gray);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
}

.about-text p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text em {
  font-style: italic;
  color: var(--popup-blue);
}

.about-text strong {
  font-weight: 800;
  color: var(--accent);
}

/* ── Photo placeholders (inline) ─────────────────────────────── */
.about-photo {
  flex-shrink: 0;
  width: 280px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #d8eef6 0%, #c0e0ee 100%);
  border: 2.5px dashed var(--banner-blue);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--popup-blue);
  text-align: center;
  padding: 20px;
}

.about-photo-placeholder span {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--popup-blue);
}

.about-photo-placeholder small {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.72rem;
  color: #888;
  line-height: 1.4;
}

/* ── Real images ─────────────────────────────────────────────── */
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ── Full-width photo ────────────────────────────────────────── */
.about-photo-full {
  margin-bottom: 64px;
}

.about-img-full {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ── Social icons (About page) ───────────────────────────────── */
.about-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

.about-social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.about-social-icon:hover {
  background: var(--dark-gray);
  color: var(--white);
  transform: scale(1.08);
}

.about-social-icon svg { display: block; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 760px) {
  .about-section,
  .about-section--alt {
    flex-direction: column;
    padding: 28px 22px;
    gap: 28px;
  }
  .about-photo { width: 100%; }
  .about-photo-placeholder { aspect-ratio: 16 / 9; }
  .about-photo-full .about-photo-placeholder { aspect-ratio: 16 / 7; }
  .about-page { padding: 36px 18px 60px; }
  .about-inner { max-width: 100%; }
}

@media (max-width: 600px) {
  .about-page { padding: 24px 14px 48px; }
  .about-section { margin-bottom: 20px; }
  .about-photo-full { margin-bottom: 20px; }
}

/* ── HOW TO ADD ARTICLES ─────────────────────────────────────── */
/* To add a new article, open data/articles.json and add a new  */
/* object to the array following the same structure. The page    */
/* will automatically pick it up — no HTML changes needed!       */

/* ============================================================
   TRAVEL MAP PAGE STYLES
   ============================================================ */

/* ── Map container ───────────────────────────────────────────── */
.map-wrap {
  flex: 1;
  position: relative;
  min-height: 500px;
}

#travel-map {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* ── Push pin marker ─────────────────────────────────────────── */
.map-push-pin {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 2.5px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  position: relative;
  cursor: pointer;
  transition: transform 0.15s;
}

.map-push-pin::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid var(--accent);
}

.map-push-pin:hover {
  transform: scale(1.2);
}

/* ── Leaflet popup override ──────────────────────────────────── */
.leaflet-popup-content-wrapper {
  border-radius: 4px !important;
  padding: 0 !important;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.16) !important;
  border-top: 4px solid var(--accent);
  font-family: var(--font) !important;
  min-width: 220px;
}

.leaflet-popup-content {
  margin: 0 !important;
  font-family: var(--font) !important;
}

.leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-popup-close-button {
  font-size: 1.1rem !important;
  color: #888 !important;
  padding: 6px 8px !important;
}

/* ── Popup inner content ─────────────────────────────────────── */
.map-popup {
  padding: 16px 18px 14px;
  font-family: var(--font);
}

.map-popup-city {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark-gray);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  letter-spacing: -0.2px;
}

.map-popup-section {
  margin-bottom: 10px;
}

.map-popup-section:last-child {
  margin-bottom: 0;
}

.map-popup-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.map-popup-link {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--popup-blue);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 4px;
  padding: 3px 0;
  transition: color 0.15s;
}

.map-popup-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.map-popup-type {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  color: var(--white);
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}
.map-type-article  { background: var(--popup-blue); }
.map-type-review   { background: var(--accent); }
.map-type-video    { background: #cc0000; }

.map-popup-empty {
  font-size: 0.82rem;
  color: #aaa;
  font-style: italic;
  padding: 4px 0 8px;
}

.map-popup-see-all {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  text-align: right;
}
.map-popup-see-all:hover {
  text-decoration: underline;
}

/* ── Map page title bar (compact, no hero image) ─────────────── */
.map-title-bar {
  background: var(--dark-gray);
  padding: 18px 36px 20px;
  border-bottom: 4px solid var(--accent);
}

.map-title-bar h1 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 2px;
  letter-spacing: -0.2px;
}

.map-title-bar p {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin: 0 0 16px;
}

/* ── Map search bar ──────────────────────────────────────────── */
.map-search-form {
  margin-top: 14px;
}

.map-search-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  max-width: 560px;
  padding: 0 0 0 12px;
  gap: 8px;
  transition: border-color 0.2s;
}

.map-search-wrap:focus-within {
  border-color: var(--banner-blue);
}

.map-search-wrap svg {
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.map-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  padding: 11px 0;
}

.map-search-input::placeholder {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Distance selector pills */
.map-distance-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  max-width: 560px;
}

.map-distance-label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-right: 2px;
}

.map-dist-pill {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.3px;
  padding: 4px 9px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.map-dist-pill:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.map-dist-pill.active {
  background: var(--banner-blue);
  border-color: var(--banner-blue);
  color: var(--white);
}

.map-search-btn {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  padding: 0 16px;
  height: 100%;
  min-height: 42px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.map-search-btn:hover  { background: #c73a1a; }
.map-search-btn:disabled { opacity: 0.6; cursor: default; }

.map-search-clear {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 10px 0 2px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.map-search-clear:hover { color: var(--white); }

/* ── Search results panel ────────────────────────────────────── */
.map-results-panel {
  background: var(--white);
  border-bottom: 3px solid var(--banner-blue);
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--banner-blue) transparent;
}

.map-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 36px;
  background: #eef7fb;
  border-bottom: 1px solid #d0eaf4;
  position: sticky;
  top: 0;
  z-index: 2;
}

#mapResultsTitle {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

.map-results-close {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}

.map-results-close:hover { color: #c73a1a; }

.map-results-list {
  padding: 12px 36px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.map-result-group {
  min-width: 220px;
  flex: 1;
}

.map-result-city {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--dark-gray);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-result-dist {
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--popup-blue);
  background: #eef7fb;
  padding: 2px 7px;
  border-radius: 20px;
}

.map-result-link {
  display: block;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  padding: 3px 0;
  line-height: 1.4;
  transition: color 0.15s;
}

.map-result-link:hover { color: var(--accent); }

.map-results-empty {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: #aaa;
  padding: 8px 0;
  font-style: italic;
}

/* ── Highlighted pin ─────────────────────────────────────────── */
.map-push-pin--highlight {
  background: var(--popup-blue);
  width: 26px;
  height: 26px;
  border: 3px solid white;
  box-shadow: 0 2px 12px rgba(74,155,183,0.6);
}

.map-push-pin--highlight::after {
  border-top-color: var(--popup-blue);
  border-left-width: 6px;
  border-right-width: 6px;
  border-top-width: 12px;
  bottom: -12px;
}

@media (max-width: 600px) {
  .map-title-bar    { padding: 14px 16px 16px; }
  .map-results-header { padding: 10px 16px; }
  .map-results-list   { padding: 12px 16px 16px; }
  .map-wrap, #travel-map { min-height: 400px; }
  .map-search-btn { font-size: 0.68rem; padding: 0 10px; }
  .map-distance-pills { gap: 3px; }
  .map-dist-pill { font-size: 0.62rem; padding: 3px 7px; }
}

/* ============================================================
   REVIEWS PAGE STYLES
   ============================================================ */

/* ── Category badges ─────────────────────────────────────────── */
.category-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.badge-hotel      { background: #4A9BB7; }
.badge-restaurant { background: var(--accent); }
.badge-show       { background: #7C3AED; }
.badge-attraction { background: #16A34A; }

/* ── Fatty rating icons ──────────────────────────────────────── */
.fatties-display {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 12px;
}

.fatties-display.large {
  gap: 5px;
  margin-bottom: 0;
}

.fatty-icon {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  vertical-align: middle;
}

.fatties-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.3px;
  margin-left: 5px;
}

/* ── Detail view: rating block ───────────────────────────────── */
.detail-rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e0e0e0;
  flex-wrap: wrap;
}

.detail-rating-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.detail-rating-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-rating-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Hamburger button (hidden on desktop) ────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 25;
}

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

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

/* ── Mobile nav dropdown (hidden on desktop) ─────────────────── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--banner-blue);
  border-top: 2px solid rgba(0,0,0,0.08);
}

.nav-mobile-menu .nav-link {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-gray);
  text-decoration: none;
  white-space: normal;
}

.nav-mobile-menu .nav-link:last-child {
  border-bottom: none;
}

.nav-mobile-menu .nav-link.active {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .brand-bar    { padding: 10px 18px; }
  .navbar       { padding: 0 16px; }
  .footer       { padding: 12px 18px; }
  .nav-logo-wrap { top: -108px; }
  .nav-logo-img  { width: 160px; height: 160px; }
  .nav-group     { gap: 10px; }
  .nav-link      { font-size: 0.78rem; }
  .articles-grid        { grid-template-columns: 1fr; }
  .articles-controls    { padding: 18px 18px 14px; }
  .articles-container   { padding: 28px 18px 48px; }
  .article-detail       { padding: 24px 18px 60px; }
  .page-hero            { padding: 40px 18px 32px; }
}

/* ── Phone (hamburger menu kicks in) ─────────────────────────── */
@media (max-width: 600px) {
  /* Brand bar */
  .brand-bar  { padding: 10px 16px; }
  .brand-name { font-size: 1.55rem; }
  .social-icon { width: 32px; height: 32px; }

  /* Navbar: hide desktop groups, show hamburger + small inline logo */
  .navbar {
    height: 50px;
    padding: 0 16px;
    justify-content: space-between;
  }
  .nav-group { display: none !important; }

  /* Logo: pull it out of absolute flow, show it small and inline */
  .nav-logo-wrap {
    position: static;
    transform: none;
    top: auto;
    display: flex;
    align-items: center;
  }
  .nav-logo-img { width: 46px; height: 46px; }

  /* Hamburger visible */
  .nav-hamburger { display: flex; }

  /* Mobile dropdown: only shown when .open is toggled by JS */
  .nav-mobile-menu.open { display: flex; }

  /* Hero / page hero: less top padding since logo no longer overlaps */
  .hero        { padding: 40px 16px 40px; min-height: 300px; }
  .page-hero   { padding: 30px 16px 26px; }

  /* Filter pills: single scrollable row, no line-wrap */
  .destination-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    gap: 8px;
  }
  .destination-pills::-webkit-scrollbar { display: none; }

  /* Search + controls */
  .articles-controls  { padding: 14px 14px 12px; }
  .search-wrap        { margin-bottom: 12px; }

  /* Article grid */
  .articles-grid      { grid-template-columns: 1fr; gap: 16px; }
  .articles-container { padding: 18px 14px 40px; }

  /* Article card */
  .article-card       { border-radius: 4px; }
  .card-body          { padding: 16px 14px 14px; }

  /* Article detail */
  .article-detail       { padding: 18px 14px 50px; }
  .article-detail-inner { max-width: 100%; }

  /* Footer */
  .footer {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    text-align: center;
  }

  /* Modal */
  .modal { padding: 28px 20px; margin: 0 16px; }
}

/* ── Touch devices (tablets / iPad) ─────────────────────────────
   Safari on iPad reports a wide desktop viewport, so max-width
   breakpoints don't fire. We use hover: none instead — true on
   all touch screens, false on mouse-driven desktops/laptops.    */
@media (hover: none) {
  /* Navbar: switch to hamburger layout */
  .navbar {
    height: 50px;
    padding: 0 16px;
    justify-content: space-between;
  }
  .nav-group    { display: none !important; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu.open { display: flex; }

  /* Logo: inline, not floating above */
  .nav-logo-wrap {
    position: static;
    transform: none;
    top: auto;
    display: flex;
    align-items: center;
  }
  .nav-logo-img { width: 54px; height: 54px; }

  /* Brand bar */
  .brand-bar  { padding: 10px 16px; }

  /* Hero */
  .hero      { padding: 40px 16px 40px; min-height: 300px; }
  .page-hero { padding: 30px 16px 26px; }

  /* Article / review grid — 2 cols on tablet, not 3 */
  .articles-grid { grid-template-columns: repeat(2, 1fr); }

  /* Filter pills: horizontal scroll, no wrap */
  .destination-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    gap: 8px;
  }
  .destination-pills::-webkit-scrollbar { display: none; }

  /* Containers */
  .articles-controls  { padding: 14px 16px 12px; }
  .articles-container { padding: 24px 16px 48px; }
  .article-detail     { padding: 20px 16px 56px; }
  .article-detail-inner { max-width: 100%; }

  /* Footer */
  .footer {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    text-align: center;
  }

  /* Modal */
  .modal { padding: 28px 20px; margin: 0 16px; }
}

/* ── INLINE REVIEW LINKS (within article body text) ─────────────── */
a.review-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
  white-space: nowrap;
}

a.review-link::after {
  content: ' ↗';
  font-size: 0.75em;
  vertical-align: super;
  opacity: 0.7;
}

a.review-link:hover {
  color: #c93710;
  text-decoration-color: #c93710;
}

/* ── Video embed block ─────────────────────────────────────────────────── */
.video-block {
  margin: 1.5rem 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted, #888);
  text-align: center;
  font-style: italic;
}

/* Frontend article/review page video block */
.article-video-block {
  margin: 2rem 0;
  padding: 0;
  border: none;
}

.article-video-block figcaption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted, #888);
  text-align: center;
  font-style: italic;
}

/* Preview panel video block */
.video-block-preview {
  margin: 6px 0;
}

.video-block-preview .video-wrapper {
  border-radius: 5px;
}
