.page {
  background: #f8f6f2;
}

.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: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.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%;
}

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

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

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

.heroMeta {
  color: rgba(255,255,255,0.65);
  font-size: 0.84rem;
  margin-bottom: 0.6rem;
}

.heroTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.9rem;
  max-width: 760px;
}

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

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

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

.articleCard,
.relatedCard,
.loading,
.notFound {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.08);
}

.articleCard {
  padding: 2rem;
}

.articleTitle {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.metaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.metaChip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #f5f7fb;
  color: #3d4c63;
  font-size: 0.84rem;
}

.actionRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 32, 64, 0.14);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  background: #fff;
}

.articleBody {
  color: #41516a;
  line-height: 1.9;
}

.articleEmpty {
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: #f5f7fb;
  color: var(--text-muted);
  line-height: 1.8;
}

.articleBody :global(p) {
  margin-bottom: 1rem;
}

.relatedGrid {
  display: grid;
  gap: 1rem;
}

.relatedCard {
  padding: 1.2rem 1.3rem;
  text-decoration: none;
}

.relatedCategory {
  color: #8a5d18;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.relatedTitle {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.55;
}

.relatedMeta {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.loading,
.notFound {
  margin: 120px auto 80px;
  max-width: 860px;
  padding: 3rem 1.2rem;
  text-align: center;
  color: var(--text-muted);
}
