/* The mobile edition: generous magazine compositions, not a scaled desktop grid.
 * Load after main.css, instead of mobile-content.css. No header/hero overrides. */
@media screen and (max-width: 940px) {
  :root { --editorial-gutter: var(--gutter); }

  .section.wrap, .statement.wrap, .page-hero .wrap, .entry-header .wrap,
  .entry-layout.wrap, .entry-content.wrap, .site-footer > .wrap {
    width: min(var(--width), calc(100% - var(--editorial-gutter) * 2));
  }
  .section { padding-block: 40px; }
  .section-heading { display: block; margin-bottom: 28px; padding-bottom: 0; border-bottom: 0; }
  .section-heading h2, .section-heading h2.display {
    margin: 0;
    font-family: var(--font-editorial);
    font-size: clamp(2.375rem, 5.6vw, 2.75rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.05em;
    text-transform: none;
    text-wrap: balance;
  }
  .section-heading .eyebrow { gap: 12px; margin-bottom: 16px; font-size: 11px; line-height: 1.4; letter-spacing: .1em; }
  .section-heading .eyebrow::after { flex: 1; width: auto; min-width: 24px; }
  .section-heading > .serif { margin-top: 16px; margin-bottom: 0; font: 400 1.2rem/1.3 var(--font-editorial); letter-spacing: -.025em; }
  .section-heading > .text-link { margin-top: 14px; padding: 0; font-size: .9rem; }
  .text-link, .button, .share-button, .chip { min-height: 44px; }
  .text-link, .chip, .button { max-width: 100%; overflow-wrap: anywhere; }
  .text-link > *, .button > * { min-width: 0; }

  /* A numbered headline above an image/text spread. */
  .beliefs-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .topic-card, .topic-card:nth-child(2n) {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    grid-template-rows: auto 1fr auto;
    gap: 16px 18px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .topic-card:last-child { margin: 0; padding: 0; border: 0; }
  .topic-card .topic-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    margin: 0;
    color: var(--pink);
    font: 700 clamp(3rem, 8.5vw, 3.5rem)/.95 var(--font-editorial);
    letter-spacing: -.075em;
  }
  .topic-body { display: contents; }
  .topic-title {
    grid-column: 1 / -1;
    grid-row: 1;
    min-width: 0;
    min-height: 56px;
    margin: 0;
    padding: 2px 0 0 72px;
    font: 400 clamp(1.75rem, 5vw, 2rem)/1.04 var(--font-display);
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-wrap: balance;
  }
  .topic-title a { text-decoration: none; }
  .topic-title a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .12em; }
  .topic-image {
    grid-column: 1;
    grid-row: 2 / 4;
    align-self: stretch;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 185px;
    margin: 0;
    aspect-ratio: auto;
  }
  .topic-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .topic-image::before, .topic-image::after { width: 22px; height: 22px; border-width: 6px; }
  .topic-image::before { top: -5px; left: -5px; }
  .topic-image::after { right: -5px; bottom: -5px; }
  .topic-body p { grid-column: 2; grid-row: 2; min-width: 0; margin: 0; font: 400 1rem/1.45 var(--font-body); }
  .topic-body .text-link { grid-column: 2; grid-row: 3; align-self: end; justify-self: start; min-height: 44px; margin: 0; padding: 0; gap: 6px; font-size: .875rem; line-height: 1.35; }
  .topic-card .topic-count { grid-column: 2; margin: 0; color: var(--quiet); font-size: .75rem; }

  .statement { padding: 20px 16px; }
  .statement p, .statement .serif { margin: 0; font: 700 clamp(1.625rem, 4.7vw, 2rem)/1.14 var(--font-editorial); letter-spacing: -.04em; }

  /* Articles keep their own images and a full-width editorial headline. */
  .post-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .post-list > .post-card,
  .post-list > .post-card:last-child:nth-child(3) {
    display: flex;
    flex-direction: column;
    grid-column: auto;
    gap: 0;
    min-width: 0;
    margin: 0;
    padding-bottom: 24px;
    border-bottom: var(--line);
  }
  .post-card .post-card-image,
  .post-list > .post-card:last-child:nth-child(3) .post-card-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0 0 18px;
    padding: 0;
    aspect-ratio: auto;
    background: transparent;
    overflow: visible;
  }
  .post-card-image img { display: block; width: 100%; height: auto; max-height: none; object-fit: contain; }
  .post-image-fallback { min-height: 180px; aspect-ratio: 16 / 9; padding: 20px; }
  .post-image-fallback span { font-size: clamp(2.5rem, 8vw, 4rem); }
  .post-card-body { display: flex; flex-direction: column; align-items: stretch; min-width: 0; }
  .post-card .post-title, .post-card--featured .post-title {
    order: 1;
    width: 100%;
    min-width: 0;
    margin: 0 0 10px;
    font: 700 clamp(1.625rem, 4.6vw, 1.875rem)/1.15 var(--font-editorial);
    letter-spacing: -.035em;
    text-transform: none;
  }
  .post-card .post-meta { order: 2; display: flex; flex-wrap: wrap; gap: 4px 12px; margin: 0; color: var(--quiet); font: 500 .78rem/1.45 var(--font-body); }
  .post-card .post-meta > * { min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
  .post-card .post-meta a { font-weight: 600; text-decoration-thickness: 1px; }
  .post-card .post-excerpt { order: 3; margin: 14px 0 0; font: 400 1rem/1.5 var(--font-body); }
  .post-card .chips { order: 4; flex-wrap: wrap; gap: 0 14px; min-width: 0; max-width: 100%; margin: 8px 0 0; padding: 0; }
  .post-card .chip, .entry-header .chip {
    min-width: 0;
    max-width: 100%;
    min-height: 44px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-color: var(--pink-ink);
    text-decoration-thickness: 1px;
    text-underline-offset: .22em;
    overflow-wrap: anywhere;
  }
  .post-card a.chip:hover, .entry-header a.chip:hover { color: var(--ink); background: transparent; text-decoration-thickness: 2px; }
  .post-card .text-link { order: 5; align-self: start; min-height: 44px; margin: 8px 0 0; padding: 0; gap: 12px; font-size: .95rem; line-height: 1.4; }
  .latest-actions { margin-top: 32px; }
  .latest-actions .button { width: min(100%, 24rem); }

  /* Navigation behaves like a set of subjects, with one active underline. */
  .archive-tools { margin-bottom: 28px; }
  .archive-tools .search-form { max-width: none; margin-bottom: 16px; }
  .search-form { flex-direction: row; flex-wrap: nowrap; gap: 0; }
  .search-form > .search-field { flex: 1 1 0%; width: 0; min-width: 0; min-height: 48px; padding-inline: 12px; font-size: 16px; }
  .search-form > label:not(.screen-reader-text) { flex: 1 1 0%; width: auto; min-width: 0; }
  .search-form .button, .search-form .search-submit { flex: 0 0 auto; width: auto; min-height: 48px; padding-inline: 13px; font-size: .875rem; white-space: nowrap; overflow-wrap: normal; }
  .filter-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    min-width: 0;
    max-width: 100%;
    padding-block: 0 6px;
    border-top: 0;
    border-bottom: var(--line);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 2px;
    scrollbar-width: thin;
    scrollbar-color: var(--ink) #dce5eb;
  }
  .filter-nav a, .filter-nav span { flex: 0 0 auto; min-height: 44px; max-width: none; padding: 10px 2px 8px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--ink); font-size: .875rem; font-weight: 650; line-height: 1.5; text-decoration: none; white-space: nowrap; overflow-wrap: normal; }
  .filter-nav a[aria-current], .filter-nav .is-active, .filter-nav .current { border-bottom-color: var(--pink); color: var(--ink); background: transparent; }
  .filter-nav a:hover { background: transparent; border-bottom-color: var(--ink); }
  .filter-nav a:focus-visible { outline-offset: -4px; }
  .filter-nav::-webkit-scrollbar { height: 5px; }
  .filter-nav::-webkit-scrollbar-track { background: #dce5eb; }
  .filter-nav::-webkit-scrollbar-thumb { background: var(--ink); }

  /* Editorial openings for thematic pages; the portrait hero is separate. */
  .page-hero { padding-block: 28px; }
  .page-hero .display, .page-hero--image .display { margin-bottom: 16px; font: 400 clamp(2.5rem, 7vw, 3.5rem)/1.05 var(--font-display); text-transform: uppercase; letter-spacing: -.025em; }
  .page-hero .eyebrow { margin-bottom: 16px; font-size: 11px; }
  .page-hero .serif { margin-block: 14px 0; font: 700 clamp(1.375rem, 3.8vw, 1.65rem)/1.23 var(--font-editorial); letter-spacing: -.035em; }
  .page-hero .breadcrumbs { gap: 6px; margin-bottom: 16px; font-size: .75rem; }
  .page-hero .archive-description { font: 400 1rem/1.5 var(--font-body); }
  .page-hero--image { padding-block: 0; }
  .page-hero--image .page-hero-inner { min-height: 0; padding-block: 28px 0; }
  .page-hero--image .page-hero-inner > :not(.page-hero-art) { max-width: 100%; }
  .page-hero-art { position: relative; display: block; inset: auto; width: calc(100% + var(--editorial-gutter) * 2); height: 180px; margin: 22px calc(var(--editorial-gutter) * -1) 0; object-fit: cover; object-position: 62% center; }
  .page-hero > .page-hero-art { width: 100%; height: 180px; margin: 22px 0 0; }
  .page-hero-art::after { display: none; }
  .page-hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }

  /* The text of each article remains in a calm reading column. */
  .entry-header { padding-block: 28px; }
  .entry-title { margin-bottom: 18px; font: 700 clamp(2rem, 6vw, 2.5rem)/1.16 var(--font-editorial); letter-spacing: -.035em; text-transform: none; text-wrap: balance; }
  .entry-meta { gap: 6px 12px; margin-bottom: 8px; font: 500 .8rem/1.5 var(--font-body); }
  .entry-meta > * { min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
  .entry-header .chips { gap: 0 14px; margin-top: 6px; }
  .entry-topics-more { margin-top: 4px; font-size: .875rem; }
  .entry-topics-more summary { min-height: 44px; padding-block: 11px; cursor: pointer; text-decoration: underline; text-underline-offset: .22em; }
  .entry-topics-more[open] summary { margin-bottom: 4px; }
  .entry-skip { min-height: 44px; margin-top: 6px; font-size: .875rem; }
  .entry-cover { max-height: none; overflow: visible; }
  .entry-cover.wrap { width: min(var(--width), calc(100% - var(--editorial-gutter) * 2)); margin-inline: auto; }
  .entry-cover img { width: 100%; height: auto; max-height: none; object-fit: contain; }
  .entry-cover figcaption { padding-inline: 0; text-align: left; }
  .entry-layout { display: flex; flex-direction: column; gap: 28px; max-width: 760px; padding-block: 36px; }
  .entry-content { min-width: 0; font-size: 1.1rem; line-height: 1.7; }
  .entry-layout > .entry-content { width: 100%; }
  .entry-content.wrap { width: min(var(--width), calc(100% - var(--editorial-gutter) * 2)); }
  .entry-content h2 { font: 700 clamp(1.75rem, 4vw, 2rem)/1.2 var(--font-editorial); }
  .entry-content h3 { font-family: var(--font-editorial); font-size: 1.45rem; }
  .entry-aside { order: 2; width: 100%; padding: 24px 0 0; border-right: 0; border-top: var(--line); }
  .entry-content .alignleft, .entry-content .alignright { float: none; max-width: 100%; margin: 24px auto; }
  .related-posts { margin-top: 28px; padding-top: 32px; }

  .feature-split { display: flex; flex-direction: column; }
  .feature-split > img, .feature-split > figure { width: 100%; height: 220px; min-height: 0; object-fit: cover; object-position: center 60%; }
  .feature-split > figure img { object-fit: cover; object-position: center 60%; }
  .feature-split > div:not(.wrap), .feature-copy { width: min(100%, 760px); padding: 30px var(--editorial-gutter) 34px; }
  .feature-split .display { margin-bottom: 18px; font: 400 clamp(2.375rem, 7vw, 3rem)/1.04 var(--font-display); text-transform: uppercase; }
  .feature-split .eyebrow { font-size: 11px; }
  .feature-split p { font-size: 1rem; }
  .about-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .page-hero.about-masthead, .page-hero.contact-masthead { padding-block: 28px; }
  .about-masthead .display, .contact-masthead .display { margin-bottom: 0; font-size: clamp(2.75rem, 8vw, 3.5rem); }
  .about-masthead .serif { margin-top: 14px; font-size: 1.15rem; line-height: 1.35; }
  .about-page-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-block: 32px 40px; }
  .about-page-portrait { width: min(100%, 216px); padding: 10px 6px 0; }
  .about-page-portrait::after { width: 36px; height: 36px; border-width: 6px; }
  .about-page-copy .entry-content { font-size: 1.0625rem; line-height: 1.65; }
  .about-page-contact { width: min(100%, 24rem); }
  .contact-page-grid { padding-block: 32px 40px; gap: 28px; }
  .contact-page-intro > p { font-size: 1rem; line-height: 1.55; }
  .contact-page-intro .contact-page-lead { margin-bottom: 18px; font-size: 1.35rem; line-height: 1.35; }
  .contact-page-panel { padding-top: 22px; }
  .contact-page-panel > .serif { margin-bottom: 22px; font-size: 1.75rem; }
  .contact-page-panel .contact-form .button { width: 100%; }
  .about-grid > div > .display { font: 700 clamp(2.25rem, 5.6vw, 2.75rem)/1.07 var(--font-editorial); text-transform: none; letter-spacing: -.04em; }
  .about-grid .serif { font: 700 1.5rem/1.28 var(--font-editorial); }
  .contact-grid .display { margin-bottom: 16px; font: 700 clamp(2.375rem, 5.6vw, 2.75rem)/1.07 var(--font-editorial); letter-spacing: -.04em; text-transform: none; }
  .contact-grid .serif { font: 400 1.35rem/1.35 var(--font-editorial); }
  .contact-form input:not([type=checkbox]):not([type=submit]), .contact-form textarea, .contact-form select,
  .comment-form input:not([type=checkbox]):not([type=submit]), .comment-form textarea { font-size: 16px; }

  /* A generous Paris scene and an unmistakable closing signature. */
  .footer-masthead { grid-template-columns: minmax(0, 1fr); }
  .footer-scene { min-height: 0; height: 240px; }
  .footer-scene img { object-position: 66% center; }
  .footer-signature { padding: 28px var(--editorial-gutter); }
  .site-footer .footer-signature .brand-name { display: inline-flex; align-items: center; min-height: 44px; margin-bottom: 14px; color: var(--sky); font-size: 1.8rem; }
  .site-footer .footer-motto { display: block; margin-bottom: 20px; font: 400 clamp(3.15rem, 8vw, 4rem)/1.02 var(--font-display); letter-spacing: -.025em; text-transform: uppercase; }
  .site-footer .footer-motto br { display: initial; }
  .site-footer .footer-role { font-size: .875rem; line-height: 1.5; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; padding-top: 20px; border-top: 1px solid #63768d; }
  .footer-grid nav .menu, .footer-grid nav > ul, .footer-grid .social-links { display: flex; flex-direction: column; align-items: start; gap: 0; }
  .footer-grid nav .menu li, .footer-grid nav > ul li, .footer-grid .social-links li { width: 100%; margin: 0; }
  .footer-grid nav a, .footer-grid .social-links a { width: 100%; min-height: 44px; font-size: .875rem; }
  .site-footer .footer-grid .eyebrow { gap: 8px; min-height: 16px; margin-bottom: 6px; font-size: 10px; letter-spacing: .06em; }
  .site-footer .footer-grid .eyebrow::after { flex: 1; width: auto; min-width: 10px; }
  .footer-bottom { align-items: center; margin-top: 20px; padding-top: 12px; gap: 6px 12px; }
  .footer-bottom a { min-height: 44px; }
  .site-footer { padding-top: 0; padding-bottom: 20px; }
}

