/* ═════════════════════════════════════════════
   OlivEU Events & Press Coverage – Front-end CSS
   Supports light / dark theme via data-theme attr
   ═════════════════════════════════════════════ */

/* ── Shared custom props ── */
.oliveu-events-grid,
.oliveu-press-list,
.oliveu-modal {
  --oliv-black: #000000;
  --oliv-dark: #140E07;
  --oliv-cream: #FBF9F6;
  --oliv-beige: #DDCEBB;
  --oliv-gold: #F1C36D;
  --oliv-green: #7AD300;
  --oliv-green-mid: #508B00;
  --oliv-green-dark: #437400;
  --oliv-olive: #6A7B54;
  --oliv-sage: #7CA892;
  --oliv-lime: #8BC640;
  --oliv-white: #FFFFFF;
  --oliv-light: #EEEEEE;
  font-family: 'Quicksand', sans-serif;
}


/* ═══════════════════════════════════════════
   EVENTS GRID
   ═══════════════════════════════════════════ */
.oliveu-events-grid {
  display: grid;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.oliveu-events-grid[data-columns="1"] { grid-template-columns: 1fr; }
.oliveu-events-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr); }
.oliveu-events-grid[data-columns="3"] { grid-template-columns: repeat(3, 1fr); }
.oliveu-events-grid[data-columns="4"] { grid-template-columns: repeat(4, 1fr); }


/* ── Event card (compact) ── */
.oliveu-event-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}


