:root {
  --gold: #c9a030;
  --gold-dark: #8b6918;
  --gold-pale: #f2e8c3;
  --purple: #26215c;
  --purple-soft: #6b66a8;
  --ink: #2e2a4a;
  --muted: #706b88;
  --paper: #ffffff;
  --mist: #eef3f9;
  --lavender: #b8b2dc;
  --line: rgba(38, 33, 92, 0.14);
  --shadow: 0 22px 55px rgba(38, 33, 92, 0.18);
  --radius: 4px;
  --content: 1120px;
  --reading: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 2%, rgba(255, 255, 255, 0.54), transparent 27rem),
    linear-gradient(180deg, #b6afdc 0%, #c9d8eb 29%, #edf3fa 58%, #ffffff 100%);
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
}

body.dialog-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
a {
  font: inherit;
}

a {
  color: var(--purple);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--gold-dark);
}

button,
.button {
  min-height: 44px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 3000;
  padding: 11px 16px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(239, 244, 250, 0.9);
  border-bottom: 1px solid rgba(201, 160, 48, 0.38);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--content));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 26px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(38, 33, 92, 0.25);
  background: rgba(255, 255, 255, 0.64);
  color: var(--purple);
  padding: 8px 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--purple);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-dark);
  transition: left 180ms ease, right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  left: 0;
  right: 0;
}

.button,
button.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: var(--purple);
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
button.button:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.button--outline,
button.button--outline {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.38);
}

.button--outline:hover,
button.button--outline:hover {
  background: var(--gold-dark);
  color: #fff;
}

.button--quiet,
button.button--quiet {
  border-color: rgba(38, 33, 92, 0.22);
  color: var(--purple);
  background: rgba(255, 255, 255, 0.62);
}

.button[disabled],
button[disabled] {
  cursor: not-allowed;
  color: var(--muted);
  border-color: rgba(112, 107, 136, 0.22);
  background: rgba(255, 255, 255, 0.42);
  transform: none;
}

.header-cta {
  padding-inline: 16px;
}

main {
  overflow: clip;
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.hero {
  padding: 66px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.eyebrow,
.section-kicker,
.issue-date {
  margin: 0 0 13px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.page-title {
  margin: 0;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.3rem);
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.43em;
  font-style: italic;
  line-height: 1.15;
}

.hero-intro {
  max-width: 680px;
  margin: 27px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.72rem);
  line-height: 1.48;
}

.hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.hero-topics li {
  border: 1px solid rgba(201, 160, 48, 0.6);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.35);
  color: var(--purple);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.cover-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 365px);
}

.cover-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9% -14% -5% 18%;
  border: 1px solid rgba(201, 160, 48, 0.5);
  background: rgba(255, 255, 255, 0.28);
}

.cover-wrap img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.cover-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 15px;
  color: #fff;
  background: var(--purple);
}

.cover-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.cover-caption span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-strip {
  border-block: 1px solid rgba(201, 160, 48, 0.48);
  background: rgba(255, 255, 255, 0.34);
}

.editorial-strip .container {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 36px;
  align-items: center;
  padding-block: 30px;
}

.editorial-strip blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  font-style: italic;
  line-height: 1.45;
}

.editorial-strip cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 0.63rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strip-line {
  width: 1px;
  height: 84px;
  background: rgba(38, 33, 92, 0.18);
}

.section {
  padding: 86px 0;
}

.section--compact {
  padding: 60px 0;
}

.section--paper {
  background: rgba(255, 255, 255, 0.58);
  border-block: 1px solid rgba(38, 33, 92, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}

.section-title {
  font-size: clamp(2.55rem, 5vw, 4.65rem);
}

.section-lead {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.current-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5vw, 64px);
  align-items: start;
}

.current-cover {
  display: flex;
  justify-content: center;
}

.current-cover picture {
  width: min(100%, 420px);
}

