:root {
  color-scheme: light;
  --news-ink: #16343a;
  --news-muted: #5d7074;
  --news-brand: #1c5f6b;
  --news-brand-dark: #12434c;
  --news-surface: #ffffff;
  --news-background: #f4f8f8;
  --news-border: #d8e4e5;
}

* {
  box-sizing: border-box;
}

body.church-news-page {
  min-height: 100vh;
  margin: 0;
  color: var(--news-ink);
  background: var(--news-background);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.church-news-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--news-border);
  background: rgba(255, 255, 255, 0.96);
}

.church-news-nav__inner {
  display: flex;
  max-width: 1080px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.church-news-nav a {
  color: var(--news-ink);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.church-news-nav a:hover,
.church-news-nav a:focus-visible,
.church-news-nav a[aria-current="page"] {
  color: var(--news-brand);
}

.church-news-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.church-news-hero {
  padding: 76px 24px 64px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(18, 67, 76, 0.97), rgba(28, 95, 107, 0.9)),
    var(--news-brand);
}

.church-news-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.12;
}

.church-news-hero p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #e7f2f3;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.church-news-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  gap: 24px;
}

.church-news-post {
  padding: 30px 34px;
  border: 1px solid var(--news-border);
  border-radius: 14px;
  background: var(--news-surface);
  box-shadow: 0 10px 28px rgba(18, 67, 76, 0.07);
}

.church-news-post time {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--news-brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.church-news-post h2 {
  margin: 0 0 10px;
  color: var(--news-brand-dark);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.3;
}

.church-news-post h2 a {
  color: inherit;
  text-decoration-color: var(--news-brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.church-news-post p {
  margin: 0;
  color: var(--news-muted);
}

.church-news-empty {
  margin: 0;
  padding: 40px 32px;
  border: 1px dashed var(--news-border);
  border-radius: 14px;
  color: var(--news-muted);
  text-align: center;
  background: var(--news-surface);
}

@media (max-width: 680px) {
  .church-news-nav__inner {
    min-height: auto;
    padding: 16px 20px;
    justify-content: center;
    gap: 12px 20px;
    flex-wrap: wrap;
  }

  .church-news-nav a {
    font-size: 0.88rem;
  }

  .church-news-hero {
    padding: 54px 20px 48px;
  }

  .church-news-list {
    padding: 36px 18px 56px;
  }

  .church-news-post {
    padding: 24px 22px;
  }
}
