html { scroll-behavior: smooth; }
body {
  font-family: 'Red Hat Display', system-ui, -apple-system, sans-serif;
  color: #1a202c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.wrap { max-width: 1120px; margin: 0 auto; padding: 0 52px; }
@media (max-width: 800px) { .wrap { padding: 0 24px; } }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #9e3a45 0%, #BA535F 100%);
  position: relative;
  overflow: visible;
  text-align: left;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 5% 100%, rgba(0,0,0,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 95% 0%,  rgba(255,255,255,.08) 0%, transparent 55%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero__inner {
  max-width: 1120px; margin: 0 auto;
  padding: 100px 52px 96px;
  position: relative; z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.hero__content {
  flex: 1;
  max-width: 640px;
  align-self: center;
}
.hero__image {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: -116px;
  position: relative;
  z-index: 5;
}
.hero__image img {
  width: clamp(280px, 32vw, 420px);
  height: auto;
  display: block;
  user-select: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 24px 64px;
    gap: 40px;
  }
  .hero__content {
    align-self: stretch;
  }
  .hero__image {
    width: 100%;
    justify-content: center;
    margin-bottom: -84px;
  }
  .hero__image img {
    width: 320px;
  }
}
.hero__label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800; line-height: 1.06; letter-spacing: -.04em;
  color: #fff; margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  max-width: 600px;
}

/* ── NEWS SECTION ── */
.news-section {
  padding: var(--pad) 0;
  background: #fff;
}

/* Subnav Filter Tabs */
.news-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
@media (max-width: 480px) {
  .news-nav {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.news-nav__btn {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
  outline: none;
}
.news-nav__btn:hover {
  color: var(--ink);
  border-color: var(--subtle);
}
.news-nav__btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(186, 83, 95, 0.32);
}
.news-nav__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f8fafc;
  color: var(--subtle);
  border-color: var(--border);
  box-shadow: none;
}
.news-nav__btn:disabled:hover {
  color: var(--subtle);
  border-color: var(--border);
}

/* Grid Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: opacity 0.25s ease;
}
@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Plate with rounded edges */
.ncard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.ncard.hidden {
  display: none;
}
.ncard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(13, 17, 23, 0.08);
}

/* Image wrapper - Rounded square aspect ratio 1:1 */
.ncard__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  margin-bottom: 20px;
}
.ncard__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ncard:hover .ncard__img-wrap img {
  transform: scale(1.05);
}

/* Metadata & tags */
.ncard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

/* Standardized tags */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
}
.tag--rose {
  background: var(--primary-l);
  color: var(--primary);
  border-color: var(--primary-m);
}
.tag--purple {
  background: #eeedfe;
  color: #3c3489;
  border-color: #c8c5f8;
}

.ncard__date {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

/* Title & Description */
.ncard__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em; 
}
.ncard__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.8em;
}

/* Link Actions */
.ncard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.15s;
  align-self: flex-start;
}
.ncard__link svg {
  transition: transform 0.2s ease;
}
.ncard:hover .ncard__link {
  color: var(--primary-d);
}
.ncard:hover .ncard__link svg {
  transform: translateX(4px);
}

/* Load More Pagination */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 48px;
}
.load-more-container.hidden {
  display: none;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s ease; letter-spacing: -.01em; white-space: nowrap;
}
.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(186,83,95,.35);
}
.btn--primary:hover {
  background: var(--primary-d);
  box-shadow: 0 6px 20px rgba(186,83,95,.45);
  transform: translateY(-1px);
}