.cravin-news-strip {
  background: var(--forest-deep, #0E3312);
  padding: 48px 0;
  border-top: 1px solid rgba(128,0,128, 0.18);
  border-bottom: 1px solid rgba(128,0,128, 0.18);
}

.cravin-news-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.cravin-news-header {
  text-align: center;
  margin-bottom: 26px;
}

.cravin-news-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  color: var(--gold, #E3B76E);
  margin: 0 0 6px;
}

.cravin-news-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}

.cravin-news-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark, #957848) transparent;
}

.cravin-news-track::-webkit-scrollbar { height: 6px; }
.cravin-news-track::-webkit-scrollbar-thumb {
  background: var(--gold-dark, #957848);
  border-radius: 999px;
}

.cravin-news-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255, 0.04);
  border: 1px solid rgba(128,0,128, 0.18);
  border-radius: var(--radius, 16px);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-on-dark, #FFFFFF);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cravin-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(128,0,128, 0.45);
}

.cravin-news-card:focus-visible {
  outline: 2px solid var(--gold, #E3B76E);
  outline-offset: 2px;
}

.cravin-news-card-media {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: rgba(128,0,128, 0.08);
}

.cravin-news-card-play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(10,23,18, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cravin-news-card-play svg { width: 15px; height: 15px; }

.cravin-news-card-media img,
.cravin-news-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cravin-news-card-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(128,0,128,0.25), rgba(14,51,18,0.4));
}

.cravin-news-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cravin-news-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--forest-deep, #0E3312);
  background: var(--gold, #E3B76E);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.cravin-news-date {
  font-size: 0.72rem;
  opacity: 0.6;
}

.cravin-news-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin: 4px 0 2px;
  color: #fff;
  line-height: 1.3;
}

.cravin-news-card-body p {
  font-size: 0.85rem;
  line-height: 1.45;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 640px) {
  .cravin-news-card { flex-basis: 260px; }
  .cravin-news-strip { padding: 36px 0; }
}

/* ============ SMALL DISMISSIBLE ANNOUNCEMENT BAR (every page) ============
   Sits above the header, in normal document flow — so it scrolls away
   with the very first scroll and doesn't fight the sticky nav below it.
   Closing it stores a flag in localStorage (see news-section.js), so it
   will not come back on this page or any other page on the site. */
.cravin-news-bar {
  background: var(--forest-deep, #0E3312);
  border-bottom: 1px solid rgba(128,0,128, 0.25);
}

.cravin-news-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cravin-news-bar-slide {
  min-width: 0;
  transition: opacity 0.2s ease;
  opacity: 1;
}

.cravin-news-bar-slide.is-swapping {
  opacity: 0;
}

.cravin-news-bar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.cravin-news-bar-link:hover .cravin-news-bar-text {
  text-decoration: underline;
}

.cravin-news-bar-badge {
  flex-shrink: 0;
  background: var(--purple, #800080);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 999px;
}

.cravin-news-bar-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cravin-news-bar-dots {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cravin-news-bar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.cravin-news-bar-dot.is-active {
  background: var(--gold, #E3B76E);
  transform: scale(1.3);
}

.cravin-news-bar-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.cravin-news-bar-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.cravin-news-bar.cravin-news-bar-hide {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

@media (max-width: 640px) {
  .cravin-news-bar-inner { padding: 7px 14px; gap: 10px; }
  .cravin-news-bar-text { max-width: 46vw; }
}

/* ============ PROMO POPUP (poster / short video "ad") ============
   A centered modal — poster image or short muted/looping video on top,
   caption + CTA below, × in the corner. Only shows for news.json items
   flagged "popup": true (see news-section.js), and only one at a time. */
#cravin-promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10,23,18, 0.68);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

#cravin-promo-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cravin-promo-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--forest-deep, #0E3312);
  border: 1px solid rgba(128,0,128, 0.35);
  border-radius: var(--radius, 16px);
  box-shadow: var(--shadow, 0 18px 40px -16px rgba(10,23,18,0.4));
  color: var(--text-on-dark, #FFFFFF);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

#cravin-promo-overlay.is-open .cravin-promo-card {
  transform: translateY(0) scale(1);
}

.cravin-promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(10,23,18, 0.55);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cravin-promo-close:hover { background: rgba(10,23,18, 0.85); }

.cravin-promo-media-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: #04070a;
}

.cravin-promo-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cravin-promo-mute-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(10,23,18, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cravin-promo-mute-toggle:hover { background: rgba(10,23,18, 0.85); }

.cravin-promo-mute-toggle svg { width: 16px; height: 16px; }

.cravin-promo-body {
  padding: 18px 20px 22px;
}

.cravin-promo-badge {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--forest-deep, #0E3312);
  background: var(--gold, #E3B76E);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cravin-promo-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: #fff;
  line-height: 1.3;
}

.cravin-promo-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 0 16px;
}

.cravin-promo-cta {
  display: inline-block;
  width: 100%;
  padding: 12px;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .cravin-promo-card { max-width: 320px; }
  .cravin-promo-media-link { aspect-ratio: 3 / 4; }
}