.current-cover img {
  width: 100%;
  height: auto;
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.issue-panel {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(201, 160, 48, 0.48);
  background: rgba(255, 255, 255, 0.6);
}

.issue-panel h3 {
  margin: 0 0 16px;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.issue-panel > p {
  max-width: var(--reading);
  margin: 0;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin: 30px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.topic-list li {
  position: relative;
  padding-left: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.38;
}

.topic-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.12em;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 0.72em;
}

.access-note {
  margin-top: 22px !important;
  color: var(--muted);
  font-size: 0.78rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.issue-card {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  min-height: 330px;
  border: 1px solid rgba(38, 33, 92, 0.13);
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.issue-card picture,
.issue-card picture img {
  width: 100%;
  height: 100%;
}

.issue-card img {
  object-fit: cover;
}

.issue-card-body {
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.issue-card-number {
  margin: 0 0 7px;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.issue-card h3 {
  margin: 0;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.issue-card-date {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.issue-card-description {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.62;
}

.issue-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.issue-card-tags li {
  padding: 4px 7px;
  border: 1px solid rgba(201, 160, 48, 0.44);
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.issue-card .actions {
  margin-top: auto;
  padding-top: 22px;
}

.issue-card .button {
  flex: 1 1 140px;
  padding-inline: 12px;
}

.upcoming-card {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 58px);
  width: min(100%, 940px);
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(201, 160, 48, 0.42);
  background: rgba(255, 255, 255, 0.5);
}

.upcoming-card picture {
  width: 100%;
}

.upcoming-card img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 28px rgba(38, 33, 92, 0.16);
}

.upcoming-card h3 {
  margin: 0 0 9px;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.upcoming-card p {
  margin: 0 0 18px;
}

.status-tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.podcast-column {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(38, 33, 92, 0.13);
  background: rgba(255, 255, 255, 0.58);
}

.podcast-column h3 {
  margin: 0 0 10px;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.podcast-column > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.platform-links,
.episode-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-links {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.episode-links {
  margin-top: 20px;
}

.episode-links a,
.platform-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(38, 33, 92, 0.18);
  background: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.72fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.about-copy {
  max-width: var(--reading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.66rem);
  line-height: 1.58;
}

.about-copy p {
  margin-top: 0;
}

.ecosystem {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gold);
}

.ecosystem li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.ecosystem strong {
  display: block;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 400;
}

.ecosystem span {
  color: var(--muted);
  font-size: 0.82rem;
}

.subscribe-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(201, 160, 48, 0.54);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 244, 250, 0.72));
}

.subscribe-panel h2 {
  margin: 0 0 12px;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
}

.subscribe-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.support-row {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 29px 0;
  border-top: 1px solid var(--line);
}

.support-row p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.site-footer {
  color: #f5f2ff;
  background: var(--purple);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(130px, 0.55fr));
  gap: 42px;
  padding: 54px 0 34px;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.96;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.footer-group h2 {
  margin: 0 0 15px;
  color: var(--gold-pale);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-group li + li {
  margin-top: 9px;
}

.footer-group a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-group a:hover {
  color: var(--gold-pale);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Dialogues */
dialog {
  width: min(calc(100% - 28px), 860px);
  max-height: min(90vh, 940px);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

dialog::backdrop {
  background: rgba(17, 15, 45, 0.76);
  backdrop-filter: blur(3px);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 12px 18px;
  color: #fff;
  background: var(--purple);
}

.dialog-head h2 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-close {
  width: 42px;
  min-height: 42px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1.35rem;
  cursor: pointer;
}

.reader-dialog {
  width: min(calc(100% - 22px), 1000px);
  height: min(92vh, 960px);
}

.reader-shell {
  height: calc(100% - 56px);
  display: grid;
  grid-template-rows: 1fr auto;
}

.reader-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  background: var(--mist);
}

.reader-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.subscribe-dialog {
  max-width: 540px;
}

.subscribe-form {
  padding: clamp(26px, 6vw, 48px);
  background: linear-gradient(145deg, #fff, #f1f5fb);
}

.subscribe-form h2 {
  margin: 0 0 8px;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.05;
}

.subscribe-form > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--purple);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(38, 33, 92, 0.28);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--purple);
  font-size: 0.78rem;
}

.form-status.error {
  color: #9b2d30;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Pages juridiques */
.legal-main {
  min-height: 70vh;
  padding: 72px 0 90px;
}

.page-title {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.legal-content {
  max-width: 820px;
  margin-top: 38px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(38, 33, 92, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.legal-content h2 {
  margin: 36px 0 10px;
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  max-width: 74ch;
}

.notice {
  padding: 18px;
  border-left: 3px solid var(--gold-dark);
  background: #fff8dc;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 185px auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    inset: 82px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 22px;
    background: rgba(245, 248, 252, 0.98);
    border-bottom: 1px solid rgba(201, 160, 48, 0.35);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--content));
    grid-template-columns: 170px auto;
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .hero-grid,
  .current-grid,
  .about-grid,
  .podcast-grid,
  .subscribe-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-topics,
  .hero .actions {
    justify-content: center;
  }

  .cover-wrap {
    width: min(78vw, 350px);
  }

  .editorial-strip .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strip-line {
    width: 100%;
    height: 1px;
  }

  .topic-list {
    grid-template-columns: 1fr;
  }

  .issue-card {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .upcoming-card {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  }

  .subscribe-panel {
    gap: 24px;
  }

  .subscribe-panel .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .section--compact {
    padding: 46px 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .actions,
  .reader-actions,
  .support-row {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .button,
  .reader-actions .button,
  .support-row .button {
    width: 100%;
  }

  .issue-card {
    display: block;
  }

  .issue-card picture,
  .issue-card picture img {
    height: auto;
  }

  .issue-card img {
    aspect-ratio: 500 / 706;
    object-fit: cover;
  }

  .upcoming-card {
    grid-template-columns: 1fr;
  }

  .current-cover picture {
    width: min(88vw, 390px);
  }

  .upcoming-card picture {
    width: min(82vw, 330px);
    margin-inline: auto;
  }

  .upcoming-card img {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  dialog {
    width: calc(100% - 16px);
  }

  .reader-dialog {
    height: calc(100vh - 16px);
  }

  .reader-shell iframe {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
