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

.heroInner {
  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.45);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  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: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 520px;
}

.heroText {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
}

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

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

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

.layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.5fr);
  gap: 1.5rem;
  align-items: start;
}

.sidebarStack {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 96px;
}

.sidebarCard,
.groupCard,
.emptyState {
  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);
}

.sidebarCard {
  padding: 1.35rem;
}

.sidebarTitle {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.sidebarText {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.categoryNav {
  display: grid;
  gap: 0.55rem;
}

.categoryButton {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(17, 32, 64, 0.1);
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.categoryButtonActive {
  background: rgba(201, 146, 58, 0.12);
  border-color: rgba(201, 146, 58, 0.3);
  color: #8a5d18;
}

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

.groupCard {
  padding: 1.35rem;
}

.groupHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.groupTitle {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.groupCount {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.updateList {
  display: grid;
}

.updateItem {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.updateItem:last-child {
  border-bottom: none;
}

.updateDate {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.updateLink {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  font-size: 0.98rem;
}

.updateLink:hover {
  color: #8a5d18;
}

.updateMeta {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

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

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

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

  .sidebarStack {
    position: static;
  }
}

@media (max-width: 700px) {
  .updateItem {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}