/* ─── DARK THEME (default) ─── */
.oliveu-events-grid[data-theme="dark"] .oliveu-event-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(122, 211, 0, 0.15);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  border-color: rgba(122, 211, 0, 0.35);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-event-date {
  color: var(--oliv-green);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-event-title {
  color: var(--oliv-white);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-event-location {
  color: rgba(255,255,255,0.65);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-thumb-placeholder {
  color: var(--oliv-white);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-event-thumb--empty {
  background-color: rgba(255,255,255,0.03);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-read-more {
  color: var(--oliv-green);
  border-color: rgba(122, 211, 0, 0.3);
}
.oliveu-events-grid[data-theme="dark"] .oliveu-read-more:hover {
  background: rgba(122, 211, 0, 0.1);
  border-color: var(--oliv-green);
}


/* ─── LIGHT THEME ─── */
.oliveu-events-grid[data-theme="light"] .oliveu-event-card {
  background: var(--oliv-white);
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.oliveu-events-grid[data-theme="light"] .oliveu-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: var(--oliv-green);
}
.oliveu-events-grid[data-theme="light"] .oliveu-event-date {
  color: var(--oliv-green-dark);
}
.oliveu-events-grid[data-theme="light"] .oliveu-event-title {
  color: var(--oliv-dark);
}
.oliveu-events-grid[data-theme="light"] .oliveu-event-location {
  color: #555;
}
.oliveu-events-grid[data-theme="light"] .oliveu-thumb-placeholder {
  color: #999;
}
.oliveu-events-grid[data-theme="light"] .oliveu-event-thumb--empty {
  background-color: #f0f0f0;
}
.oliveu-events-grid[data-theme="light"] .oliveu-read-more {
  color: var(--oliv-green-dark);
  border-color: #d0d0d0;
}
.oliveu-events-grid[data-theme="light"] .oliveu-read-more:hover {
  background: rgba(67, 116, 0, 0.08);
  border-color: var(--oliv-green-dark);
}


/* ── Thumbnail ── */
.oliveu-event-thumb {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
}

.oliveu-event-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.oliveu-event-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oliveu-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── Type badge ── */
.oliveu-event-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  color: var(--oliv-white);
  background: var(--oliv-green-dark);
}

.oliveu-type-b2b      { background: var(--oliv-green-dark); }
.oliveu-type-press     { background: #2e6ea6; }
.oliveu-type-sampling  { background: #b5851b; }
.oliveu-type-other     { background: var(--oliv-olive); }


/* ── Gallery count pill ── */
.oliveu-gallery-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.55);
  color: var(--oliv-white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}


/* ── Card body ── */
.oliveu-event-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oliveu-event-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.oliveu-event-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.oliveu-event-flag {
  font-size: 1rem;
  line-height: 1;
}

.oliveu-event-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  font-size: 32px !important;
  font-family: 'Quicksand', sans-serif !important;
}

.oliveu-event-location {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

.oliveu-event-location svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.5;
}


/* ── Read More button ── */
.oliveu-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 18px;
  border: 1px solid;
  border-radius: 24px;
  background: transparent;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}


/* ═══════════════════════════════════════════
   DETAIL MODAL (images left + info right)
   ═══════════════════════════════════════════ */
.oliveu-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oliveu-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}

.oliveu-modal-container {
  position: relative;
  z-index: 2;
  width: 96vw;
  max-width: 1400px;
  height: 93vh;          /* defined height so inner flex chain works */
  max-height: 93vh;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;    /* ensures border-radius clips children in all browsers */
  display: flex;
  flex-direction: column;
}

.oliveu-modal[data-theme="light"] .oliveu-modal-container {
  background: var(--oliv-white);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.oliveu-modal[data-theme="dark"] .oliveu-modal-container {
  background: #1a1a1a;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.oliveu-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 5;
  background: #437400 !important;
  border: none;
  color: var(--oliv-white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oliveu-modal-close:hover { opacity: 1; color: white !important; }


/* ── Modal inner: two-column layout ── */
.oliveu-modal-inner {
  display: flex;
  flex-direction: row;
  flex: 1 1 0;   /* fill the container's defined height */
  min-height: 0; /* allow children to shrink below content size */
  overflow: hidden;
}


/* ── Left: Images ── */
.oliveu-modal-images {
  flex: 0 0 62%;
  max-width: 62%;
  position: relative;   /* anchor for absolutely-positioned children */
  background: #fff;
  overflow: hidden;
}

/* Wrapper for the main image + nav arrows only. */
.oliveu-modal-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 64px;          /* leave room for gallery strip */
  overflow: hidden;
}

.oliveu-modal-main-img {
  /* contain = show full photo, no cropping */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
  padding: 4px;
}

/* Gallery strip — pinned to the bottom of .oliveu-modal-images */
.oliveu-modal-gallery-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  overflow-x: auto;
  overflow-y: hidden;
}

.oliveu-modal-gallery-strip::-webkit-scrollbar {
  height: 4px;
}
.oliveu-modal-gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.oliveu-modal-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
  border: 2px solid transparent;
}

.oliveu-modal-thumb:hover {
  opacity: 0.85;
}

.oliveu-modal-thumb.active {
  opacity: 1;
  border-color: var(--oliv-green);
}

/* Image navigation arrows — positioned on .oliveu-modal-img-wrapper */
.oliveu-modal-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: #437400;
  border: none;
  color: var(--oliv-white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  padding: 0;
  border-radius: 50%;
  line-height: 1;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oliveu-modal-img-nav:hover {
  opacity: 1;
  background: var(--oliv-green-dark);
  color: white !important;
}

.oliveu-modal-img-prev { left: 10px; }
.oliveu-modal-img-next { right: 10px; }

/* No-image placeholder */
.oliveu-modal-no-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}


/* ── Right: Info ── */
.oliveu-modal-info {
  flex: 1;
  padding: 36px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Light theme info */
.oliveu-modal[data-theme="light"] .oliveu-modal-info {
  color: #333;
}

.oliveu-modal[data-theme="light"] .oliveu-mi-title {
  color: var(--oliv-dark);
}

.oliveu-modal[data-theme="light"] .oliveu-mi-venue {
  color: #555;
}

.oliveu-modal[data-theme="light"] .oliveu-mi-audience {
  color: #777;
}

.oliveu-modal[data-theme="light"] .oliveu-mi-content {
  color: #444;
}

.oliveu-modal[data-theme="light"] .oliveu-mi-locations {
  color: #555;
}

.oliveu-modal[data-theme="light"] .oliveu-mi-locations strong {
  color: #333;
}

/* Dark theme info */
.oliveu-modal[data-theme="dark"] .oliveu-modal-info {
  color: rgba(255,255,255,0.8);
}

.oliveu-modal[data-theme="dark"] .oliveu-mi-title {
  color: var(--oliv-white);
}

.oliveu-modal[data-theme="dark"] .oliveu-mi-venue {
  color: rgba(255,255,255,0.6);
}

.oliveu-modal[data-theme="dark"] .oliveu-mi-audience {
  color: rgba(255,255,255,0.45);
}

.oliveu-modal[data-theme="dark"] .oliveu-mi-content {
  color: rgba(255,255,255,0.7);
}

.oliveu-modal[data-theme="dark"] .oliveu-mi-locations {
  color: rgba(255,255,255,0.6);
}

.oliveu-modal[data-theme="dark"] .oliveu-mi-locations strong {
  color: rgba(255,255,255,0.85);
}


/* ── Modal info elements ── */
.oliveu-mi-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  color: var(--oliv-white);
  background: var(--oliv-green-dark);
  align-self: flex-start;
}

.oliveu-mi-badge.oliveu-type-b2b      { background: var(--oliv-green-dark); }
.oliveu-mi-badge.oliveu-type-press     { background: #2e6ea6; }
.oliveu-mi-badge.oliveu-type-sampling  { background: #b5851b; }

.oliveu-mi-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  font-family: quicksand !important;
}

.oliveu-mi-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.oliveu-mi-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--oliv-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.oliveu-mi-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.oliveu-mi-venue {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  line-height: 1.5;
}

.oliveu-mi-venue svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.5;
}

.oliveu-mi-audience {
  font-size: 0.82rem;
  font-style: italic;
  margin: 0;
}

.oliveu-mi-divider {
  height: 1px;
  background: currentColor;
  opacity: 0.1;
  margin: 4px 0;
}

.oliveu-mi-content {
  font-size: 0.9rem;
  line-height: 1.65;
}

.oliveu-mi-content p {
  margin: 0 0 12px;
}

.oliveu-mi-content p:last-child {
  margin-bottom: 0;
}

.oliveu-mi-locations {
  font-size: 0.85rem;
  margin-top: 4px;
}

.oliveu-mi-locations strong {
  font-weight: 600;
}

.oliveu-mi-locations ul {
  margin: 6px 0 0;
  padding-left: 18px;
  list-style: disc;
}

.oliveu-mi-locations li {
  margin-bottom: 3px;
}


/* ═══════════════════════════════════════════
   PRESS COVERAGE LIST
   ═══════════════════════════════════════════ */
.oliveu-press-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* Dark theme press */
.oliveu-press-list[data-theme="dark"] .oliveu-press-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(122, 211, 0, 0.15);
}
.oliveu-press-list[data-theme="dark"] .oliveu-press-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  border-color: rgba(122, 211, 0, 0.3);
}
.oliveu-press-list[data-theme="dark"] .oliveu-press-title   { color: var(--oliv-white); }
.oliveu-press-list[data-theme="dark"] .oliveu-press-medium  { color: var(--oliv-gold); }
.oliveu-press-list[data-theme="dark"] .oliveu-press-issue   { color: rgba(255,255,255,0.5); }
.oliveu-press-list[data-theme="dark"] .oliveu-press-stat .stat-val { color: var(--oliv-white); }
.oliveu-press-list[data-theme="dark"] .oliveu-press-stat .stat-lbl { color: rgba(255,255,255,0.4); }
.oliveu-press-list[data-theme="dark"] .oliveu-press-desc    { color: rgba(255,255,255,0.65); }

