:root {
  --water: #082b32;
  --water-soft: #123f46;
  --paper: #f4efe3;
  --ink: #112528;
  --muted: #6b756f;
  --bass: #9fca55;
  --bass-dark: #607c34;
  --coral: #e36d44;
  --line: rgba(17, 37, 40, 0.14);
  --white-line: rgba(244, 239, 227, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, system-ui, sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--water);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.header-actions a {
  text-decoration: none;
}

.header-actions a:hover {
  color: var(--coral);
}

main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px 0 42px;
}

.hero-panel {
  display: flex;
  min-height: 520px;
  border-radius: 6px;
  padding: clamp(28px, 5vw, 56px);
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  background:
    linear-gradient(160deg, rgba(159, 202, 85, 0.18), transparent 38%),
    var(--water);
}

.issue-label,
.tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--bass);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 16px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: rgba(244, 239, 227, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.issue-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.issue-meta div {
  border-top: 1px solid var(--white-line);
  padding-top: 12px;
}

.issue-meta strong {
  display: block;
  color: var(--bass);
  font-size: 1.3rem;
}

.issue-meta span {
  color: rgba(244, 239, 227, 0.68);
  font-size: 0.82rem;
}

.hero-photo {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: start;
  border-block: 1px solid var(--line);
  padding: 34px 0;
}

.lead-kicker {
  position: sticky;
  top: 16px;
}

.lead-kicker h2,
.section-title h2,
.subscribe-copy h2,
.policy-content h1 {
  margin: 12px 0 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.lead-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
}

.lead-article img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.lead-content {
  display: flex;
  padding: clamp(22px, 4vw, 42px);
  flex-direction: column;
  justify-content: center;
}

.lead-content h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.lead-content p,
.post-card p,
.subscribe-copy p,
.policy-content p {
  color: var(--muted);
  line-height: 1.72;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 18px;
}

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

.post-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
}

.post-card img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.post-body {
  display: flex;
  min-height: 280px;
  padding: 20px;
  flex-direction: column;
}

.post-card h3 {
  margin: 14px 0 8px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.post-card p {
  margin: 0;
}

.read-more {
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  padding: 16px 0 0;
  color: var(--bass-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.full-text {
  display: none;
  margin-top: 10px !important;
}

.post-card.is-open .full-text {
  display: block;
}

.subscribe-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 28px;
  margin: 44px 0 22px;
  border-radius: 6px;
  padding: clamp(24px, 5vw, 48px);
  color: var(--paper);
  background: var(--water);
}

.subscribe-copy p {
  color: rgba(244, 239, 227, 0.76);
}

.subscribe-form {
  display: grid;
  gap: 14px;
}

.subscribe-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--white-line);
  border-radius: 6px;
  padding: 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.subscribe-form input::placeholder {
  color: rgba(244, 239, 227, 0.48);
}

.consent-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: rgba(244, 239, 227, 0.76);
  font-size: 0.88rem;
  font-weight: 600 !important;
  line-height: 1.5;
}

.consent-row input {
  margin-top: 3px;
  accent-color: var(--bass);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  color: var(--ink);
  background: var(--bass);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.primary-button:hover {
  background: #b4dc6b;
}

.form-note {
  margin: 0;
  color: rgba(244, 239, 227, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.policy-wrap {
  width: min(900px, calc(100% - 32px));
}

.policy-content {
  margin: 36px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 5vw, 54px);
  background: #fffaf0;
}

.policy-content h2 {
  margin: 28px 0 8px;
}

@media (max-width: 920px) {
  .hero,
  .lead-section,
  .lead-article,
  .subscribe-band {
    grid-template-columns: 1fr;
  }

  .lead-kicker {
    position: static;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .section-title {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-panel,
  .hero-photo {
    min-height: 390px;
  }

  .issue-meta {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }
}
