:root {
  --cream: #fbfaf6;
  --paper: #fffefa;
  --navy: #071d49;
  --navy2: #102f65;
  --wine: #9f2d2a;
  --terracotta-dark: #793330;
  --gold: #c59a46;
  --ink: #252525;
  --muted: #6e6a62;
  --line: #ded8cc;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.62;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  font: 700 0.72rem/1.2 var(--sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wine);
}
.topbar {
  background: var(--navy);
  color: #fff;
  font: 600 0.72rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar .wrap {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toplinks {
  display: flex;
  gap: 22px;
}
.edition {
  color: #ead9b3;
}
.masthead {
  padding: 20px 0 17px;
  border-bottom: 1px solid var(--gold);
  text-align: center;
}
.masthead-logo {
  display: block;
  width: min(680px, 82vw);
  height: auto;
  margin: 0 auto;
}
.article-page .masthead-logo {
  width: min(540px, 76vw);
}
.tagline {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}
.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: clamp(10px, 2vw, 24px);
}
.nav a {
  font: 700 0.78rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.nav a:hover {
  color: var(--wine);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font: 700 0.78rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  color: var(--wine);
}
.nav-dropdown summary span {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.nav-dropdown[open] summary span {
  transform: rotate(180deg);
}
.column-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 17px);
  left: 50%;
  width: 245px;
  padding: 9px 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--wine);
  box-shadow: 0 14px 30px rgba(12, 35, 71, 0.14);
  transform: translateX(-50%);
}
.column-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.column-menu a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}
.column-menu a:hover {
  background: rgba(169, 54, 49, 0.07);
}
.column-menu small {
  width: 52px;
  flex: 0 0 52px;
  color: var(--wine);
  font: 700 0.64rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contest-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.contest-nav-main {
  color: var(--navy);
  font: 700 0.78rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contest-nav-main:hover,
.contest-nav-main.active {
  color: var(--wine);
}
.contest-nav-dropdown summary {
  padding: 5px 2px;
}
.contest-menu {
  left: auto;
  right: -18px;
  width: 270px;
  transform: none;
}
.contest-menu a.active {
  background: rgba(169, 54, 49, 0.08);
  color: var(--wine);
  font-weight: 800;
}
.contest-main {
  padding-bottom: 65px;
}
.contest-header {
  max-width: 850px;
  margin: 58px 0 32px;
}
.contest-header h1 {
  margin: 8px 0 13px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}
.contest-header p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}
.contest-support {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  background: rgba(255,255,255,.5);
}
.contest-support img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}
.contest-support h2,
.cmo-contest-footer h2 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}
.contest-support p,
.cmo-contest-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.contest-section,
.contest-news {
  padding: 52px 0;
}
.contest-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}
.contest-category {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  background: rgba(255,255,255,.42);
}
.contest-category span,
.contest-empty span {
  color: var(--wine);
  font: 800 .7rem/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contest-category h2 {
  margin: 12px 0 9px;
  color: var(--navy);
  font-size: 1.75rem;
}
.contest-category p {
  min-height: 68px;
  color: var(--muted);
  line-height: 1.5;
}
.contest-category strong {
  color: var(--wine);
  font: 800 .76rem/1 var(--sans);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.contest-empty {
  padding: 38px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  background: rgba(255,255,255,.38);
}
.contest-empty h2 {
  margin: 10px 0 8px;
  color: var(--navy);
}
.contest-empty p {
  margin: 0;
  color: var(--muted);
}
.contest-news-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  background: rgba(255,255,255,.5);
}
.contest-news-card > a {
  display: grid;
  grid-template-columns: minmax(220px,300px) 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px;
}
.contest-news-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
}
.contest-news-card .eyebrow { margin-bottom: 10px; }
.contest-news-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.65rem,3vw,2.35rem);
  line-height: 1.08;
}
.contest-news-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}
.contest-news-card strong {
  color: var(--wine);
  font: 800 .76rem/1 var(--sans);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cmo-contest-footer {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  margin-top: 10px;
  padding: 32px;
  color: #fff;
  background: var(--navy);
  border-top: 3px solid var(--gold);
}
.cmo-contest-footer h2,
.cmo-contest-footer p {
  color: #fff;
}
.cmo-contest-links {
  display: grid;
  gap: 10px;
  min-width: 235px;
}
.cmo-contest-links a {
  padding: 11px 14px;
  border: 1px solid var(--gold);
  color: #fff;
  font: 800 .74rem/1.2 var(--sans);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.columns-page-header {
  max-width: 780px;
  margin: 58px auto 34px;
  text-align: center;
}
.columns-page-header h1 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.1;
}
.columns-page-header p {
  color: var(--muted);
  font-size: 1.08rem;
}
.columns-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 70px;
}
.column-directory-card {
  scroll-margin-top: 80px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  background: rgba(255, 255, 255, 0.46);
}
.column-directory-card .day {
  color: var(--gold-dark);
  font: 800 0.68rem/1 var(--sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.column-directory-card h2 {
  margin: 8px 0 9px;
  color: var(--navy);
  font-size: 1.65rem;
}
.column-directory-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.columns-archive-note {
  max-width: 820px;
  margin: 28px 0 55px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 600 0.9rem/1.6 var(--sans);
}
.topic-main { padding-bottom: 72px; }
.topic-list { max-width: 940px; margin: 0 auto; }
.topic-empty {
  max-width: 760px;
  margin: 36px auto 80px;
  padding: 38px;
  border-top: 3px solid var(--wine);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.topic-empty h2 { color: var(--navy); margin: 0 0 12px; }
.topic-empty p { color: var(--muted); margin: 0; }
.club-library { padding: 54px 0 70px; }
.club-library-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; margin-top: 28px; }
.club-book-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  background: rgba(255,255,255,.46);
}
.club-book-card img { width: 100%; aspect-ratio: 2 / 3; object-fit: contain; background: white; }
.club-book-card h2 { margin: 7px 0 3px; color: var(--navy); font-size: 1.55rem; }
.club-book-card p { margin: 5px 0; color: var(--muted); line-height: 1.45; }
.club-book-card .button { display: inline-block; margin-top: 13px; }
.club-review-list, .club-release-list { margin-top: 22px; }
.club-editorial .card .eyebrow { margin-top: 15px; }
@media (max-width: 820px) { .club-library-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .club-book-card { grid-template-columns: 110px 1fr; gap: 16px; padding: 16px; } }

.authors-page,
.author-profile-page {
  padding-bottom: 72px;
}
.authors-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 6px 0 52px;
}
.author-card {
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 24px;
}
.author-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1);
}
.author-card h2 {
  margin: 18px 0 7px;
  font-size: 1.55rem;
  color: var(--navy);
}
.author-card p {
  min-height: 3.2em;
  color: var(--muted);
  line-height: 1.55;
}
.author-count {
  color: var(--wine);
  font: 700 0.78rem var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.author-profile-header {
  display: grid;
  grid-template-columns: 270px minmax(0, 560px);
  gap: 42px;
  align-items: center;
  margin: 58px 0 54px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.author-profile-header img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  filter: grayscale(1);
}
.author-profile-header h1 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3rem);
}
.author-profile-header p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}
.author-articles {
  max-width: 900px;
}
.author-article-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.author-article-item time {
  color: var(--muted);
  font: 600 .82rem/1.5 var(--sans);
}
.author-article-item h3 {
  margin: 5px 0 8px;
  color: var(--navy);
  font-size: 1.55rem;
}
.author-article-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 820px) {
  .authors-directory { grid-template-columns: 1fr 1fr; }
  .author-profile-header { grid-template-columns: 180px 1fr; gap: 24px; }
  .author-profile-header img { width: 180px; height: 180px; }
}
@media (max-width: 560px) {
  .authors-directory { grid-template-columns: 1fr; }
  .author-profile-header { grid-template-columns: 1fr; margin-top: 36px; }
  .author-profile-header img { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .author-article-item { grid-template-columns: 1fr; gap: 8px; }
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font: 700 0.82rem var(--sans);
}
.breaking {
  border-bottom: 1px solid var(--line);
}
.breaking .wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  font-size: 0.92rem;
}
.breaking strong {
  font: 800 0.76rem/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  white-space: nowrap;
}
.breaking p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main {
  padding-bottom: 70px;
}
.hero {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 28px;
  padding: 36px 0 34px;
  border-bottom: 1px solid var(--line);
}
.hero-main img {
  height: 430px;
}
.hero-main .eyebrow {
  margin-top: 14px;
}
.hero-main h1 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  margin: 14px 0 12px;
  color: var(--wine);
  letter-spacing: -0.025em;
}
.deck {
  font-size: 1.1rem;
  line-height: 1.45;
  color: #514d47;
  margin: 0;
}
.byline {
  font: 600 0.76rem var(--sans);
  letter-spacing: 0.035em;
  color: var(--navy);
  margin-top: 15px;
}
.side-story {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.side-story:last-child {
  border-bottom: 0;
}
.side-story img {
  height: 155px;
  margin-bottom: 12px;
}
.side-story h2 {
  font-size: 1.45rem;
  line-height: 1.12;
  margin: 7px 0;
  color: var(--navy);
}
.cinema-image-wrap {
  position: relative;
}
.cinema-image-title {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #4d5b32;
  font: 900 1.25rem/0.92 Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
}
.section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}
.section-title {
  margin: 0;
  font-size: 1.8rem;
  color: var(--navy);
}
.section-title:after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.more {
  font: 700 0.72rem var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
}
.news-list {
  border-top: 2px solid var(--navy);
}
.news-featured {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.news-featured a {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) 1.28fr;
  gap: 24px;
  align-items: center;
}
.news-featured img {
  height: 255px;
  object-position: center 22%;
}
.news-featured h3 {
  margin: 7px 0 9px;
  color: var(--wine);
  font-size: 1.75rem;
  line-height: 1.08;
}
.news-featured-alexy h3 {
  color: var(--navy);
}
.news-featured p {
  margin: 0 0 17px;
  color: var(--ink);
  line-height: 1.45;
}
.news-featured time {
  color: var(--gold);
  font: 700 0.75rem var(--sans);
}
.news-featured-stacked a {
  grid-template-columns: 1fr;
  gap: 15px;
}
.news-featured-stacked img {
  height: 315px;
  object-position: center 43%;
}
.news-image-wrap {
  position: relative;
  overflow: hidden;
}
.news-image-wrap img {
  display: block;
}
.news-image-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 12px 6px;
  background: rgba(121, 51, 48, 0.94);
  color: #fffaf2;
  font: 700 0.76rem/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news-featured-stacked h3 {
  max-width: 700px;
  font-size: 1.48rem;
  line-height: 1.16;
}
.news-featured-stacked p {
  max-width: 680px;
}
.news-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.news-item time {
  font: 700 0.75rem var(--sans);
  color: var(--gold);
}
.news-item h3 {
  font-size: 1.17rem;
  line-height: 1.25;
  margin: 0;
  color: var(--navy);
}
.news-item h3 a {
  color: var(--navy);
}
.news-item h3 a:hover {
  color: var(--wine);
}
.news-archive-main {
  padding: 48px 0 72px;
}
.news-archive-header {
  border-bottom: 2px solid var(--navy);
  margin-bottom: 8px;
  padding-bottom: 22px;
}
.news-archive-header h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 8px 0 10px;
}
.news-archive-header p {
  color: var(--muted);
  margin: 0;
}
.news-archive-list {
  display: grid;
}
.news-archive-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 150px 1fr;
  padding: 23px 0;
}
.news-archive-item time {
  color: var(--gold-dark);
  font: 800 0.76rem/1.4 var(--sans);
  text-transform: uppercase;
}
.news-archive-item .eyebrow {
  margin-bottom: 5px;
}
.news-archive-item h2 {
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.15;
  margin: 0 0 7px;
}
.news-archive-item h2 a {
  color: var(--navy);
}
.news-archive-item h2 a:hover {
  color: var(--wine);
}
.news-archive-item p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.most-read {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
}
.most-read h3 {
  margin: 0 0 12px;
  color: var(--navy);
}
.support-card {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.monthly-book-card {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.monthly-book-club-link {
  display: block;
  padding: 5px 7px 7px;
  margin: -5px -7px 0;
  border-radius: 3px;
  transition: background-color 160ms ease, transform 160ms ease;
}
.monthly-book-club-link:hover,
.monthly-book-club-link:focus-visible {
  background: rgba(177, 48, 43, 0.07);
  transform: translateX(3px);
  outline: none;
}
.monthly-book-club-link:hover h3,
.monthly-book-club-link:focus-visible h3 {
  color: var(--wine);
}
.monthly-book-label {
  color: var(--wine);
  font: 900 0.72rem/1.2 var(--sans);
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}
.monthly-book-card h3 {
  margin: 5px 0 2px;
  color: var(--navy);
  font-size: 1.45rem;
  text-align: left;
}
.monthly-book-month {
  margin: 0;
  color: var(--gold-dark);
  font: 800 0.72rem/1.3 var(--sans);
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}
.monthly-book-image {
  display: block;
  margin: 12px auto 4px;
}
.monthly-book-image img {
  display: block;
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}
.monthly-book-card h4 {
  margin: 5px 0 6px;
  color: var(--navy);
  font: 700 1.12rem/1.2 var(--serif);
}
.monthly-book-edition {
  margin: 0 auto 10px;
  color: var(--muted);
  font: 400 0.76rem/1.45 var(--sans);
}
.monthly-book-link {
  color: var(--wine);
  font: 900 0.72rem/1 var(--sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.monthly-book-support {
  margin: 9px 0 0;
  color: var(--muted);
  font: 400 0.72rem/1.4 var(--sans);
}
.support-title {
  margin-bottom: 14px;
  text-align: left;
  color: var(--wine);
  font: 900 1rem/1.1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.support-card > a:first-of-type {
  display: block;
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin: 0 auto 5px;
  overflow: hidden;
  border-radius: 50%;
}
.support-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 176%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}
.support-link {
  display: inline-block;
  color: var(--navy);
  font: 800 0.7rem/1 var(--sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.support-link:hover {
  color: var(--navy);
}
.ranked {
  counter-reset: rank;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ranked li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  line-height: 1.25;
}
.ranked li:before {
  content: counter(rank);
  color: var(--gold);
  font: 700 1.3rem var(--serif);
}
.ranked a {
  color: inherit;
  transition: color .18s ease;
}
.ranked a:hover,
.ranked a:focus-visible {
  color: var(--wine);
}
.column-feature {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  background: var(--navy);
  color: white;
}
.column-feature img {
  height: 100%;
  min-height: 360px;
}
.column-copy {
  padding: 42px;
}
.column-copy .eyebrow {
  color: #e6bb65;
}
.column-copy h2 {
  font-size: 2.45rem;
  line-height: 1.08;
  margin: 13px 0;
  color: #fff;
}
.column-copy p {
  color: #e7e8ec;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  font: 600 0.78rem var(--sans);
  letter-spacing: 0.04em;
}
.author-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
}
.cronicando {
  position: relative;
}
.cronicando-head {
  align-items: end;
}
.cronicando-head .section-title {
  margin-top: 5px;
}
.cronica-frequency {
  padding-bottom: 5px;
  color: var(--muted);
  font: 600 0.76rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cronica-feature {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) 1.45fr;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(7, 29, 73, 0.07);
}
.cronica-monogram {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #b85b51 0%, #9f463f 52%, #793330 100%);
  color: #f2c45f;
  font: italic 400 clamp(8rem, 18vw, 14rem)/1 var(--serif);
  text-shadow: 0 3px 18px rgba(56, 24, 17, 0.3);
}
.cronica-monogram::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 2px;
  bottom: 46px;
  background: #efbd50;
  box-shadow: 0 2px 10px rgba(74, 31, 20, 0.22);
}
.cronica-copy {
  align-self: center;
  max-width: 690px;
  padding: 48px 54px;
}
.cronica-intro {
  margin: 0 0 12px;
  color: var(--wine);
  font: italic 600 1rem/1.4 var(--serif);
}
.cronica-copy h2 {
  max-width: 620px;
  margin: 0 0 17px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}
.cronica-copy h2 a {
  color: inherit;
}
.cronica-copy h2 a:hover {
  color: var(--wine);
}
.cronica-copy > p:not(.cronica-intro):not(.cronica-note) {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.7;
}
.cronica-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  color: var(--navy);
  font: 600 0.8rem/1.25 var(--sans);
}
.cronica-byline small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 400;
}
.cronica-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: italic 0.88rem/1.4 var(--serif);
}
.cronica-button {
  margin-top: 24px;
  background: var(--navy);
}
.cronica-button:hover {
  background: var(--wine);
}
.cronica-page-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 48px auto -27px;
  border-radius: 50%;
  background: linear-gradient(145deg, #b85b51 0%, #793330 100%);
  color: #f2c45f;
  font: italic 400 3.6rem/1 var(--serif);
  box-shadow: 0 10px 28px rgba(83, 33, 30, 0.18);
}
.cronica-page .article-header {
  margin-top: 55px;
}
.cronica-page .article-header h1 {
  color: var(--navy);
}
.cronica-page .article-header .eyebrow {
  color: var(--wine);
}
.cronica-body p {
  margin: 0 0 1.15em;
}
.cronica-body p:last-child {
  color: var(--navy);
  font-weight: 700;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.columns-intro {
  margin: -8px 0 18px;
  color: var(--muted);
  font: 500 0.88rem/1.5 var(--sans);
}
.column-card-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 50px) / 3));
  gap: 25px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) transparent;
}
.column-showcase-card {
  scroll-snap-align: start;
  border-bottom: 1px solid var(--line);
}
.column-showcase-card a {
  display: block;
  height: 100%;
}
.column-showcase-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.column-showcase-literary img,
.sexta-literaria-card img {
  object-fit: contain;
  background: var(--navy);
}
.column-showcase-review img {
  object-fit: contain;
  background: #fff;
}
.column-card-copy {
  padding: 13px 2px 17px;
}
.column-card-copy .column-day {
  display: block;
  margin-bottom: 5px;
  color: var(--wine);
  font: 800 0.72rem/1.2 var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.column-card-copy strong {
  display: block;
  color: var(--navy);
  font: 800 1.5rem/1.12 var(--serif);
}
.column-card-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}
.column-showcase-card.is-today {
  border-top: 4px solid var(--wine);
}
.column-showcase-card.is-today .column-card-copy .column-day::after {
  content: " · coluna de hoje";
  color: var(--gold-dark);
}
.column-history {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
}
.column-history span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.column-history a {
  color: #174f9b;
  font-size: 0.92rem;
  font-weight: 800;
}
.anchor-alias {
  display: block;
  position: relative;
  top: -75px;
  visibility: hidden;
}
.sponsorship-space {
  display: grid;
  grid-template-columns: 155px 1fr;
  align-items: center;
  gap: 30px;
  min-height: 210px;
  padding: 32px 42px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  background: rgba(255, 255, 255, 0.45);
}
.sponsorship-mark {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  border: 1px solid var(--gold);
  color: var(--navy);
  font: 700 3.2rem/1 Georgia, serif;
}
.sponsorship-space h3 {
  margin: 7px 0 8px;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.sponsorship-space p {
  max-width: 700px;
  margin: 0 0 15px;
  color: var(--muted);
  line-height: 1.55;
}
.sponsorship-note {
  color: var(--wine);
  font: 800 0.7rem/1 var(--sans);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.supporter-logo-grid,
.supporter-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 28px;
}
.supporter-logo-card,
.supporter-invite-card {
  min-height: 320px;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  background: rgba(255, 255, 255, 0.62);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.supporter-logo-card:hover,
.supporter-invite-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(7, 35, 79, .08);
}
.supporter-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.supporter-logo-frame {
  position: relative;
  display: block;
  width: 192px;
  height: 192px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(213, 161, 37, .45), 0 8px 22px rgba(78, 18, 17, .12);
}
.supporter-logo-frame img {
  position: absolute;
  width: 365px;
  height: 365px;
  max-width: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.supporter-logo-card strong,
.supporter-invite-card strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font: 800 1.5rem/1.2 var(--serif);
}
.supporter-logo-card span,
.supporter-invite-card > span:last-child {
  display: block;
  margin-top: 9px;
  color: #174f9b;
  font: 800 .82rem/1.35 var(--sans);
}
.supporter-invite-card > .supporter-plan-link {
  margin-top: 15px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: none;
}
.supporter-invite-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.supporters-main,
.supporter-profile-main {
  padding-top: 64px;
  padding-bottom: 80px;
}
.supporters-header {
  max-width: 780px;
  margin-bottom: 40px;
}
.supporters-header h1,
.supporter-profile-hero h1 {
  margin: 7px 0 12px;
  color: var(--navy);
  font-size: clamp(2.3rem, 6vw, 4.6rem);
}
.supporters-header p,
.supporter-profile-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.supporter-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 62px;
  padding: 34px 38px;
  background: var(--navy);
  color: #fff;
}
.supporter-cta h2 { margin: 7px 0; color: #fff; }
.supporter-cta p { margin: 0; color: rgba(255,255,255,.78); }
.supporter-cta a { color: var(--gold); font-weight: 800; }
.supporter-back { color: #174f9b; font: 800 .86rem/1 var(--sans); }
.supporter-profile-hero {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 48px;
  margin: 34px 0 62px;
  padding: 42px;
  border-top: 4px solid var(--wine);
  background: rgba(255,255,255,.58);
}
.supporter-profile-logo {
  display: grid;
  place-items: center;
  min-height: 230px;
  border: 1px solid var(--line);
  background: #fff;
}
.supporter-logo-frame-large { width: 218px; height: 218px; }
.supporter-logo-frame-large img { width: 414px; height: 414px; }
.institutional-link { color: #174f9b; font: 800 .95rem/1.3 var(--sans); }
.supporter-article-list { border-top: 1px solid var(--line); }
.supporter-article-list > a,
.supporter-article-slot {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
}
.supporter-article-list small { color: var(--wine); font: 800 .72rem/1.35 var(--sans); text-transform: uppercase; letter-spacing: .06em; }
.supporter-article-list strong { color: #174f9b; font: 800 1.2rem/1.3 var(--serif); }
.supporter-article-list span { color: #174f9b; font: 800 .78rem/1 var(--sans); }
.supporter-article-slot { opacity: .72; }
@media (max-width: 720px) {
  .supporter-logo-grid,
  .supporter-directory { grid-template-columns: 1fr 1fr; }
  .supporter-profile-hero { grid-template-columns: 1fr; padding: 28px; }
  .supporter-profile-logo { min-height: 200px; }
  .supporter-article-list > a,
  .supporter-article-slot { grid-template-columns: 1fr; gap: 8px; }
  .supporter-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  .supporter-logo-grid,
  .supporter-directory { grid-template-columns: 1fr; }
}
.card img {
  height: 205px;
}
.card h3 {
  font-size: 1.4rem;
  line-height: 1.16;
  margin: 9px 0 6px;
  color: var(--navy);
}
.card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}
.club {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eee5d5;
}
.club-editorial .card {
  padding-bottom: 8px;
}
.club-editorial + * {
  margin-top: 0;
}
.section-title span {
  font-size: 0.72em;
}
.club-copy {
  padding: 48px;
}
.club h2 {
  font-size: 2.5rem;
  line-height: 1.05;
  color: var(--wine);
  margin: 10px 0 16px;
}
.club img {
  height: 100%;
  min-height: 380px;
}
.club .club-cover-home {
  width: 100%;
  padding: 38px;
  background: #fff;
  object-fit: contain;
}
.club-page {
  background: #fff;
  padding: 68px 0 90px;
}
.club-month {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}
.club-month-cover {
  display: grid;
  place-items: center;
  min-height: 590px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
}
.club-month-cover img {
  width: min(100%, 300px);
  height: auto;
  box-shadow: 0 16px 32px rgba(7, 32, 70, 0.12);
}
.club-kicker {
  margin: 26px 0 4px;
  color: var(--wine);
  font: 800 0.78rem/1 var(--sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.club-month-copy h1 {
  margin: 0;
  color: var(--navy);
  font: 700 clamp(2.15rem, 4vw, 3.25rem)/1.06 var(--serif);
}
.club-author {
  margin: 11px 0 4px;
  color: var(--wine);
  font: 700 1.55rem/1.2 var(--serif);
}
.club-edition {
  margin: 0 0 28px;
  color: var(--muted);
  font: 600 0.88rem/1.5 var(--sans);
}
.club-month-copy > p:not(.club-kicker):not(.club-author):not(.club-edition):not(.affiliate-note) {
  max-width: 620px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.65;
}
.club-date {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 28px;
  padding: 15px 0;
  border-block: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--sans);
}
.club-date span {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.club-buy {
  margin-top: 25px;
}
.affiliate-note {
  max-width: 570px;
  margin: 13px 0 0;
  color: var(--muted);
  font: 400 0.78rem/1.5 var(--sans);
}
.club-manifesto {
  margin-top: 72px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.club-manifesto h2 {
  margin: 8px 0;
  color: var(--wine);
  font-size: 2.25rem;
}
.club-manifesto p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.button {
  display: inline-block;
  margin-top: 17px;
  background: var(--wine);
  color: #fff;
  padding: 12px 18px;
  font: 700 0.76rem var(--sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.button.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: #fff;
}
.podcast {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 35px 40px;
  border-top: 3px solid var(--gold);
}
.podcast h2 {
  font-size: 2rem;
  margin: 5px 0;
}
.podcast p {
  margin: 0;
  color: #d9ddea;
}
.play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.4rem;
}
.newsletter {
  text-align: center;
  padding: 55px 20px;
  background: var(--paper);
}
.newsletter h2 {
  font-size: 2.35rem;
  color: var(--wine);
  margin: 7px 0;
}
.newsletter p {
  color: var(--muted);
}
.newsletter form {
  display: flex;
  max-width: 590px;
  margin: 25px auto 0;
}
.newsletter input {
  flex: 1;
  border: 1px solid var(--line);
  background: white;
  padding: 14px 16px;
  font-size: 1rem;
}
.newsletter button {
  border: 0;
  background: var(--navy);
  color: white;
  padding: 0 22px;
  font: 700 0.75rem var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.form-success {
  max-width: 590px;
  margin: 18px auto 0;
  color: #17633a !important;
  font-weight: 700;
}
.poll-main {
  padding: 58px 0 80px;
}
.poll-header {
  max-width: 900px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}
.poll-header h1 {
  max-width: 850px;
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 1.05;
}
.poll-header p { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.poll-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr); gap: 46px; align-items: start; }
.poll-card { background: #fff; border-top: 4px solid var(--wine); padding: 34px; box-shadow: 0 10px 30px rgba(6,22,50,.08); }
.poll-week-label { color: var(--wine); font: 800 .68rem var(--sans); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.poll-deadline { margin: 0 0 19px; color: var(--muted); font: 700 .83rem var(--sans); }
.poll-question { color: var(--navy); font-size: 1.75rem; line-height: 1.25; margin: 0 0 24px; }
.poll-options { display: grid; gap: 12px; margin-bottom: 28px; }
.poll-option { display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); padding: 13px 15px; cursor: pointer; }
.poll-option input { accent-color: var(--wine); width: 18px; height: 18px; }
.poll-form label:not(.poll-option) { display: block; color: var(--navy); font: 700 .78rem var(--sans); letter-spacing: .05em; text-transform: uppercase; margin: 18px 0 7px; }
.poll-form input[type="text"], .poll-form input[type="email"], .poll-form textarea { width: 100%; border: 1px solid var(--line); background: #fff; padding: 13px 14px; font: 1rem var(--sans); }
.poll-form textarea { min-height: 150px; resize: vertical; }
.poll-comment-heading { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-direction: column; gap: 3px; color: var(--navy); }
.poll-comment-heading span { color: var(--muted); font-size: .88rem; }
.poll-form button { margin-top: 20px; border: 0; background: var(--navy); color: #fff; padding: 14px 22px; font: 700 .78rem var(--sans); text-transform: uppercase; letter-spacing: .07em; cursor: pointer; }
.poll-note { color: var(--muted); font-size: .9rem; margin-top: 17px; }
.poll-feedback { min-height: 22px; color: var(--wine); font-weight: 700; }
.poll-sidebar { border-top: 3px solid var(--gold); background: var(--paper); padding: 28px; }
.poll-sidebar h2 { color: var(--navy); margin: 4px 0 12px; }
.poll-sidebar p { color: var(--muted); }
.poll-sidebar strong { color: var(--wine); }
.poll-sidebar hr { border: 0; border-top: 1px solid var(--line); margin: 27px 0; }
.poll-result-row { margin: 16px 0; }
.poll-result-line { display: flex; justify-content: space-between; gap: 15px; color: var(--navy); font: 700 .86rem var(--sans); }
.poll-result-bar { height: 9px; background: #e4e0d8; margin-top: 7px; overflow: hidden; }
.poll-result-bar span { display: block; height: 100%; background: var(--wine); transition: width .4s ease; }
.poll-totals { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 17px; display: grid; gap: 5px; color: var(--muted); font: .87rem var(--sans); }
@media (max-width: 760px) { .poll-layout { grid-template-columns: 1fr; } .poll-card { padding: 24px 19px; } .poll-main { padding-top: 36px; } }
footer {
  background: #061632;
  color: #cdd3df;
  padding: 46px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand {
  font: 700 2rem var(--serif);
  color: white;
}
.footer-grid h4 {
  color: #dfb35e;
  font: 700 0.73rem var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.footer-grid a {
  display: block;
  margin: 7px 0;
  font-size: 0.9rem;
  color: #f2b6a4;
  font-weight: 700;
}
.footer-grid a:hover {
  color: #fff;
}
.fineprint {
  border-top: 1px solid #2a3d61;
  margin-top: 35px;
  padding-top: 20px;
  font: 400 0.72rem var(--sans);
  color: #98a4b8;
}
.article-page .article-header {
  max-width: 930px;
  margin: 55px auto 32px;
  text-align: center;
}
.article-header h1 {
  font-size: clamp(1.65rem, 2.55vw, 2.25rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 13px 0 18px;
}
.article-header .article-kicker-blue {
  color: var(--navy);
  font-weight: 800;
}
.article-header .article-kicker-bold {
  color: var(--wine);
  font-weight: 800;
}
.news-page .article-header h1 {
  font-size: clamp(1.6rem, 2.35vw, 2.1rem);
  line-height: 1.15;
}
.article-meta {
  font: 600 0.78rem var(--sans);
  color: var(--navy);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--line);
  padding: 10px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 250px;
  justify-content: center;
  gap: 55px;
}
.article-body {
  font-size: 1.17rem;
  line-height: 1.75;
}
.article-body h2 {
  margin: 2.25rem 0 0.8rem;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1.18;
}
.article-lead-figure {
  margin: 0 0 34px;
}
.article-lead-figure img {
  width: 100%;
  height: auto;
}
.article-lead-figure figcaption {
  margin-top: 7px;
  color: var(--muted);
  font: 400 0.72rem/1.35 var(--sans);
}
.notice-card-figure {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cinema-poster {
  max-width: 474px;
  margin-left: auto;
  margin-right: auto;
}
.news-article-body p:first-of-type:first-letter {
  float: left;
  padding: 5px 7px 0 0;
  color: var(--wine);
  font-size: 2.75rem;
  line-height: 0.9;
}
.source-note {
  margin-top: 38px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 600 0.82rem/1.5 var(--sans);
}
.source-note a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body p:first-child:first-letter {
  float: left;
  font-size: 2.75rem;
  line-height: 0.9;
  padding: 5px 7px 0 0;
  color: var(--wine);
}
.cronica-body p:first-child:first-letter {
  float: none;
  font-size: 1.65em;
  line-height: 1;
  padding: 0;
}
blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: #eee8dc;
  color: #3f3a34;
  font-size: 1.25rem;
}
.article-aside {
  font-size: 0.9rem;
}
.author-box {
  border-top: 3px solid var(--navy);
  padding-top: 18px;
  position: sticky;
  top: 80px;
}
.author-box h3 {
  color: var(--navy);
  margin: 0;
}
.author-box .eyebrow {
  color: var(--wine);
}
.news-page .publication-box .eyebrow {
  color: var(--wine);
}
.news-page .publication-box h3 {
  color: var(--navy);
}
.tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tag {
  background: var(--terracotta-dark);
  color: white;
  padding: 5px 9px;
  font: 700 0.68rem var(--sans);
  border-radius: 3px;
}
@media (max-width: 820px) {
  .wrap {
    width: min(100% - 26px, 680px);
  }
  .news-archive-item {
    gap: 7px;
    grid-template-columns: 1fr;
  }
  .toplinks a:nth-child(-n + 2) {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .nav .wrap {
    justify-content: space-between;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 49px;
    background: var(--cream);
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 18px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-dropdown {
    width: 100%;
  }
  .contest-nav {
    justify-content: center;
    width: 100%;
  }
  .contest-nav-dropdown {
    width: auto;
  }
  .contest-menu {
    width: min(100%, 310px);
  }
  .nav-dropdown summary {
    justify-content: center;
  }
  .column-menu {
    position: static;
    width: min(100%, 310px);
    margin: 14px auto 0;
    transform: none;
    box-shadow: none;
  }
  .column-menu a {
    justify-content: flex-start;
  }
  .columns-directory {
    grid-template-columns: 1fr;
  }
  .sponsorship-space {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .sponsorship-mark {
    width: 90px;
    height: 90px;
    font-size: 3.2rem;
  }
  .hero,
  .news-grid,
  .column-feature,
  .cronica-feature,
  .club,
  .club-month,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .news-featured a {
    grid-template-columns: 190px 1fr;
  }
  .news-featured-stacked a {
    grid-template-columns: 1fr;
  }
  .hero-main img {
    height: 300px;
  }
  .hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .side-story img {
    height: 130px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .column-card-track {
    grid-auto-columns: minmax(260px, 58vw);
  }
  .column-copy,
  .cronica-copy,
  .club-copy {
    padding: 30px;
  }
  .club-page {
    padding-top: 42px;
  }
  .club-month-cover {
    min-height: 460px;
  }
  .cronica-monogram {
    min-height: 210px;
    font-size: 9rem;
  }
  .cronica-monogram::after {
    bottom: 28px;
  }
  .article-aside {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contest-support {
    grid-template-columns: 120px 1fr;
  }
  .contest-grid {
    grid-template-columns: 1fr;
  }
  .cmo-contest-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .newsletter form {
    flex-direction: column;
  }
  .newsletter button {
    padding: 14px;
  }
  .tagline {
    font-size: 0.8rem;
  }
}
@media (max-width: 520px) {
  .masthead-logo {
    width: 90vw;
  }
  .hero-side,
  .cards {
    grid-template-columns: 1fr;
  }
  .column-card-track {
    grid-auto-columns: 84vw;
    gap: 16px;
  }
  .column-showcase-card img {
    height: 190px;
  }
  .column-history {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .contest-support {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .contest-support img {
    width: 135px;
  }
  .contest-category {
    min-height: 0;
  }
  .contest-category p {
    min-height: 0;
  }
  .contest-news-card > a {
    grid-template-columns: 1fr;
  }
  .contest-news-card img {
    max-height: 460px;
  }
  .cmo-contest-links {
    width: 100%;
    min-width: 0;
  }
  .news-featured a {
    grid-template-columns: 1fr;
  }
  .news-featured img {
    height: 340px;
  }
  .news-featured-stacked img {
    height: 250px;
  }
  .hero-main h1 {
    font-size: 2.25rem;
  }
  .side-story {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 13px;
  }
  .side-story img {
    height: 95px;
  }
  .side-story h2 {
    font-size: 1.15rem;
  }
  .column-copy h2,
  .cronica-copy h2,
  .club h2 {
    font-size: 2rem;
  }
  .club-month {
    gap: 35px;
  }
  .club-month-cover {
    min-height: auto;
    padding: 28px;
  }
  .club-month-copy h1 {
    font-size: 2.6rem;
  }
  .cronicando-head {
    align-items: start;
  }
  .cronica-frequency {
    display: none;
  }
  .podcast {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .article-body {
    font-size: 1.05rem;
  }
  .article-header {
    margin-top: 35px;
  }
}
