.page {
  background: #f8f6f2;
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 130px 0 96px;
}

.heroBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #112040 52%, #1d355b 100%);
}

.heroPattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(201, 146, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 146, 58, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.heroGlow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  right: 10%;
  top: 10%;
  background: radial-gradient(circle, rgba(201, 146, 58, 0.18) 0%, transparent 68%);
}

.heroContainer,
.heroInner,
.section {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.breadcrumb a:hover,
.current {
  color: var(--gold-light);
}

.title {
  margin: 0 0 1rem;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.05;
}

.subtitle {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.heroWave {
  position: absolute;
  inset: auto 0 -2px;
}

.heroWave svg {
  display: block;
  width: 100%;
}

.section {
  padding: 80px 0 96px;
}

.sectionHead {
  text-align: center;
  margin-bottom: 2.2rem;
}

.sectionLead {
  max-width: 680px;
  margin: 0.85rem auto 0;
  color: #68768d;
  line-height: 1.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.08);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 146, 58, 0.35);
  box-shadow: 0 24px 52px rgba(10, 22, 40, 0.14);
}

.cardImage {
  height: 240px;
  background: linear-gradient(135deg, #10213e, #295f82);
  background-size: cover;
  background-position: center;
  position: relative;
}

.cardImage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.68), transparent 58%);
}

.cardDate {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a1628;
  font-size: 0.78rem;
  font-weight: 700;
}

.cardBody {
  padding: 1.5rem;
}

.cardTitle {
  color: #0a1628;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.25rem;
  line-height: 1.25;
}

.cardText {
  margin-top: 0.8rem;
  color: #5e6b80;
  line-height: 1.8;
  font-size: 0.92rem;
}

.cardLink {
  margin-top: 1rem;
  color: #c9923a;
  font-weight: 700;
  font-size: 0.9rem;
}

.empty {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 18px;
  color: #5e6b80;
  border: 1px solid rgba(10, 22, 40, 0.08);
}

.loading {
  padding: 180px 0 120px;
  text-align: center;
  color: #5e6b80;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 118px 0 84px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