@media screen and (max-width: 360px) {
  .topic-card, .topic-card:nth-child(2n) { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto auto auto; gap: 16px; }
  .topic-title { padding-left: 64px; font-size: 1.75rem; }
  .topic-card .topic-number { width: 54px; font-size: 3rem; }
  .topic-image { grid-column: 1; grid-row: 2; height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .topic-body p { grid-column: 1; grid-row: 3; font-size: 1rem; }
  .topic-body .text-link { grid-column: 1; grid-row: 4; }
  .topic-card .topic-count { grid-column: 1; }
}

@media screen and (min-width: 681px) and (max-width: 940px) {
  .page-hero-art, .page-hero > .page-hero-art { height: 220px; }
  .feature-split > img, .feature-split > figure { height: 260px; }
  .footer-scene { height: clamp(240px, 30vw, 280px); }
  .footer-signature { width: min(100%, 760px); margin-inline: auto; }
}

@media screen and (min-width: 361px) and (max-width: 940px) {
  .topic-card:nth-child(2) .topic-image img,
  .topic-card:nth-child(4) .topic-image img { object-position: 42% center; }
}

@media screen and (min-width: 820px) and (max-width: 940px) {
  .beliefs-grid { grid-template-columns: repeat(2, minmax(360px, 1fr)); gap: 40px 32px; }
  .post-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 28px; }
  .post-list > .post-card:last-child:nth-child(3) { grid-column: auto; }
}