/* Light theme press */
.oliveu-press-list[data-theme="light"] .oliveu-press-card {
  background: var(--oliv-white);
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.oliveu-press-list[data-theme="light"] .oliveu-press-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border-color: var(--oliv-green);
}
.oliveu-press-list[data-theme="light"] .oliveu-press-title   { color: var(--oliv-dark); }
.oliveu-press-list[data-theme="light"] .oliveu-press-medium  { color: var(--oliv-green-dark); }
.oliveu-press-list[data-theme="light"] .oliveu-press-issue   { color: #777; }
.oliveu-press-list[data-theme="light"] .oliveu-press-stat .stat-val { color: var(--oliv-dark); }
.oliveu-press-list[data-theme="light"] .oliveu-press-stat .stat-lbl { color: #888; }
.oliveu-press-list[data-theme="light"] .oliveu-press-desc    { color: #444; }


.oliveu-press-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.oliveu-press-card:hover {
  transform: translateY(-2px);
}

.oliveu-press-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.oliveu-press-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 16px;
  background: var(--oliv-green-dark);
  color: var(--oliv-white);
}

.oliveu-press-flag {
  font-size: 1rem;
  line-height: 1;
}

.oliveu-press-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.oliveu-press-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.oliveu-press-medium {
  font-size: 0.85rem;
  font-weight: 600;
}

.oliveu-press-issue {
  font-size: 0.82rem;
}

.oliveu-press-stats {
  display: flex;
  gap: 20px;
}

.oliveu-press-stat {
  display: flex;
  flex-direction: column;
}

.oliveu-press-stat .stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.oliveu-press-stat .stat-lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.oliveu-press-desc {
  font-size: 0.85rem;
  line-height: 1.55;
}

.oliveu-press-desc p {
  margin: 0 0 8px;
}
.oliveu-press-desc p:last-child {
  margin-bottom: 0;
}

.oliveu-press-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--oliv-green) !important;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  margin-top: auto;
}

