@font-face {
  font-family: DM Serif;
  src: url("schriften/DMSerifDisplay-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: DM Serif;
  src: url("schriften/DMSerifDisplay-Italic.ttf") format("truetype");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("schriften/DMSans.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #24221f;
  --paper: #fffefa;
  --red: #ad263b;
  --pink: #f5d6dc;
  --line: #d4d0c8;
  --muted: #65615c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.6 "DM Sans",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
a:hover .card-link,
.text-link:hover {
  color: var(--red);
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "DM Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
}
em {
  font-weight: 400;
}
p {
  line-height: 1.65;
}
.site-header,
main,
footer {
  max-width: 1440px;
  margin: auto;
  padding-left: 64px;
  padding-right: 64px;
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 190px;
}
.logo {
  font-family: "DM Serif", serif;
  font-size: 128px;
  line-height: 1;
  letter-spacing: -8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.edition {
  font-size: 11px;
  letter-spacing: 1.6px;
  line-height: 1.7;
}
.newsletter-link {
  font-size: 12px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  max-width: 210px;
}
nav {
  display: flex;
  gap: 38px;
  align-items: center;
  min-height: 59px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
}
nav a:hover {
  color: var(--red);
}
.nav-note {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 1.3px;
}
.issue-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 1.3px;
  padding: 22px 0;
}
.issue-line span:nth-child(2) {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  min-height: 560px;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  height: 610px;
  object-position: 50% 35%;
}
.image-label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--paper);
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.hero-copy {
  background: var(--pink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
}
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 1.8px;
  line-height: 1.5;
}
.hero h1 {
  font-size: clamp(58px, 6.2vw, 88px);
  margin: 26px 0;
}
.hero h1 em {
  color: var(--red);
}
.hero-copy p {
  max-width: 350px;
  font-size: 16px;
}
.text-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.hero .text-link {
  margin-top: 30px;
  align-self: flex-start;
}
.read-time {
  font-size: 10px;
  letter-spacing: 1.4px;
  margin-top: 20px;
  color: var(--muted);
}
section {
  scroll-margin-top: 25px;
}
.latest,
.recommendations {
  padding: 64px 0;
}
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 19px;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: 37px;
}
.section-heading > span {
  font-size: 10px;
  letter-spacing: 1.5px;
}
.section-heading > a {
  font-size: 13px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.82fr;
  gap: 28px;
}
.photo-wrap {
  overflow: hidden;
  height: 330px;
}
.card img {
  height: 100%;
  transition: transform 0.5s;
}
.card a:hover img {
  transform: scale(1.025);
}
.card .eyebrow {
  margin: 20px 0 10px;
  color: var(--red);
}
.card h3 {
  font-size: 31px;
}
.card p {
  font-size: 14px;
  margin: 14px 0;
}
.card-link {
  font-size: 12px;
  font-weight: 600;
}
.small-feature {
  padding: 28px;
  background: #eeeedd;
  display: flex;
  flex-direction: column;
}
.small-feature .eyebrow {
  margin: 0;
  color: var(--ink);
}
.large-number {
  font-family: "DM Serif", serif;
  color: var(--red);
  font-size: 70px;
  line-height: 1;
  margin: 27px 0 20px;
}
.small-feature h3 {
  font-size: 36px;
}
.small-feature h3 em {
  color: var(--red);
}
.small-feature .text-link {
  font-size: 12px;
  margin-top: 12px;
}
.swatches {
  display: flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 28px;
}
.swatches i {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #af293c;
}
.swatches i:nth-child(2) {
  background: #e797b0;
}
.swatches i:nth-child(3) {
  background: #2545b4;
}
.swatches i:nth-child(4) {
  background: #627c3a;
}
.conscious {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eceee8;
  margin: 10px 0 64px;
}
.conscious img {
  height: 475px;
}
.conscious > div {
  padding: 48px;
  align-self: center;
}
.conscious h2 {
  font-size: 44px;
  margin: 21px 0;
}
.conscious p {
  font-size: 15px;
  max-width: 410px;
}
.conscious .text-link {
  margin-top: 28px;
}
.advertorial {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 35px 20px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.advertorial .eyebrow {
  color: var(--muted);
  font-size: 10px;
}
.advertorial h2 {
  font-size: 32px;
  margin: 15px 0;
}
.advertorial p {
  max-width: 630px;
  font-size: 14px;
}
.advertorial .text-link {
  margin-top: 18px;
  font-size: 12px;
}
.ad-mark {
  font:
    italic 65px/1 "DM Serif",
    serif;
  color: var(--red);
  align-self: center;
  transform: rotate(-8deg);
  padding-right: 40px;
}
.voices {
  text-align: center;
  padding: 70px 0;
}
.voices > h2 {
  font-size: 43px;
  margin: 18px 0 12px;
}
.voices-note {
  font-size: 12px;
  color: var(--muted);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0;
  gap: 25px;
}
.quote-grid blockquote {
  margin: 0;
  padding: 10px 22px;
  border-right: 1px solid var(--line);
}
.quote-grid blockquote:last-child {
  border: 0;
}
.quote-grid p {
  font:
    24px/1.4 "DM Serif",
    serif;
}
.quote-grid cite {
  display: block;
  font-size: 11px;
  font-style: normal;
  margin-top: 20px;
  color: var(--muted);
}
.about {
  font-size: 12px;
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}
.newsletter {
  background: var(--pink);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.newsletter h2 {
  font-size: 38px;
  margin: 16px 0;
}
.newsletter p {
  font-size: 14px;
}
.newsletter-form {
  align-self: center;
}
.newsletter-form label {
  font-size: 12px;
  font-weight: 600;
}
.input-row {
  display: flex;
  margin: 9px 0 12px;
  border-bottom: 1px solid var(--ink);
}
input {
  border: 0;
  background: transparent;
  padding: 14px 0;
  min-width: 0;
  width: 100%;
  border-radius: 0;
}
input:focus {
  outline-offset: 1px;
}
button {
  cursor: pointer;
  border: 0;
}
form button {
  background: var(--ink);
  color: white;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 13px;
}
form button:hover {
  background: var(--red);
}
.newsletter .fine {
  font-size: 11px;
  line-height: 1.5;
}
.newsletter #form-status {
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  min-height: 22px;
}
.footer-top {
  border-top: 1px solid var(--ink);
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
}
.footer-logo {
  font:
    54px/1 "DM Serif",
    serif;
  letter-spacing: -3px;
}
.footer-top p {
  margin-right: auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 20px 0 30px;
}
.skip {
  position: fixed;
  left: 15px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 15px;
}
.menu-toggle {
  background: transparent;
  padding: 10px;
  font-size: 14px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 25px 0;
  font-size: 12px;
  color: var(--muted);
}
.article-header {
  text-align: center;
  max-width: 900px;
  margin: 35px auto 36px;
}
.article-header .eyebrow {
  color: var(--red);
}
.article h1 {
  font-size: clamp(42px, 5.1vw, 70px);
  margin: 24px 0;
}
.article h1 em {
  color: var(--red);
}
.standfirst {
  font-size: 19px;
  max-width: 680px;
  margin: auto;
  line-height: 1.65;
}
.byline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 27px;
}
.article-hero {
  max-width: 1060px;
  margin: 0 auto 48px;
}
.article-hero img {
  height: 620px;
  object-position: 50% 30%;
}
figcaption {
  font-size: 11px;
  color: var(--muted);
  padding-top: 10px;
}
.article-body {
  max-width: 670px;
  margin: auto;
  font-size: 18px;
  line-height: 1.85;
}
.article-body p {
  line-height: 1.85;
  margin-bottom: 23px;
}
.dropcap:first-letter {
  float: left;
  font:
    83px/0.9 "DM Serif",
    serif;
  margin: 8px 12px 0 0;
  color: var(--red);
}
.article-body h2 {
  font-size: 34px;
  margin: 44px 0 22px;
  scroll-margin-top: 30px;
}
.article-tip {
  background: #eeeedd;
  padding: 28px 32px;
  margin: 32px 0;
}
.article-tip p {
  font-size: 16px;
  margin: 10px 0 0;
}
.article-inline {
  max-width: 820px;
  margin: 40px auto;
}
.article-inline img {
  height: 560px;
  object-position: center 35%;
}
.beauty-inline img {
  height: 470px;
}
.pullquote {
  font:
    36px/1.25 "DM Serif",
    serif;
  color: var(--red);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 36px -30px;
  padding: 30px 0;
  text-align: center;
}
.article-end {
  border-top: 1px solid var(--ink);
  margin: 40px 0 0;
  padding-top: 24px;
}
.article-end span {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 650;
}
.article-end p {
  font-size: 14px;
  margin: 10px 0 0;
}
.recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.recommend-grid > a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
}
.recommend-grid img {
  height: 195px;
}
.recommend-grid h3 {
  font-size: 28px;
  margin: 12px 0;
}
.recommend-grid div > span:last-child {
  font-size: 12px;
}
@media (min-width: 1500px) {
  .hero-image img {
    height: 660px;
  }
}
@media (max-width: 1100px) {
  .site-header,
  main,
  footer {
    padding-left: 35px;
    padding-right: 35px;
  }
  .logo {
    font-size: 112px;
  }
  .newsletter-link {
    max-width: 165px;
    font-size: 11px;
  }
  .hero-copy {
    padding: 35px;
  }
  .hero-image img {
    height: 560px;
  }
  .nav-note {
    display: none;
  }
  .photo-wrap {
    height: 280px;
  }
  .small-feature {
    padding: 23px;
  }
  .small-feature h3 {
    font-size: 30px;
  }
  .conscious > div {
    padding: 32px;
  }
  .conscious h2 {
    font-size: 36px;
  }
  .newsletter {
    padding: 35px;
    gap: 30px;
  }
  .newsletter h2 {
    font-size: 32px;
  }
  .recommend-grid > a {
    grid-template-columns: 110px 1fr;
  }
  .recommend-grid h3 {
    font-size: 25px;
  }
}
@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .masthead {
    min-height: 115px;
  }
  .logo {
    position: static;
    transform: none;
    font-size: 78px;
    letter-spacing: -5px;
  }
  .edition,
  .newsletter-link {
    display: none;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  nav {
    flex-wrap: wrap;
    gap: 0;
    min-height: 50px;
    justify-content: space-between;
    font-size: 12px;
  }
  nav a {
    padding: 13px 5px;
  }
  .js nav {
    display: none;
  }
  .js nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
  }
  .js nav a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }
  .js nav a:last-of-type {
    border: 0;
  }
  .site-header {
    border-bottom: 1px solid var(--ink);
  }
  .issue-line {
    font-size: 9px;
    letter-spacing: 0.7px;
    padding: 18px 0;
  }
  .issue-line span:nth-child(2) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image img {
    height: 440px;
  }
  .hero-copy {
    padding: 34px 28px;
  }
  .hero h1 {
    font-size: 64px;
    margin: 20px 0;
  }
  .hero h1 br {
    display: none;
  }
  .hero h1 em {
    white-space: nowrap;
  }
  .hero-copy p {
    max-width: none;
  }
  .image-label {
    left: 18px;
    bottom: 18px;
  }
  .latest,
  .recommendations {
    padding: 43px 0;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .section-heading > span {
    display: none;
  }
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
  .photo-wrap {
    height: 260px;
  }
  .card h3 {
    font-size: 26px;
  }
  .card p {
    font-size: 13px;
  }
  .small-feature {
    grid-column: 1/-1;
    padding: 30px;
    position: relative;
  }
  .large-number {
    font-size: 55px;
    margin: 15px 0;
  }
  .small-feature h3 {
    font-size: 37px;
  }
  .small-feature h3 br {
    display: none;
  }
  .small-feature .text-link {
    align-self: flex-start;
  }
  .small-feature p {
    max-width: 330px;
  }
  .swatches {
    position: absolute;
    right: 25px;
    top: 50px;
  }
  .swatches i {
    width: 23px;
    height: 23px;
  }
  .conscious {
    grid-template-columns: 1fr;
    margin: 0 0 43px;
  }
  .conscious img {
    height: 390px;
  }
  .conscious > div {
    padding: 32px 28px;
  }
  .conscious h2 {
    font-size: 39px;
  }
  .advertorial {
    padding: 28px 0;
    gap: 20px;
  }
  .advertorial h2 {
    font-size: 29px;
  }
  .ad-mark {
    display: none;
  }
  .voices {
    padding: 48px 0;
  }
  .voices > h2 {
    font-size: 35px;
  }
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .quote-grid blockquote {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 5px 15px 24px;
  }
  .quote-grid p {
    font-size: 25px;
  }
  .newsletter {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
    margin-bottom: 40px;
  }
  .newsletter h2 {
    font-size: 35px;
  }
  .newsletter p br {
    display: none;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px 28px;
  }
  .footer-top p {
    margin: 0;
    width: calc(100% - 180px);
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 10px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .article-header {
    margin: 20px auto 28px;
  }
  .article h1 {
    font-size: 43px;
  }
  .article h1 br {
    display: none;
  }
  .article-header .eyebrow {
    font-size: 10px;
  }
  .standfirst {
    font-size: 17px;
  }
  .byline {
    font-size: 11px;
  }
  .article-hero img {
    height: 470px;
  }
  .article-body {
    font-size: 17px;
  }
  .article-body h2 {
    font-size: 30px;
  }
  .article-inline img {
    height: 440px;
  }
  .beauty-inline img {
    height: 350px;
  }
  .pullquote {
    font-size: 29px;
    margin: 30px 0;
  }
  .article-tip {
    padding: 24px;
  }
  .recommend-grid {
    grid-template-columns: 1fr;
  }
  .recommend-grid > a {
    grid-template-columns: 110px 1fr;
  }
  .recommend-grid img {
    height: 150px;
  }
  .section-heading > a {
    font-size: 11px;
    white-space: nowrap;
  }
  .recommendations .section-heading h2 {
    font-size: 29px;
  }
}
@media (max-width: 420px) {
  .hero-image img {
    height: 370px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .photo-wrap {
    height: 215px;
  }
  .card h3 {
    font-size: 23px;
  }
  .hero .text-link {
    font-size: 12px;
  }
  .input-row {
    flex-direction: column;
    border: 0;
  }
  .input-row input {
    border-bottom: 1px solid var(--ink);
    margin-bottom: 12px;
  }
  .newsletter h2 {
    font-size: 31px;
  }
  .article h1 {
    font-size: 38px;
  }
  .swatches {
    top: 55px;
    gap: 6px;
  }
  .article-hero img {
    height: 390px;
  }
  .recommendations .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media (min-width: 761px) {
  .menu-toggle {
    display: none;
  }
}

.article-body .source-link {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}
.article-body .source-link:hover {
  color: var(--ink);
}

/* Editorial refinement: typography, folios and photographic pacing. */
:root {
  --paper: #fcfbf7;
  --red: #95283b;
  --pink: #f2e0e1;
}
.logo {
  letter-spacing: -0.065em;
}
nav a {
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}
.hero-copy {
  border-top: 3px solid var(--red);
}
.hero-copy .eyebrow {
  color: var(--red);
}
.hero h1 {
  letter-spacing: -0.035em;
}
.section-heading {
  border-bottom-color: var(--line);
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 2px;
  bottom: -1px;
  left: 0;
  background: var(--red);
}
.card h3,
.conscious h2,
.newsletter h2 {
  letter-spacing: -0.02em;
}
.small-feature {
  background: transparent;
  border: 1px solid var(--line);
}
.small-feature .large-number {
  font-size: 52px;
  color: var(--muted);
}
.swatches i {
  border-radius: 0;
  height: 7px;
  width: 38px;
}
.article-header {
  max-width: 1060px;
  text-align: left;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  column-gap: 70px;
  margin: 45px auto 46px;
  align-items: end;
}
.article-header > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  font-size: 11px;
}
.article h1 {
  margin: 0;
  grid-column: 1;
  grid-row: 2 / 4;
}
.article-title-main {
  display: block;
  font-size: clamp(66px, 7.2vw, 102px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}
.article-title-sub {
  display: block;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 360px;
  margin-top: 24px;
}
.article-header .standfirst {
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}
.article-header .byline {
  justify-content: flex-start;
  margin-top: 24px;
  gap: 7px 18px;
  align-self: end;
}
.article-header .byline span:first-child {
  width: 100%;
  color: var(--ink);
  font-weight: 600;
}
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 175px;
  gap: 28px;
  align-items: end;
  margin-bottom: 76px;
}
.article-hero img {
  height: 700px;
  object-position: center 25%;
}
.article figcaption {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  line-height: 1.65;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.figure-index {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--red);
}
.photo-credit {
  font-size: 10px;
  color: var(--muted);
}
.article-body {
  max-width: 660px;
}
.article-body h2 {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 33px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.chapter-number {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.05em;
  padding-top: 7px;
}
.article-body .editorial-pullquote {
  font-family: "DM Serif", serif;
  font-size: 35px;
  line-height: 1.35;
  color: var(--red);
  letter-spacing: -0.02em;
  margin: 46px -40px 54px;
  padding: 0 0 0 27px;
  border-left: 2px solid var(--red);
}
.article-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 175px;
  gap: 28px;
  align-items: end;
  max-width: 940px;
  margin: 60px auto;
}
.article-inline img {
  height: 620px;
  object-position: center 55%;
}
.detail-figure {
  max-width: 940px;
}
.detail-figure img {
  height: auto;
  aspect-ratio: 1.5;
}
.combination-note {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.combination-note strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.article-body .source-link {
  font-size: 13px;
  text-decoration-thickness: 1px;
}
.article-end {
  border-top: 3px double var(--line);
  padding-top: 27px;
}
.newsletter {
  background: #422b31;
  color: #fffaf5;
  border-top: 4px solid #bc7682;
}
.newsletter .input-row {
  border-color: #c9abb1;
}
.newsletter input {
  color: #fffaf5;
}
.newsletter input::placeholder {
  color: #d4c3c6;
  opacity: 1;
}
.newsletter button {
  background: #fffaf5;
  color: #422b31;
}
.newsletter button:hover {
  background: #ecd4d9;
}
.newsletter :focus-visible {
  outline-color: #fffaf5;
}
@media (max-width: 1000px) {
  .article-header {
    gap: 24px 36px;
  }
  .article-title-main {
    font-size: 76px;
  }
  .article-title-sub {
    font-size: 24px;
  }
  .article-hero,
  .article-inline {
    grid-template-columns: minmax(0, 1fr) 145px;
    gap: 22px;
  }
  .article-hero img {
    height: 590px;
  }
  .article-body .editorial-pullquote {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 760px) {
  .article-header {
    display: block;
    margin-top: 27px;
    margin-bottom: 32px;
  }
  .article-header > .eyebrow {
    margin-bottom: 23px;
  }
  .article-title-main {
    font-size: clamp(64px, 13vw, 86px);
  }
  .article-title-main br {
    display: block !important;
  }
  .article-title-sub {
    font-size: 24px;
    margin-top: 19px;
    max-width: 350px;
  }
  .article-header .standfirst {
    margin-top: 26px;
    padding-top: 23px;
    font-size: 16px;
  }
  .article-header .byline {
    margin-top: 18px;
  }
  .article-hero,
  .article-inline {
    display: block;
    margin: 34px 0 45px;
  }
  .article-hero img {
    height: 490px;
    object-position: center 20%;
  }
  .article figcaption {
    margin-top: 13px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 5px 12px;
    font-size: 11px;
  }
  .photo-credit {
    grid-column: 2;
  }
  .article-inline img {
    height: 450px;
  }
  .detail-figure img {
    height: auto;
    aspect-ratio: 1.2;
  }
  .article-body h2 {
    font-size: 29px;
    gap: 10px;
    grid-template-columns: 30px 1fr;
    margin-top: 43px;
  }
  .article-body .editorial-pullquote {
    font-size: 29px;
    padding-left: 19px;
    margin-top: 34px;
    margin-bottom: 38px;
  }
  .combination-note {
    padding-left: 17px;
  }
  nav a::after {
    display: none;
  }
}
@media (max-width: 380px) {
  .article-title-main {
    font-size: 62px;
  }
  .article-title-sub {
    font-size: 22px;
  }
  .article-hero img {
    height: 410px;
  }
  .article-body h2 {
    font-size: 26px;
  }
}
