/* ============================================================
   VENUES SHOWCASE — Ana Sayfa
   ============================================================ */
.venues-showcase {
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.venues-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: var(--space-lg);
}

.venues-showcase__header-text .display-lg {
  max-width: 600px;
}

.venues-showcase__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 0.25rem;
  transition: gap var(--duration-fast);
}

.venues-showcase__link:hover { gap: 0.875rem; }

/* ── Venue grid ───────────────────────────────────────────── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── Venue card — tam görsel, overlay metin ───────────────── */
.venue-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  cursor: none;
  min-height: 340px;
}

/* İlk kart (Qubbe) geniş */
.venue-card--featured {
  grid-column: span 2;
  min-height: 420px;
}

.venue-card__link {
  display: block;
  position: absolute;
  inset: 0;
}

.venue-card--featured .venue-card__link {
  position: absolute;
  inset: 0;
}

.venue-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.venue-card:hover .venue-card__img {
  transform: scale(1.06);
}

/* Gradient overlay — alt koyu, üst hafif */
.venue-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,11,0.95) 0%,
    rgba(13,13,11,0.55) 45%,
    rgba(13,13,11,0.1)  100%
  );
  transition: background 0.4s;
}

.venue-card:hover .venue-card__overlay {
  background: linear-gradient(
    to top,
    rgba(13,13,11,0.98) 0%,
    rgba(13,13,11,0.65) 50%,
    rgba(13,13,11,0.2)  100%
  );
}

/* Metin alanı */
.venue-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 2;
}

/* Tag pills */
.venue-card__tags {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.venue-card__tag {
  display: inline-flex;
  padding: 0.2rem 0.625rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  backdrop-filter: blur(4px);
  background: rgba(13,13,11,0.3);
}

.venue-card__tag--gold {
  border-color: rgba(200,169,110,0.5);
  color: var(--gold);
  background: rgba(200,169,110,0.08);
}

.venue-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  transition: color var(--duration-fast);
}

.venue-card--featured .venue-card__title {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.venue-card:hover .venue-card__title {
  color: var(--gold-light);
}

/* Açıklama — hover'da görünür */
.venue-card__desc {
  font-size: 0.8125rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 380px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s var(--ease-out-expo), opacity 0.3s;
}

.venue-card:hover .venue-card__desc {
  max-height: 4rem;
  opacity: 1;
}

/* Footer: kapasite + keşfet */
.venue-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.875rem;
  margin-top: 0.25rem;
}

.venue-card__cap {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.venue-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  transition: color var(--duration-fast), gap var(--duration-fast);
}

.venue-card:hover .venue-card__cta {
  color: var(--cream);
  gap: 0.625rem;
}

/* ── RankMath Breadcrumb ──────────────────────────────────── */
.lp-breadcrumb {
  margin-bottom: 1rem;
}

.lp-breadcrumb .rank-math-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.5);
}

.lp-breadcrumb .rank-math-breadcrumb a {
  color: rgba(245,240,232,0.6);
  transition: color var(--duration-fast);
}

.lp-breadcrumb .rank-math-breadcrumb a:hover {
  color: var(--gold);
}

/* RankMath separator */
.lp-breadcrumb .rank-math-breadcrumb .separator {
  color: rgba(255,255,255,0.25);
  user-select: none;
}

/* Son eleman (aktif sayfa) */
.lp-breadcrumb .rank-math-breadcrumb span:last-child {
  color: var(--gold-light);
}

/* ── YouTube video arka plan ──────────────────────────────── */
.venue-hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.venue-hero__video.is-loaded {
  opacity: 1;
}

.venue-hero__video #venueHeroPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; /* 16:9 */
  min-width: 100%;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  pointer-events: none;
}

/* ── Venue iç sayfa (single-venue) ───────────────────────── */
.venue-hero {
  position: relative;
  height: 80svh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.venue-hero__media {
  position: absolute;
  inset: 0;
}

.venue-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s var(--ease-out-expo);
}

.venue-hero.is-visible .venue-hero__media img {
  transform: scale(1);
}

.venue-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,11,0.9) 0%,
    rgba(13,13,11,0.3) 60%,
    rgba(13,13,11,0.15) 100%
  );
}

.venue-hero__content {
  position: relative;
  z-index: 5;
  padding: var(--space-lg) 0;
  width: 100%;
}

.venue-hero__content .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.venue-hero__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.venue-badge {
  padding: 0.3rem 0.875rem;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.venue-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
}

.venue-hero__meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.venue-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.venue-hero__meta-label {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venue-hero__meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

/* ── Venue highlights grid ────────────────────────────────── */
.venue-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.venue-highlight {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
}

.venue-highlight__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-full);
  background: rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.venue-highlight__title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.venue-highlight__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Venue intro ──────────────────────────────────────────── */
.venue-intro__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.venue-intro__lead {
  color: var(--cream);
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  border-left: 2px solid var(--venue-accent, var(--gold));
  padding-left: 1.25rem;
}

.venue-intro__content {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.venue-intro__content h2,
.venue-intro__content h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 300;
  margin: 1.5rem 0 0.75rem;
}

.venue-intro__content p { margin-bottom: 1rem; }

/* Detay listesi */
.venue-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}

.venue-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.venue-detail-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.venue-detail-list li strong {
  color: var(--cream);
  font-weight: 500;
  margin-right: 0.25rem;
}

.venue-detail-link {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--duration-fast);
}

.venue-detail-link:hover { color: var(--gold); }

.venue-hero__meta-link {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--duration-fast);
}