.oliveu-press-link:hover {
  color: var(--oliv-lime) !important;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .oliveu-events-grid[data-columns="4"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .oliveu-modal-inner {
    flex-direction: column;
  }

  .oliveu-modal-images {
    flex: 0 0 auto;
    max-width: 100%;
    height: 55vh;
  }

  .oliveu-modal-main-img {
    max-height: none;
    min-height: 0;
  }

  .oliveu-modal-info {
    padding: 24px;
  }

  .oliveu-modal-container {
    width: 98vw;
    max-height: 95vh;
  }
}

@media (max-width: 820px) {
  .oliveu-events-grid[data-columns="3"],
  .oliveu-events-grid[data-columns="4"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .oliveu-press-list {
    grid-template-columns: 1fr;
  }
}

/* Phone */
@media (max-width: 640px) {
  .oliveu-events-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 24px 16px 40px;
  }

  .oliveu-event-body {
    padding: 16px;
  }

  .oliveu-event-title {
    font-size: 0.95rem;
  }

  .oliveu-modal-container {
    width: 96vw;
    max-height: 94vh;
    border-radius: 14px;
  }

  .oliveu-modal-main-img {
    max-height: none;
    min-height: 0;
  }

  .oliveu-modal-info {
    padding: 20px 18px;
    gap: 12px;
  }

  .oliveu-mi-title {
    font-size: 1.15rem;

  }

  .oliveu-press-list {
    padding: 24px 16px 40px;
    gap: 16px;
  }

  .oliveu-press-card {
    padding: 18px;
  }

  .oliveu-press-title {
    font-size: 0.95rem;
  }
}

/* Very small */
@media (max-width: 380px) {
  .oliveu-event-type-badge {
    font-size: 0.62rem;
    padding: 4px 10px;
  }

  .oliveu-press-stats {
    flex-direction: column;
    gap: 8px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════════
   NEWS & EVENTS PAGE – Section layout & typography
   ═══════════════════════════════════════════════════════════════════════════════ */

.oliveu-news-page {
  font-family: 'Quicksand', sans-serif;
  max-width: 1400px;
  margin: 0 auto;
  padding: 17em 0 80px;
  color: #2C2C2C;
}

/* ── Hero ── */
.oliveu-news-hero {
  text-align: center;
  padding: 72px 32px 48px;
  position: relative;
}

.oliveu-news-hero::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--oliv-green, #7AD300), var(--oliv-gold, #F1C36D));
  margin: 32px auto 0;
  border-radius: 2px;
}

.oliveu-news-hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--oliv-green-dark, #437400);
  margin: 0 0 16px;
  line-height: 1.2;
}

.oliveu-news-hero .oliveu-hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: #6B6B6B;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Section wrappers ── */
.oliveu-news-section {
  margin-bottom: 24px;
}

.oliveu-news-section:last-child {
  margin-bottom: 0;
}

/* ── Section headers ── */
.oliveu-section-header {
  text-align: center;
  padding: 56px 32px 8px;
  max-width: 800px;
  margin: 0 auto;
}

.oliveu-section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #2C2C2C;
  margin: 0 0 12px;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.oliveu-section-header h2 .oliveu-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--oliv-green, #7AD300) 0%, var(--oliv-lime, #8BC640) 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.oliveu-section-header h2 .oliveu-section-icon svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
}

.oliveu-section-header .oliveu-section-desc {
  font-size: 1.02rem;
  font-weight: 400;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* ── Section dividers ── */
.oliveu-section-divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.oliveu-section-divider hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D9D9D9 20%, #D9D9D9 80%, transparent);
  margin: 0;
}

/* ── Stats banner ── */
.oliveu-news-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 32px;
  flex-wrap: wrap;
}

.oliveu-news-stat {
  text-align: center;
}

.oliveu-news-stat .stat-number {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--oliv-green-dark, #437400);
  line-height: 1.1;
}

.oliveu-news-stat .stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .oliveu-news-hero {
    padding: 48px 20px 32px;
  }
  .oliveu-news-hero h1 {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
  .oliveu-news-hero .oliveu-hero-sub {
    font-size: 1rem;
  }
  .oliveu-section-header {
    padding: 40px 20px 8px;
  }
  .oliveu-section-header h2 {
    font-size: 1.5rem;
  }
  .oliveu-news-stats {
    gap: 24px;
  }
  .oliveu-news-stat .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .oliveu-news-hero h1 {
    font-size: 1.65rem;
  }
  .oliveu-section-header h2 {
    font-size: 1.3rem;
    gap: 10px;
  }
  .oliveu-section-header h2 .oliveu-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .oliveu-section-header h2 .oliveu-section-icon svg {
    width: 18px;
    height: 18px;
  }
  .oliveu-news-stats {
    gap: 16px;
    padding: 24px 16px;
  }
}
