*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}

.hide {
  opacity: 0;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-smooth: auto;
  font-weight: 300;
  line-height: 1.5;
  color: #444;
}

.container {
  position: relative;
  display: block;
  width: 80%;
  height: 100%;
  margin: 0 auto;
}

header {
  position: relative;
  display: block;
  width: 100%;
  height: 90vh;
  margin: 0;
  padding: 20px 0 0;
  overflow: hidden;
  z-index: 0;
}
header:before, header:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header:before {
  background-color: rgba(231, 76, 60, 0.8);
  z-index: 0;
}
header:after {
  filter: blur(5px);
  background-attachment: fixed;
  background-image: url("https:// static.pexels.com/photos/266526/ pexels-photo-266526-jpeg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: blur 10s linear infinite;
  overflow: hidden;
  z-index: -1;
}
@keyframes blur {
  0% {
    filter: blur(1px);
  }
  50% {
    filter: blur(20px);
  }
  100% {
    filter: blur(1px);
  }
}
header nav {
  position: relative;
  z-index: 2;
}
header nav .logo {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 50%;
}
header nav .logo svg {
  position: absolute;
  transform: scale(1);
  animation: scale 750ms ease-in-out;
}
@keyframes scale {
  0% {
    transform: scale(100);
    opacity: 0;
  }
  50% {
    transform: scale(0.2);
  }
  70% {
    transform: scale(1);
  }
  90% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
header nav .subscribe {
  position: relative;
  display: inline-block;
  padding: 15px 0;
  float: right;
  animation: slide 1000ms ease;
}
header nav .subscribe a {
  position: relative;
  margin: 0;
  padding: 10px 20px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
  color: #e74c3c;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 500ms ease;
}
header nav .subscribe a:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
@keyframes slide {
  0% {
    transform: translateY(-600px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
header blockquote {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  margin: 0;
  padding: 5px 0 5px 30px;
  color: white;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.25;
  letter-spacing: 2px;
  transform: translate(-50%, -50%);
  animation: fadeIn 1250ms ease;
}
header blockquote:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: white;
  animation: height 1000ms ease-in-out;
}
@keyframes height {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -150%);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%, 0%);
  }
}
header blockquote span {
  position: relative;
  display: block;
  margin: 20px 0 0;
  font-size: 16px;
}
header .date {
  position: absolute;
  bottom: 20px;
  margin: 0;
  padding: 5px 15px;
  border: 2px solid white;
  border-radius: 4px;
  color: white;
  font-size: 12px;
  font-weight: 400;
}
header .date i {
  margin-right: 5px;
  font-size: 14px;
}

section {
  position: relative;
  display: block;
  margin: 0;
  padding: 100px 0;
  z-index: 999;
}
section .scroll {
  position: absolute;
  right: 50px;
  top: -20px;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
}
section .scroll i {
  position: relative;
  top: 50%;
  left: 50%;
  color: #e74c3c;
  transform: translate(-50%, -100%);
  animation: down 2s ease infinite;
  z-index: 9;
}
@keyframes down {
  100% {
    transform: translate(-50%, -30%);
    opacity: 0;
  }
}
section .container {
  width: 80%;
}
section h1 {
  margin: 0;
  padding: 0;
  color: #5A7D7C;
  line-height: 1.5;
}
section .byline {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 50px;
  font-style: italic;
  vertical-align: middle;
}
section .byline .avatar {
  position: relative;
  display: inline-block;
  top: 10px;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background-image: url("https://i.postimg.cc/vBxczJ4p/IMG-6227.png");
  background-size: cover;
  background-color: #5A7D7C;
  border-radius: 50%;
}
section .byline span {
  color: #e74c3c;
  font-style: normal;
  font-weight: bold;
}
section p {
  margin-bottom: 50px;
  font-family: "Merriweather", serif;
  font-size: 16px;
  line-height: 1.95;
}
section p .drop {
  position: relative;
  display: inline-block;
  margin: 0 20px 0 0;
  color: #e74c3c;
  font-size: 64px;
  font-weight: bold;
  line-height: 1.2;
  float: left;
}
section blockquote {
  position: relative;
  width: 80%;
  margin: 150px auto;
  padding: 5px 0 5px 30px;
  border-left: 5px solid #e74c3c;
  color: #444;
  font-size: 20px;
  line-height: 1.75;
}
section blockquote span {
  position: relative;
  display: block;
  margin: 20px 0 0;
  font-size: 16px;
}

.quote {
  height: 400px;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.quote.desert {
  background-image: url("https://static.pexels.com/photos/80454/tree-desert-namibia-dead-vlei-80454.jpeg");
}
.quote.second {
  background-image: url("https://static.pexels.com/photos/36464/sky-clouds-clouds-form-cumulus-clouds.jpg");
}
.quote:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.quote blockquote {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44%;
  margin: 0;
  padding: 5px 0 5px 30px;
  border-left: 5px solid #e74c3c;
  color: #444;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.25;
  letter-spacing: 2px;
  transform: translate(-50%, -50%);
}
.quote blockquote span {
  position: relative;
  display: block;
  margin: 20px 0 0;
  font-size: 16px;
}

.comments {
  padding-top: 0;
}
.comments .toggle {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0 50px;
  padding: 10px;
  background-color: #719998;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.comments .toggle .indicator {
  position: relative;
  top: 4px;
  width: 15px;
  height: 16px;
  line-height: 1.75;
  transition: transform 250ms ease;
  float: right;
}
.comments .toggle .indicator:before, .comments .toggle .indicator:after {
  position: absolute;
  content: "";
}
.comments .toggle .indicator:before {
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: translateY(-1px);
}
.comments .toggle .indicator:after {
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: white;
  transform: translateX(-1px);
}
.comments #toggle {
  display: none;
}
.comments #toggle:checked + .toggle .indicator {
  transform: rotate(45deg);
}
.comments #toggle:checked ~ .wrapper {
  height: auto;
}
.comments .wrapper {
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
}
.comments .wrapper .comment {
  position: relative;
  display: flex;
}
.comments .wrapper .comment .user {
  position: relative;
  width: 80px;
  height: inherit;
  margin: 0 20px 20px 0;
  padding: 0;
  float: left;
  font-size: 12px;
  text-align: center;
}
.comments .wrapper .comment .user .pic {
  position: relative;
  width: 100%;
  height: 65px;
  margin: 6px auto;
  background-image: url("http://images.complex.com/complex/image/upload/c_limit,w_680/fl_lossy,pg_1,q_auto/Screen_Shot_2015-09-08_at_12.11.35_PM_sy22b5.jpg");
  background-position: center center;
  background-size: cover;
  background-color: darkgray;
  overflow: hidden;
}
.comments .wrapper .comment .user .date {
  font-size: 12px;
}
.comments .wrapper .comment .text .author {
  font-weight: bold;
  text-transform: uppercase;
  color: #e74c3c;
}
.comments .wrapper .comment .text p {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.tags {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.tags li {
  position: relative;
  display: inline-block;
  margin: 0 5px 5px 0;
}
.tags li.tag {
  display: block;
  color: #e74c3c;
  font-weight: bold;
  text-transform: uppercase;
}
.tags li a {
  position: relative;
  display: block;
  padding: 7px 20px;
  background-color: #5A7D7C;
  border-radius: 99px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}
.tags li a:hover {
  background-color: #719998;
}

.footer {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 50px 0 0;
  background: #c0392b;
  z-index: 0;
}
.footer .footer-logo {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: white;
  border-radius: 50%;
}
.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.footer ul {
  flex-basis: 13em;
  flex-shrink: 0;
  margin-bottom: 40px;
  padding: 0;
}
.footer ul li {
  line-height: 1.5em;
  list-style: none;
  text-align: center;
}
.footer ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer ul li a:focus, .footer ul li a:hover {
  color: white;
}
.footer ul li h3 {
  color: white;
  font-size: 1em;
  margin-bottom: 0.4em;
}
.footer .disclaimer {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px;
  background-color: #962d22;
}
.footer .disclaimer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin: auto;
  max-width: 35%;
  text-align: center;
}


/* ============================
   HERO VIDEO OVERRIDES & FIXES
   APPEND ONLY — DO NOT REMOVE OLD STYLES
============================ */

/* Neutralize legacy header pseudo-elements */
.home-header::before,
.home-header::after {
  display: none !important;
  content: none !important;
}

/* Lock hero container */
.home-header {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  background: #e97866;
}

/* Video layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) saturate(0.9);
}

/* Color overlay tuned for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(233, 120, 102, 0.88);
}

/* Ensure header content stays above everything */
.home-header .container,
.home-header nav,
.home-header h1,
.home-header p {
  position: relative;
  z-index: 2;
}

/* Typography polish */
.site-title {
  margin-top: 120px;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: #2f2f2f;
}

.site-tagline {
  max-width: 520px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(0,0,0,0.75);
}

/* Subscribe button refinement */
header nav .subscribe a {
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

header nav .subscribe a:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

/* Mobile fixes */
@media (max-width: 768px) {
  .home-header {
    height: 85vh;
  }

  .site-title {
    margin-top: 96px;
  }

  .site-tagline {
    font-size: 18px;
  }
}


/* ============================
   HERO OVERLAY CORRECTION
============================ */

/* Remove base red paint behind video */
.home-header {
  background: #000; /* neutral base for video */
}

/* Soften overlay dramatically */
.hero-overlay::before {
  background: rgba(0, 0, 0, 0.25);
}

/* Improve video clarity on iOS */
.hero-media video {
  filter: brightness(0.95) contrast(1.05) saturate(0.95);
}

/* Ensure text contrast without color flooding */
.site-title {
  color: #2b2b2b;
}

.site-tagline {
  color: rgba(0,0,0,0.7);
}


/* ============================
   HERO VIDEO READABILITY FIX
   GUARANTEED VISIBILITY
============================ */

/* 1. Light neutral overlay ON THE VIDEO */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
  pointer-events: none;
  z-index: 1;
}

/* Ensure video stays behind overlay */
.hero-media video {
  position: relative;
  z-index: 0;
}

/* 2. Push text above overlay */
.home-header .container {
  position: relative;
  z-index: 2;
}

/* 3. Strong but clean text separation */
.site-title {
  color: #1f1f1f;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.45),
    0 0 1px rgba(255,255,255,0.2);
}

.site-tagline {
  color: rgba(0,0,0,0.75);
  text-shadow:
    0 2px 8px rgba(0,0,0,0.4);
}

/* 4. Mobile Safari needs more help */
@media (max-width: 768px) {
  .hero-media::after {
    background: rgba(0,0,0,0.45);
  }
}


/* =================================================
   FINAL HERO SETUP — SINGLE OVERLAY, NO CONFLICTS
================================================= */

/* 1. Kill ALL visual overlays except the video one */
header::before,
header::after,
.hero-overlay::before,
.hero-overlay::after {
  display: none !important;
  content: none !important;
}

/* 2. Hero base */
.home-header {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

/* 3. Video layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}

/* 4. THE ONLY OVERLAY (owned by the video) */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
  pointer-events: none;
}

/* 5. hero-overlay becomes layout-only */
.hero-overlay {
  position: relative;
  z-index: 2;
  background: none !important;
}

/* 6. Text clarity — guaranteed */
.site-title {
  color: #ffffff;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.65),
    0 0 1px rgba(0,0,0,0.4);
}

.site-tagline {
  color: rgba(255,255,255,0.9);
  text-shadow:
    0 2px 12px rgba(0,0,0,0.6);
}

/* 7. Mobile Safari boost */
@media (max-width: 768px) {
  .hero-media::after {
    background: rgba(0,0,0,0.55);
  }
}




/* === FEATURE IMAGE EXACT MATCH === */

.destination-feature {
  padding: 64px 0 32px;
}

.destination-hero img {
  height: 380px; /* closer to screenshot ratio */
}

.destination-overlay {
  margin: 28px;            /* more breathing room */
  border-width: 4px;       /* thicker white frame */
}

.destination-label {
  font-size: 34px;
  letter-spacing: 6px;
  font-weight: 500;
}

.destination-arrow {
  bottom: 28px;
}


/* === DESTINATION LIST EXACT STYLE === */

.destination-card {
  padding: 14px;
  gap: 20px;
  border-radius: 12px;
  background: #f7fcfd; /* slightly lighter */
}

.destination-card img {
  height: 100px; /* flatter cards */
}

.destination-content h3 {
  font-size: 19px;
  line-height: 1.35;
}

.destination-content .meta {
  font-size: 13px;
}



@media (max-width: 768px) {
  .destination-feature {
    padding-top: 48px;
  }

  .destination-hero img {
    height: 260px;
  }

  .destination-card {
    padding: 16px;
  }
} 

/* Wider container for destination sections only */
.destination-feature .container,
.destination-posts .container {
  width: 92%;
  max-width: 1200px;
}



/* Exact framed-image behavior */
.destination-hero {
  padding: 22px;
  background: #fff;
}

.destination-overlay {
  margin: 0;
  border: 4px solid #fff;
}



/* Editorial row style (not cards) */
.destination-card {
  background: #f6fbfc;
  padding: 12px;
  border-radius: 14px;
}

.destination-card img {
  height: 96px;
  border-radius: 10px;
}



.destination-content h3 {
  margin-bottom: 6px;
}

.destination-content .meta {
  line-height: 1.2;
}


/* =========================
   ITVX MODULE (ISOLATED)
========================= */

.itvx-module {
  max-width: 430px;
  margin: 0 auto;
  padding: 16px;
  color: #ffffff;
  background: #0c2b3a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* HERO */
.itvx-hero-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.itvx-hero-card img {
  width: 100%;
  display: block;
}

.itvx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.itvx-hero-overlay h1 {
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.itvx-highlight {
  color: #c6e34c;
  font-weight: 600;
  margin-bottom: 6px;
}

.itvx-meta {
  font-size: 12px;
  opacity: 0.8;
}

/* DOTS */
.itvx-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.itvx-dot {
  width: 8px;
  height: 8px;
  background: #5c7683;
  border-radius: 50%;
}

.itvx-dot.active {
  width: 20px;
  border-radius: 10px;
  background: #ffffff;
}

/* SECTION */
.itvx-section {
  padding: 24px 0 32px;
}

.itvx-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.itvx-section-header h2 {
  font-size: 20px;
}

.itvx-section-header a {
  color: #c6e34c;
  font-size: 14px;
  text-decoration: none;
}

/* POSTERS */
.itvx-card-row {
  display: flex;
  gap: 14px;
}

.itvx-poster {
  position: relative;
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}

.itvx-poster img {
  width: 100%;
  display: block;
}

.itvx-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
}

.itvx-tag.green {
  background: #c6e34c;
  color: #000;
}

.itvx-tag.yellow {
  background: #e4d44c;
  color: #000;
}

/* ============================
   FIX: REMOVE FORCED HEADER HEIGHT
   WHEN ITVX MODULE FOLLOWS
   APPEND ONLY
============================ */

/* Let header collapse to its content */
header {
  height: auto !important;
  min-height: unset !important;
}

/* Safety: ensure no phantom spacing */
header {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Pull ITVX directly under header */
.itvx-module {
  margin-top: 0 !important;
}

/* ============================
   ITVX HERO SLIDER (APPEND)
============================ */

.itvx-hero {
  overflow: hidden;
  position: relative;
}

.itvx-hero-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  touch-action: pan-y;
}

.itvx-hero-card {
  min-width: 100%;
  flex-shrink: 0;
}


/* =========================================================
   ARTICLE HEADLINE — Editorial Upgrade
========================================================= */

section .container h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    max-width: 900px;
}

section .container h1 span {
    font-weight: 600;
    background: linear-gradient(90deg, #4da3ff, #7dc3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Byline refinement */

.byline {
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}

.byline span {
    font-weight: 600;
    color: #ffffff;
}




/* =======================================
   ARTICLE IMAGE SYSTEM (APPEND ONLY)
======================================= */

.article-feature-image,
.article-inline-image {
    margin: 40px 0;
}

.article-feature-image img,
.article-inline-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    object-fit: cover;
}

.article-feature-image figcaption,
.article-inline-image figcaption {
    font-size: 13px;
    margin-top: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Slightly larger top image */
.article-feature-image img {
    max-height: 520px;
}


/* ===============================
   PREMIUM BYLINE ENHANCEMENT
================================= */

.premium-byline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.byline-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-badge {
    background: linear-gradient(90deg, #4da3ff, #7dc3ff);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 40px;
    width: fit-content;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.author-verified {
    font-size: 12px;
    color: #4da3ff;
    margin-top: 2px;
}

.meta-row {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-row .dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

.byline-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-right: 5px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: #4da3ff;
    color: #000;
    transform: translateY(-2px);
}


/* ===============================
   EDITORIAL PULL QUOTE
================================= */

.editorial-quote {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(77,163,255,0.08), rgba(125,195,255,0.05));
    border-left: 4px solid #4da3ff;
    border-radius: 14px;
    position: relative;
}

.editorial-quote + section,
.editorial-quote + .container {
    margin-top: 0;
}

.editorial-quote blockquote {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;   /* dark text */
    margin: 0;
}

.editorial-quote .quote-credit {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);   /* dark muted */
}
.editorial-quote .quote-line {
    width: 40px;
    height: 4px;
    background: #4da3ff;
    margin-bottom: 20px;
}


/* Scoped fix: remove space ONLY after this editorial quote */

/* Kill ONLY the bottom space of this specific quote */

section > .editorial-quote {
    margin-bottom: 0;
}

section:has(.editorial-quote) + section {
    margin-top: 0;
    padding-top: 0;
}

/* Remove ONLY the top padding of the section after the editorial quote */

section:has(.editorial-quote) + section {
    padding-top: 0 !important;
}

section:has(.editorial-quote) + section .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}


/* Article Gallery Grid */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Tablet */
@media (max-width: 992px) {
    .article-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile – still 2 columns */
@media (max-width: 600px) {
    .article-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}