.venue-hero__meta-link:hover { color: var(--gold-light); }

/* CTA card */
.venue-cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 7rem;
}

.venue-cta-card .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.venue-cta-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.875rem;
}

.venue-cta-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.venue-cta-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.venue-cta-card__actions .btn {
  width: 100%;
  justify-content: center;
}

.venue-cta-card__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

.venue-cta-card__note svg { color: var(--gold); flex-shrink: 0; }

/* ── Kapasite düzenleri tablosu ───────────────────────────── */
.venue-cap-table {
  margin: 2rem 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.venue-cap-table__title {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 0;
  font-weight: 400;
}

.venue-cap-table__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.venue-cap-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.venue-cap-item:nth-child(even) { border-right: none; }
.venue-cap-item:nth-last-child(-n+2) { border-bottom: none; }

.venue-cap-item__icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.venue-cap-item__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex: 1;
}

.venue-cap-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── Venue gallery ────────────────────────────────────────── */
.venue-gallery {
  padding: var(--space-xl) 0;
}

.venue-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

/* Her item: sabit oran, img absolute içinde tam dolduruyor */
.venue-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  background: var(--bg-card);
}

/* Aspect-ratio padding trick — tüm tarayıcılarda tutarlı */
.venue-gallery__item::before {
  content: '';
  display: block;
  padding-top: 66.66%; /* 3:2 oran */
}

/* 5'li tekrarlayan masonry pattern */
.venue-gallery__item:nth-child(5n+1) { grid-column: span 7; }
.venue-gallery__item:nth-child(5n+2) { grid-column: span 5; }
.venue-gallery__item:nth-child(5n+3) { grid-column: span 4; }
.venue-gallery__item:nth-child(5n+4) { grid-column: span 4; }
.venue-gallery__item:nth-child(5n+5) { grid-column: span 4; }

/* İlk geniş item daha yatay */
.venue-gallery__item:nth-child(5n+1)::before { padding-top: 56.25%; /* 16:9 */ }

.venue-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out-expo);
}

.venue-gallery__item:hover img {
  transform: scale(1.05);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .venue-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .venue-intro__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .venue-cta-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .venues-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .venue-card--featured {
    grid-column: span 1;
    min-height: 300px;
  }
  .venue-card { min-height: 280px; }
  .venue-card__desc { display: none; }

  .venues-showcase__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .venue-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .venue-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .venue-gallery__item { grid-column: span 1 !important; }
  .venue-gallery__item:nth-child(5n+1) { grid-column: span 2 !important; }
  .venue-gallery__item::before { padding-top: 66.66% !important; }
}

/* ============================================================
   GALERİ LİGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(13,13,11,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 1rem;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 88svh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transition: opacity 0.2s;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--cream);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--duration-fast), transform var(--duration-fast);
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  color: var(--cream);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: background var(--duration-fast);
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.3);
}

/* ============================================================
   TEKLİF AL POPUP MODAL
   ============================================================ */
.venue-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.venue-offer-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.venue-offer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,13,11,0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.venue-offer-modal__panel {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90svh;
  overflow-y: auto;
  padding: 2.5rem;
  transform: translateY(24px);
  transition: transform 0.35s var(--ease-out-expo);
}

.venue-offer-modal.is-open .venue-offer-modal__panel {
  transform: translateY(0);
}

.venue-offer-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.venue-offer-modal__close:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.25);
}

.venue-offer-modal__header {
  margin-bottom: 2rem;
}

.venue-offer-modal__header .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.venue-offer-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.venue-offer-modal__header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Form */
.venue-offer-form { display: flex; flex-direction: column; gap: 1rem; }

.venue-offer-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.venue-offer-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.venue-offer-form__field label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.venue-offer-form__field label span {
  color: var(--gold);
}

.venue-offer-form__field input,
.venue-offer-form__field select,
.venue-offer-form__field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--cream);
  font-family: inherit;
  transition: border-color var(--duration-fast);
  width: 100%;
}

.venue-offer-form__field input::placeholder,
.venue-offer-form__field textarea::placeholder {
  color: var(--text-muted);
}

.venue-offer-form__field input:focus,
.venue-offer-form__field select:focus,
.venue-offer-form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.venue-offer-form__field select option {
  background: #1a1a14;
  color: var(--cream);
}

.venue-offer-form__field textarea { resize: vertical; min-height: 80px; }

.venue-offer-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.venue-offer-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 1rem;
  text-align: center;
  color: var(--cream);
}

.venue-offer-form__success svg {
  color: var(--gold);
}

@media (max-width: 500px) {
  .venue-offer-modal__panel { padding: 1.75rem 1.25rem; }
  .venue-offer-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   HABERLER — Ana Sayfa
   ============================================================ */
.news-section {
  padding: var(--space-2xl) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: var(--space-lg);
}

/* İlk haber geniş */
.news-card--featured {
  grid-column: span 2;
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--duration-fast), transform 0.3s var(--ease-out-expo);
}

.news-card:hover {
  border-color: rgba(200,169,110,0.2);
  transform: translateY(-3px);
}

.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.news-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.news-card--featured .news-card__img-wrap {
  aspect-ratio: 16/8;
}

.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.news-card:hover .news-card__img {
  transform: scale(1.05);
}

.news-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-card__cat {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-full);
}

.news-card__date {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.news-card--featured .news-card__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.news-card__excerpt {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.news-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: gap var(--duration-fast);
}

.news-card:hover .news-card__read {
  gap: 0.625rem;
}

/* Responsive */
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card--featured {
    grid-column: span 1;
  }
}
