.site-header {
  background: #07111f;
  border-bottom: 1px solid rgba(226, 186, 105, 0.25);
}

.site-header__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0.75rem 1.5rem;
}

.site-brand {
  color: var(--gold-bright);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--ivory);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover, .site-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
  color: var(--gold-bright);
}

.site-header a:focus-visible, .news-page a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.news-page { display: flex; flex-direction: column; min-height: 100svh; }

.news-main {
  background:
    linear-gradient(180deg, rgba(5, 11, 22, 0.55), #050b16 92%),
    url("../fond-site.png") center top / cover;
  flex: 1;
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem 4rem;
}

.news-heading { margin: 0 auto; max-width: 1100px; text-align: center; }
.news-heading h1 { margin: 1rem 0 1.2rem; white-space: normal; }
.news-heading__intro { color: var(--muted); font-family: var(--body-font); font-size: 1.08rem; line-height: 1.6; margin: 0; }

.news-article {
  background: linear-gradient(135deg, rgba(16, 38, 70, 0.88), rgba(5, 11, 22, 0.95));
  border: 1px solid rgba(226, 186, 105, 0.3);
  border-top: 2px solid var(--gold);
  margin: 3rem auto 0;
  max-width: 900px;
  padding: 2.5rem 3rem;
}

.news-article h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); line-height: 1.3; margin: 1rem 0 1.25rem; }
.news-article__text { color: var(--muted); font-family: var(--body-font); font-size: 1.08rem; line-height: 1.7; margin: 0 0 0.8rem; }
.news-article__text strong { color: var(--ivory); }
.news-article__discord { margin-top: 0.5rem; }
.news-event-details { border-block: 1px solid rgba(226, 186, 105, 0.2); display: grid; gap: 1rem 2rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 1.75rem 0; padding: 1.25rem 0; }
.news-event-details dt { color: var(--gold-bright); font-family: "DM Mono", monospace; font-size: 0.7rem; letter-spacing: 0.12em; margin-bottom: 0.5rem; text-transform: uppercase; }
.news-event-details dd { color: var(--ivory); font-family: var(--body-font); font-size: 1.08rem; line-height: 1.5; margin: 0; }

.site-footer { border-top: 1px solid rgba(226, 186, 105, 0.15); color: var(--muted); font-family: var(--body-font); font-size: 0.85rem; line-height: 1.6; padding: 1.4rem 1rem; text-align: center; }
.site-footer span { color: var(--gold); margin: 0 0.5rem; }

@media (max-width: 600px) {
  .site-header__inner { flex-direction: column; gap: 0.25rem; padding: 0.85rem 1rem 0.4rem; }
  .site-brand { font-size: 1rem; }
  .site-nav ul { column-gap: 1rem; }
  .site-nav a { font-size: 0.74rem; }
  .news-main { padding: 3rem 1rem; }
  .news-heading h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .news-article { margin-top: 2rem; padding: 2rem 1.25rem; }
  .news-event-details { grid-template-columns: 1fr; }
  .news-article .button { max-width: 20rem; }
}
