.page {
  background: #f7f5ef;
}

.hero {
  min-height: 380px;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.heroPattern {
  position: absolute;
  inset: 0;
  background:
    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: 46px 46px;
  opacity: 0.35;
}

.heroGlow {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 58, 0.07) 0%, transparent 70%);
}

.heroContainer {
  position: relative;
  z-index: 2;
  width: 100%;
}

.heroInner {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 620px;
}

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

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

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

.heroTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 520px;
}

.heroSubtitle {
  max-width: 580px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.heroWave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

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

.mainSection {
  padding: 52px 0 90px;
}

.layout {
  display: grid;
  gap: 1.25rem;
}

.featuredCard,
.card,
.emptyState {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.08);
}

.featuredCard {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

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

.featuredImage {
  min-height: 360px;
}

.featuredBody {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featuredMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.metaChip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(201, 146, 58, 0.14);
  color: #8a5d18;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metaDate {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featuredTitle {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.featuredText {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  line-height: 1.85;
}

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

.card {
  overflow: hidden;
}

.cardImage {
  height: 220px;
}

.cardBody {
  padding: 1.2rem;
}

.cardTitle {
  margin: 0.45rem 0 0.75rem;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.45;
}

.cardText {
  margin: 0 0 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.cardLink {
  color: #8a5d18;
  font-weight: 700;
  text-decoration: none;
}

.emptyState {
  padding: 3rem 1.2rem;
  text-align: center;
  color: var(--text-muted);
}

.emptyState h2 {
  color: var(--navy);
  margin-bottom: 0.65rem;
}

@media (max-width: 1100px) {
  .cardsGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .featuredCard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .cardsGrid {
    grid-template-columns: 1fr;
  }

  .featuredImage {
    min-height: 260px;
  }
}
