@font-face {
    font-family: "ivypresto-headline";
    src: url("../fonts/ivypresto-headline.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400 700;
}

@font-face {
    font-family: "DM Sans";
    src: url("../fonts/dm-sans-normal-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 200 900;
}

@font-face {
    font-family: "DM Sans";
    src: url("../fonts/dm-sans-italic-latin.woff2") format("woff2");
    font-display: swap;
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../fonts/noto-sans-normal-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400 900;
}

:root {
    --rb-color-primary: #111111;
    --rb-color-primary-rgb: 17, 17, 17;
    --rb-color-text: #232323;
    --rb-color-text-rgb: 35, 35, 35;
    --rb-color-muted: #6d6d6d;
    --rb-color-muted-light: #9a9a9a;
    --rb-color-border-strong: #a8a8a8;
    --rb-color-border: #e1e1e1;
    --rb-color-border-soft: #eeeeee;
    --rb-color-background: #ffffff;
    --rb-color-background-rgb: 255, 255, 255;
    --rb-color-surface: #f6f6f6;
    --rb-color-secondary: #bc944c;
    --rb-color-secondary-rgb: 188, 148, 76;
    --rb-color-secondary-hover: #8f672e;
    --rb-color-secondary-soft: #fff8eb;
    --rb-color-accent-soft: #ffd4d6;
    --rb-color-accent-soft-rgb: 255, 212, 214;
    --rb-color-accent-soft-end: #dfdfdf;
    --rb-ink: var(--rb-color-primary);
    --rb-text: var(--rb-color-text);
    --rb-muted: var(--rb-color-muted);
    --rb-rule: var(--rb-color-border);
    --rb-soft-rule: var(--rb-color-border-soft);
    --rb-paper: var(--rb-color-background);
    --rb-soft: var(--rb-color-surface);
    --rb-gold: var(--rb-color-secondary);
    --rb-gold-dark: var(--rb-color-secondary-hover);
    --rb-blush: var(--rb-color-accent-soft);
    --rb-blush-end: var(--rb-color-accent-soft-end);
    --rb-max: 1400px;
    --rb-header-max: 1400px;
    --rb-topic-max: 1400px;
    --rb-serif: "ivypresto-headline", "Times New Roman", serif;
    --rb-sans: "DM Sans", Arial, Helvetica, sans-serif;
    --rb-nav: "Noto Sans", Arial, Helvetica, sans-serif;
    --rb-copy-size: 16px;
    --rb-reader-size: 17px;
    --rb-meta-size: 12px;
    --rb-label-size: 11px;
    --rb-section-title-size: 21px;
    --rb-leading-body: 1.7;
    --rb-leading-reader: 1.76;
    --rb-label-spacing: 0.08em;
    --rb-button-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--rb-text);
    background: var(--rb-paper);
    font-family: var(--rb-sans);
    font-size: var(--rb-copy-size);
    line-height: var(--rb-leading-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.has-primary-color,
.has-ink-color {
    color: var(--rb-color-primary) !important;
}

.has-primary-background-color,
.has-ink-background-color {
    background-color: var(--rb-color-primary) !important;
}

.has-body-charcoal-color {
    color: var(--rb-color-text) !important;
}

.has-body-charcoal-background-color {
    background-color: var(--rb-color-text) !important;
}

.has-secondary-color,
.has-gold-color {
    color: var(--rb-color-secondary) !important;
}

.has-secondary-background-color,
.has-gold-background-color {
    background-color: var(--rb-color-secondary) !important;
}

.has-secondary-hover-color,
.has-gold-dark-color {
    color: var(--rb-color-secondary-hover) !important;
}

.has-secondary-hover-background-color,
.has-gold-dark-background-color {
    background-color: var(--rb-color-secondary-hover) !important;
}

.has-background-color,
.has-paper-color {
    color: var(--rb-color-background) !important;
}

.has-background-background-color,
.has-paper-background-color {
    background-color: var(--rb-color-background) !important;
}

.has-surface-color,
.has-soft-color {
    color: var(--rb-color-surface) !important;
}

.has-surface-background-color,
.has-soft-background-color {
    background-color: var(--rb-color-surface) !important;
}

.has-accent-soft-color,
.has-blush-color {
    color: var(--rb-color-accent-soft) !important;
}

.has-accent-soft-background-color,
.has-blush-background-color {
    background-color: var(--rb-color-accent-soft) !important;
}

body.admin-bar .sticky-nav-stack {
    top: 32px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--rb-gold-dark);
}

button,
input {
    font: inherit;
}

button,
a,
input {
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

:where(.newsletter-button, .header-account-link, .search-submit, .newsletter-band a, .home-cta > a, .not-found-button, .article-content .rb-page-button, .article-comments__login-button, .comment-form .submit, .rb-contact-form__submit) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rb-button-radius);
    font-family: var(--rb-nav);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
}

.reveal {
    animation: rb-reveal 320ms ease both;
}

@keyframes rb-reveal {
    from {
        opacity: 0.01;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
    }
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--rb-color-background);
    background: var(--rb-ink);
}

.site-header {
    background: var(--rb-paper);
}

.sticky-nav-stack {
    position: sticky;
    z-index: 50;
    top: 0;
    background: var(--rb-color-background);
}

.brand-row,
.nav-row,
.topic-row__inner,
.site-main,
.footer-main,
.footer-bottom__inner {
    width: min(var(--rb-max), calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.site-brand img {
    width: 122px;
    height: 122px;
    object-fit: contain;
}

.nav-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(var(--rb-header-max), calc(100% - 200px));
    min-height: 52px;
}

.site-nav {
    display: flex;
    justify-content: center;
    min-width: 0;
    overflow: visible;
}

.site-nav__list,
.topic-nav,
.footer-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: max-content;
}

.site-nav__list li {
    position: relative;
}

.site-nav__list a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 48px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 14px;
    font-weight: 600;
}

.site-nav__list .menu-item-has-children > a::after,
.site-nav__list .has-submenu > a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.site-nav__list .sub-menu {
    position: absolute;
    z-index: 90;
    top: 100%;
    left: -18px;
    min-width: 220px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: var(--rb-color-background);
    border: 1px solid var(--rb-rule);
    box-shadow: 0 18px 36px rgba(var(--rb-color-primary-rgb), 0.11);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav__list li:hover > .sub-menu,
.site-nav__list li:focus-within > .sub-menu,
.site-nav__list li.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-nav__list .sub-menu a {
    display: flex;
    min-height: 38px;
    padding: 0 16px 0 11px;
    border-left: 5px solid transparent;
    color: var(--rb-color-primary);
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
}

.site-nav__list .sub-menu a::after {
    content: none;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible {
    border-left-color: var(--rb-color-primary);
    color: var(--rb-color-primary);
    background: var(--rb-color-surface);
}

.header-tools {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(-50%);
}

.site-header svg,
.sticky-nav-stack svg,
.site-footer svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.newsletter-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 12px;
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border: 1px solid var(--rb-color-primary);
    border-radius: 4px;
    font-family: var(--rb-nav);
    font-size: 14px;
    font-weight: 800;
}

.newsletter-button:hover,
.newsletter-button:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold);
    border-color: var(--rb-gold);
}

.newsletter-button svg {
    width: 15px;
    height: 15px;
}

.header-account-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.header-account-actions--desktop {
    gap: 6px;
}

.header-account-actions--desktop .header-account-link {
    padding-right: 8px;
    padding-left: 8px;
}

.header-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    border: 1px solid var(--rb-gold);
    border-radius: 4px;
}

.header-account-link:hover,
.header-account-link:focus-visible {
    color: var(--rb-color-primary);
    background: var(--rb-color-secondary-soft);
    border-color: var(--rb-gold-dark);
}

.header-account-link--primary {
    color: var(--rb-color-background);
    background: var(--rb-gold);
    border-color: var(--rb-gold);
}

.header-account-link--primary:hover,
.header-account-link--primary:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
}

.save-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 32px;
}

.save-link svg {
    width: 20px;
    height: 20px;
}

.search-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.search-icon svg {
    width: 23px;
    height: 23px;
}

.header-search {
    display: none;
    border-top: 1px solid var(--rb-rule);
}

.header-search.is-open {
    display: block;
}

.header-search .search-form {
    width: min(760px, calc(100% - 40px));
    margin: 14px auto;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.search-field {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--rb-rule);
    border-radius: 0;
    outline: none;
}

.search-submit {
    min-height: 42px;
    padding: 0 16px;
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border: 1px solid var(--rb-color-primary);
    cursor: pointer;
}

.topic-row {
    background: var(--rb-color-surface);
    border-top: 1px solid var(--rb-rule);
    border-bottom: 1px solid var(--rb-rule);
}

.topic-row__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: min(var(--rb-topic-max), calc(100% - 200px));
    min-height: 32px;
    gap: 18px;
    overflow: hidden;
}

.quick-links__items {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    font-family: var(--rb-nav);
    font-size: 12px;
    white-space: nowrap;
}

.quick-links__items::-webkit-scrollbar {
    display: none;
}

.quick-links__items a {
    padding-right: 10px;
    border-right: 1px solid var(--rb-color-border);
}

.quick-links__items a:last-child {
    border-right: 0;
}

.quick-links__lead {
    display: inline-flex;
    color: var(--rb-gold-dark);
    font-weight: 700;
}

.quick-links__lead svg {
    width: 15px;
    height: 15px;
}

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: inline-grid;
    place-items: center;
    color: var(--rb-color-primary);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.social-links svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: none;
    stroke-width: 0;
}

.social-links--header {
    gap: 5px;
    flex-wrap: nowrap;
    margin-left: 10px;
    padding-left: 12px;
    border-left: 1px solid var(--rb-color-border);
    white-space: nowrap;
}

.social-links--header a {
    width: 22px;
    height: 27px;
    color: var(--rb-color-text);
    cursor: pointer;
}

.social-links--header svg {
    width: 13px;
    height: 13px;
}

.mobile-mainbar,
.mobile-panel,
.mobile-account-popover,
.mobile-topic-row {
    display: none;
}

.site-main {
    padding-top: 20px;
}

.home-main {
    padding-top: 6px;
}

.story-tax {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--rb-color-text);
    font-size: 12px;
    line-height: 1.2;
}

.story-tax span {
    color: var(--rb-color-muted-light);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--rb-color-text);
    font-family: var(--rb-nav);
    font-size: var(--rb-meta-size);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.story-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--rb-muted);
    font-size: 12px;
}

.home-top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(560px, 1fr) minmax(390px, 0.9fr);
    gap: 28px 40px;
    align-items: start;
    padding: 0 0 34px;
}

.home-top.home-top--events {
    grid-template-columns: minmax(300px, 0.76fr) minmax(700px, 1.28fr) minmax(300px, 0.76fr);
    row-gap: 16px;
    margin-top: 34px;
}

.home-top--events .home-lead__copy {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    max-width: 700px;
    text-align: center;
}

.home-top--events .home-lead__copy > p:not(.home-lead__badge) {
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
    line-height: 1.75;
}

.home-top--events .home-lead__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto 4px;
    padding: 4px 9px 3px;
    border: 1px solid #c8a33f;
    background: #f4d06f;
    color: #2f2410;
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.home-top--events .home-lead h1 {
    margin-top: 0;
}

.home-top--events .home-lead__image {
    grid-column: 2;
    grid-row: 1;
}

.home-top--events .headline-strip {
    grid-column: 1 / 4;
    grid-row: 3;
}

@media (min-width: 981px) {
    .home-top--events .home-lead {
        display: grid;
        grid-column: 2;
        grid-row: 1;
        align-content: start;
        gap: 16px;
    }

    .home-top--events .home-lead__image,
    .home-top--events .home-lead__copy {
        grid-column: 1;
    }

    .home-top--events .home-lead__image {
        grid-row: 1;
    }

    .home-top--events .home-lead__copy {
        grid-row: 2;
        align-self: start;
    }

    .home-top--events .home-today-list,
    .home-top--events .home-events-list {
        grid-row: 1;
    }
}

.home-lead {
    display: contents;
}

.home-lead__copy {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

.home-lead h1,
.feature-lead h3,
.beauty-feature h3 {
    margin: 14px 0 16px;
    color: var(--rb-ink);
    font-family: var(--rb-serif);
    font-weight: 700;
    line-height: 1.12;
}

.home-lead h1 {
    max-width: none;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.2;
}

.home-lead__copy p {
    max-width: 360px;
    margin: 0 0 18px;
    color: var(--rb-color-muted);
    font-size: 14px;
    line-height: 1.7;
}

.home-lead__image,
.story-card__image,
.feature-lead > a,
.beauty-feature__image {
    display: block;
    overflow: hidden;
    background: var(--rb-color-border-soft);
}

.home-lead__image {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1.43;
}

.home-lead__image img,
.story-card__image img,
.feature-lead img,
.beauty-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-side-list {
    grid-column: 3;
    grid-row: 1 / 3;
    display: grid;
    gap: 0;
}

.home-events-list {
    grid-column: 3;
    grid-row: 1 / 3;
    min-width: 0;
}

.home-today-list {
    grid-column: 1;
    grid-row: 1 / 3;
    min-width: 0;
}

.home-events-list__header {
    display: flex;
    gap: 16px;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rb-ink);
}

.home-events-list__header h2 {
    margin: 0;
    color: var(--rb-ink);
    font-family: var(--rb-nav);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.home-events-list__header a {
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-events-list__items {
    display: grid;
    gap: 0;
}

.home-today-list__items {
    display: grid;
    gap: 0;
}

.home-event-card {
    padding: 17px 0;
    border-bottom: 1px solid var(--rb-soft-rule);
}

.home-event-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-event-card__date,
.home-event-card__type,
.home-event-card__location,
.home-events-list__empty p {
    margin: 0;
}

.home-event-card__date,
.home-event-card__type {
    color: var(--rb-color-secondary-hover);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-event-card__type {
    color: var(--rb-color-muted);
    flex-shrink: 0;
    text-align: right;
}

.home-event-card h3 {
    margin: 7px 0 8px;
    color: var(--rb-ink);
    font-family: var(--rb-serif);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.home-event-card h3 a {
    color: inherit;
}

.home-event-card__location {
    color: var(--rb-color-muted);
    font-size: 13px;
    line-height: 1.45;
}

.home-events-list__empty {
    padding: 18px 0;
    border-bottom: 1px solid var(--rb-soft-rule);
}

.home-events-list__empty p {
    color: var(--rb-color-muted);
    font-size: 14px;
    line-height: 1.55;
}

.home-today-card {
    padding: 17px 0;
    border-bottom: 1px solid var(--rb-soft-rule);
}

.home-today-card__time {
    display: block;
    color: var(--rb-color-secondary-hover);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-today-card h3 {
    margin: 7px 0 0;
    color: var(--rb-ink);
    font-family: var(--rb-serif);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.home-today-card h3 a {
    color: inherit;
}

.home-side-list .story-card--side {
    padding-bottom: 18px;
}

.home-side-list .story-card--side + .story-card--side {
    padding-top: 18px;
}

.home-side-list .story-card--side h3 {
    margin: 5px 0 7px;
    font-size: 14px;
    line-height: 1.4;
}

.story-card {
    min-width: 0;
}

.story-card__body {
    min-width: 0;
}

.story-card__type {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    color: var(--rb-color-secondary-hover);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.story-card h2,
.story-card h3,
.story-card h4 {
    margin: 6px 0 8px;
    color: var(--rb-ink);
    font-family: var(--rb-serif);
    font-weight: 700;
    line-height: 1.24;
}

.story-card h3 {
    font-size: 17px;
}

.story-card p {
    margin: 0 0 10px;
    color: var(--rb-color-muted);
    font-size: 14px;
}

.story-card--side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rb-soft-rule);
}

.story-card--side.story-card--no-media {
    display: block;
}

.story-card--side .story-card__image {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1.22;
}

.story-card--side .story-card__body {
    grid-column: 1;
    grid-row: 1;
}

.story-card--side h3 {
    font-size: 16px;
    line-height: 1.28;
}

.headline-strip {
    grid-column: 1 / 3;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
}

.story-card--headline h3 {
    font-size: 16px;
    line-height: 1.4;
}

.story-card__trend-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    color: var(--rb-color-primary);
    vertical-align: -2px;
}

.story-card__trend-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.section-block,
.feature-section {
    padding: 24px 0 46px;
    border-top: 1px solid var(--rb-rule);
}

.beauty-section,
.more-news {
    scroll-margin-top: 120px;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2,
.article-sidebar h2,
.section-heading--line h2 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: var(--rb-section-title-size);
    font-weight: 600;
    line-height: 1.1;
}

.section-heading h2::after {
    content: ">";
    display: inline-block;
    margin-left: 8px;
}

.four-grid,
.more-grid,
.archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.story-card--grid .story-card__image {
    aspect-ratio: 1.6;
    margin-bottom: 12px;
}

.story-card--grid h3 {
    font-size: 17px;
}

.archive-main {
    padding-top: 34px;
}

.archive-header {
    max-width: 760px;
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rb-rule);
}

.archive-header h1 {
    margin: 0;
    color: var(--rb-ink);
    font-family: var(--rb-serif);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.04;
}

.archive-description {
    margin-top: 14px;
    color: var(--rb-color-muted);
    font-size: var(--rb-reader-size);
    line-height: var(--rb-leading-body);
}

.archive-description p {
    margin: 0;
}

/* ============================================================
   Retail archive (category-retail.php)
   ============================================================ */
.retail-archive-main {
    padding-top: 0;
}

/* --- Hero --- */
.retail-archive-hero {
    padding: 36px 0 30px;
    border-bottom: 1px solid var(--rb-rule);
}

.retail-archive-hero__content {
    max-width: 900px;
}

.retail-archive-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker__sep {
    color: var(--rb-color-border);
}

.retail-archive-count {
    color: var(--rb-gold-dark);
}

.retail-archive-hero h1 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 0.96;
}

.retail-archive-hero .archive-description {
    max-width: 680px;
    margin-top: 16px;
    color: var(--rb-color-muted);
    font-size: 16px;
    line-height: 1.55;
}

/* --- Tag filter --- */
.retail-tag-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 18px;
    padding: 22px 0 26px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--rb-soft-rule);
}

.retail-tag-filter__label {
    flex: 0 0 auto;
    padding-top: 10px;
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.retail-tag-filter__list {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 8px;
}

.retail-tag-filter__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 12px;
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    border: 1px solid var(--rb-color-border);
    border-radius: var(--rb-button-radius);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.retail-tag-filter__count {
    color: var(--rb-color-muted);
    font-size: 11px;
    font-weight: 700;
}

.retail-tag-filter__link:hover,
.retail-tag-filter__link:focus-visible,
.retail-tag-filter__link.is-active {
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border-color: var(--rb-color-primary);
}

.retail-tag-filter__link:hover .retail-tag-filter__count,
.retail-tag-filter__link:focus-visible .retail-tag-filter__count,
.retail-tag-filter__link.is-active .retail-tag-filter__count {
    color: rgba(255, 255, 255, 0.65);
}

.retail-tag-filter__clear {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0 14px;
    min-height: 34px;
    color: var(--rb-gold-dark);
    background: transparent;
    border: 1px solid var(--rb-gold-dark);
    border-radius: var(--rb-button-radius);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.retail-tag-filter__clear:hover,
.retail-tag-filter__clear:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
}

.retail-tag-filter__clear-icon {
    font-size: 15px;
    line-height: 1;
}

/* --- Follow-this-topic card --- */
.retail-follow-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 36px;
    padding: 22px 26px;
    background: var(--rb-color-secondary-soft);
    border: 1px solid rgba(var(--rb-color-secondary-rgb), 0.35);
    border-radius: 6px;
}

.retail-follow-card__kicker {
    margin: 0 0 4px;
    color: var(--rb-gold-dark);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.retail-follow-card__name {
    margin: 0 0 6px;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
}

.retail-follow-card__desc {
    margin: 0;
    max-width: 580px;
    color: var(--rb-color-muted);
    font-size: 14px;
    line-height: 1.5;
}

.retail-follow-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.retail-follow-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    border: 1px solid var(--rb-color-primary);
    border-radius: var(--rb-button-radius);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.retail-follow-card__btn:hover,
.retail-follow-card__btn:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
}

.retail-follow-card__btn--primary {
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
}

.retail-follow-card__btn--primary:hover,
.retail-follow-card__btn--primary:focus-visible {
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
}

/* --- Results container --- */
.retail-archive-results {
    padding-bottom: 80px;
}

.section-heading--retail-archive {
    margin-bottom: 26px;
}

.section-heading--retail-archive h2 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.2;
}

.section-heading--retail-archive h2::after {
    content: none;
}

/* --- Lead card (position 1, page 1) --- */
.rb-retail-lead {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--rb-rule);
}

.rb-retail-card--lead {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 42px;
    align-items: center;
}

.rb-retail-card--lead.rb-retail-card--no-media {
    grid-template-columns: minmax(0, 1fr);
}

.rb-retail-card--lead .rb-retail-card__image {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.rb-retail-card--lead .rb-retail-card__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.6;
    object-fit: cover;
    transition: transform 480ms ease;
}

.rb-retail-card--lead:hover .rb-retail-card__image img {
    transform: scale(1.025);
}

.rb-retail-card--lead .rb-retail-card__title {
    margin: 14px 0 18px;
    font-family: var(--rb-serif);
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.005em;
}

.rb-retail-card--lead .rb-retail-card__title a {
    color: var(--rb-color-primary);
    text-decoration: none;
}

.rb-retail-card--lead .rb-retail-card__title a:hover,
.rb-retail-card--lead .rb-retail-card__title a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.rb-retail-card--lead .rb-retail-card__dek {
    margin: 0 0 20px;
    max-width: 560px;
    color: var(--rb-color-text);
    font-size: 17px;
    line-height: 1.55;
}

/* --- Secondary grid (positions 2-4, page 1) --- */
.rb-retail-secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--rb-rule);
}

.rb-retail-card--secondary {
    display: flex;
    flex-direction: column;
}

.rb-retail-card--secondary .rb-retail-card__image {
    display: block;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 4px;
}

.rb-retail-card--secondary .rb-retail-card__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.6;
    object-fit: cover;
    transition: transform 480ms ease;
}

.rb-retail-card--secondary:hover .rb-retail-card__image img {
    transform: scale(1.025);
}

.rb-retail-card--secondary .rb-retail-card__title {
    margin: 8px 0 10px;
    font-family: var(--rb-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.18;
}

.rb-retail-card--secondary .rb-retail-card__title a {
    color: var(--rb-color-primary);
    text-decoration: none;
}

.rb-retail-card--secondary .rb-retail-card__title a:hover,
.rb-retail-card--secondary .rb-retail-card__title a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.rb-retail-card--secondary .rb-retail-card__dek {
    margin: 0 0 12px;
    color: var(--rb-color-muted);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Tail list (positions 5+, plus all of pages 2+) --- */
.rb-retail-tail-heading {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rb-soft-rule);
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rb-retail-tail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.rb-retail-card--tail {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--rb-soft-rule);
}

.rb-retail-card--tail.rb-retail-card--no-media {
    grid-template-columns: minmax(0, 1fr);
}

.rb-retail-card--tail .rb-retail-card__image {
    display: block;
    overflow: hidden;
    border-radius: 3px;
}

.rb-retail-card--tail .rb-retail-card__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: cover;
}

.rb-retail-card--tail .rb-retail-card__title {
    margin: 2px 0 8px;
    font-family: var(--rb-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.22;
}

.rb-retail-card--tail .rb-retail-card__title a {
    color: var(--rb-color-primary);
    text-decoration: none;
}

.rb-retail-card--tail .rb-retail-card__title a:hover,
.rb-retail-card--tail .rb-retail-card__title a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

/* --- Card shared elements --- */
.rb-retail-card__tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 4px 9px;
    color: var(--rb-gold-dark);
    background: var(--rb-color-secondary-soft);
    border-radius: 3px;
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease, background-color 160ms ease;
}

.rb-retail-card__tag:hover,
.rb-retail-card__tag:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
}

.rb-retail-card__tag--static {
    cursor: default;
}

.rb-retail-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 700;
}

.rb-retail-card__author {
    color: var(--rb-color-primary);
    text-decoration: none;
}

.rb-retail-card__author:hover,
.rb-retail-card__author:focus-visible {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rb-retail-card__meta-sep {
    color: var(--rb-color-border);
}

.rb-retail-card__date,
.rb-retail-card__read-time {
    color: var(--rb-color-muted);
}

/* --- Pagination --- */
.retail-archive-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
}

.retail-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    padding: 0 11px;
    color: var(--rb-color-primary);
    border: 1px solid var(--rb-color-border);
    border-radius: var(--rb-button-radius);
    text-decoration: none;
}

.retail-archive-pagination .page-numbers.current,
.retail-archive-pagination a.page-numbers:hover,
.retail-archive-pagination a.page-numbers:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border-color: var(--rb-color-primary);
}

/* --- Empty state --- */
.retail-archive-empty {
    display: grid;
    gap: 16px;
    padding: 56px 0;
    text-align: center;
}

.retail-archive-empty p {
    margin: 0;
    color: var(--rb-color-muted);
    font-size: var(--rb-reader-size);
}

.retail-archive-empty__link {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border-radius: var(--rb-button-radius);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.retail-archive-empty__link:hover,
.retail-archive-empty__link:focus-visible {
    background: var(--rb-gold-dark);
}

.author-main {
    width: min(100% - 40px, 1220px);
    margin: 0 auto;
    padding: 30px 0 76px;
}

.author-profile-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
    gap: 54px;
    align-items: center;
    padding: 28px 0 46px;
    border-bottom: 1px solid var(--rb-rule);
}

.author-profile-hero__content {
    max-width: 780px;
}

.author-profile-hero h1 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: 82px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.98;
}

.author-profile-hero__role {
    display: inline-flex;
    margin: 18px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--rb-gold);
    color: var(--rb-gold-dark);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.author-profile-hero__dek {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--rb-color-text);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.46;
}

.author-profile-beats,
.author-profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    list-style: none;
}

.author-profile-beats {
    margin: 26px 0 0;
}

.author-profile-beats li,
.author-profile-links a {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 10px;
    border: 1px solid var(--rb-rule);
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.author-profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.author-profile-actions__primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--rb-color-primary);
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.author-profile-actions__primary:hover,
.author-profile-actions__primary:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
}

.author-profile-links {
    margin: 0;
}

.author-profile-links a:hover,
.author-profile-links a:focus-visible {
    border-color: var(--rb-gold-dark);
    color: var(--rb-gold-dark);
}

.author-profile-card {
    min-width: 0;
}

.author-profile-card__image {
    overflow: hidden;
    background: var(--rb-color-primary);
    border: 1px solid var(--rb-rule);
}

.author-profile-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0;
    filter: none;
}

.author-profile-card__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    border-right: 1px solid var(--rb-rule);
    border-bottom: 1px solid var(--rb-rule);
    border-left: 1px solid var(--rb-rule);
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.author-profile-card__meta div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    padding: 10px 12px;
    border-top: 1px solid var(--rb-rule);
}

.author-profile-card__meta dt,
.author-profile-card__meta dd {
    margin: 0;
}

.author-profile-card__meta dt {
    color: var(--rb-muted);
}

.author-profile-card__meta dd {
    max-width: 58%;
    overflow-wrap: anywhere;
    color: var(--rb-color-primary);
    font-size: 13px;
    letter-spacing: 0;
    text-align: right;
}

.author-profile-bio {
    display: grid;
    grid-template-columns: 210px minmax(0, 760px);
    gap: 46px;
    padding: 42px 0;
    border-bottom: 1px solid var(--rb-rule);
}

.author-profile-bio h2 {
    margin: 8px 0 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 22px;
    line-height: 1.16;
}

.author-profile-bio__content {
    color: var(--rb-color-text);
    font-size: var(--rb-reader-size);
    line-height: var(--rb-leading-reader);
}

.author-profile-bio__content p {
    margin: 0 0 18px;
}

.author-profile-bio__content p:last-child {
    margin-bottom: 0;
}

.author-profile-stories {
    padding-top: 42px;
}

.author-profile-stories .section-heading {
    align-items: end;
    gap: 22px;
}

.author-profile-stories__dek {
    max-width: 420px;
    margin: 0;
    color: var(--rb-muted);
    font-size: 14px;
    line-height: 1.55;
}

.author-profile-stories__empty {
    margin: 0;
    color: var(--rb-muted);
}

.newsletter-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    width: 100vw;
    margin: 4px calc(50% - 50vw) 48px;
    padding: 74px max(24px, calc((100vw - var(--rb-max)) / 2)) 78px;
    color: var(--rb-color-background);
    background:
        radial-gradient(circle at 50% 0%, rgba(var(--rb-color-secondary-rgb), 0.24), transparent 34%),
        linear-gradient(105deg, rgba(var(--rb-color-primary-rgb), 0.98) 0%, rgba(var(--rb-color-primary-rgb), 0.95) 58%, rgba(var(--rb-color-secondary-rgb), 0.2) 100%),
        repeating-linear-gradient(90deg, rgba(var(--rb-color-background-rgb), 0.07) 0 1px, transparent 1px 76px),
        var(--rb-color-primary);
    text-align: center;
}

.newsletter-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent 0 62%, rgba(var(--rb-color-accent-soft-rgb), 0.12) 62% 72%, transparent 72% 100%);
}

.newsletter-band::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 28px;
    left: 50%;
    height: 1px;
    width: min(640px, calc(100vw - 48px));
    background: linear-gradient(90deg, var(--rb-gold), rgba(var(--rb-color-background-rgb), 0.22), transparent);
    transform: translateX(-50%);
}

.newsletter-band__content {
    justify-self: center;
    display: grid;
    justify-items: center;
    max-width: 760px;
}

.newsletter-band__eyebrow {
    margin: 0 0 14px;
    color: var(--rb-gold);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.newsletter-band h2 {
    max-width: 760px;
    margin: 0;
    color: var(--rb-color-background);
    font-family: var(--rb-serif);
    font-size: clamp(42px, 5.2vw, 72px);
    font-weight: 700;
    line-height: 1;
}

.newsletter-band__dek {
    max-width: 610px;
    margin: 22px auto 0;
    color: rgba(var(--rb-color-background-rgb), 0.82);
    font-size: 18px;
    line-height: 1.55;
}

.newsletter-band__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 24px;
    max-width: 820px;
    margin: 26px auto 0;
    padding-left: 20px;
    color: rgba(var(--rb-color-background-rgb), 0.9);
    font-size: 15px;
    line-height: 1.45;
    text-align: left;
}

.newsletter-band__benefits li::marker {
    color: var(--rb-gold);
}

.newsletter-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.newsletter-band a {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    width: fit-content;
    margin-top: 32px;
    padding: 0 24px;
    color: var(--rb-color-background);
    background: var(--rb-gold);
    border: 1px solid var(--rb-gold);
    border-radius: 4px;
    font-weight: 800;
}

.newsletter-band__actions a {
    margin-top: 0;
}

.newsletter-band .newsletter-band__button--secondary {
    color: var(--rb-color-background);
    background: transparent;
    border-color: rgba(var(--rb-color-background-rgb), 0.42);
}

.newsletter-band a:hover,
.newsletter-band a:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
    transform: translateY(-2px);
}

.newsletter-band .newsletter-band__button--secondary:hover,
.newsletter-band .newsletter-band__button--secondary:focus-visible {
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    border-color: var(--rb-color-background);
}

.account-prompt-band {
    justify-items: stretch;
    margin-top: 10px;
    padding-top: 38px;
    padding-bottom: 38px;
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    border-top: 1px solid var(--rb-rule);
    border-bottom: 1px solid var(--rb-rule);
    text-align: left;
}

.account-prompt-band::before {
    top: 0;
    right: max(24px, calc((100vw - var(--rb-max)) / 2));
    bottom: auto;
    left: max(24px, calc((100vw - var(--rb-max)) / 2));
    height: 4px;
    background: linear-gradient(90deg, var(--rb-gold), rgba(var(--rb-color-secondary-rgb), 0.25), transparent);
}

.account-prompt-band::after {
    content: none;
}

.account-prompt-band__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 56px);
    width: min(100%, var(--rb-max));
    margin: 0 auto;
}

.account-prompt-band__copy {
    display: grid;
    align-content: center;
    max-width: 520px;
}

.account-prompt-band .newsletter-band__eyebrow {
    color: var(--rb-gold-dark);
}

.account-prompt-band h2 {
    max-width: 520px;
    color: var(--rb-color-primary);
    font-size: clamp(36px, 3.6vw, 52px);
    line-height: 1.02;
}

.account-prompt-band .newsletter-band__dek {
    max-width: 480px;
    margin: 16px 0 0;
    color: var(--rb-color-text);
    font-size: 16px;
    line-height: 1.55;
}

.account-prompt-band .newsletter-band__actions {
    justify-content: flex-start;
    margin-top: 24px;
}

.account-prompt-band a {
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border-color: var(--rb-color-primary);
}

.account-prompt-band .newsletter-band__button--secondary {
    color: var(--rb-color-primary);
    background: transparent;
    border-color: rgba(var(--rb-color-primary-rgb), 0.35);
}

.account-prompt-band a:hover,
.account-prompt-band a:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
}

.account-prompt-band .newsletter-band__button--secondary:hover,
.account-prompt-band .newsletter-band__button--secondary:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border-color: var(--rb-color-primary);
}

.account-prompt-band__reader {
    position: relative;
    display: grid;
    align-content: center;
    overflow: visible;
    min-height: 0;
    padding: 6px 0 6px clamp(22px, 3vw, 44px);
    color: var(--rb-color-primary);
    background: transparent;
    border: 0;
    border-left: 1px solid var(--rb-rule);
    border-radius: 0;
    box-shadow: none;
}

.account-prompt-band__reader::before {
    content: none;
}

.account-prompt-band__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: none;
    margin: 0;
    padding: 0;
    color: var(--rb-color-primary);
    list-style: none;
}

.account-prompt-band__benefits li {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    min-height: 0;
    padding: 0 20px 0 0;
    border-top: 0;
    border-right: 1px solid var(--rb-soft-rule);
    color: var(--rb-color-text);
    line-height: 1.35;
}

.account-prompt-band__benefits li:last-child {
    border-right: 0;
}

.account-prompt-band__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--rb-gold-dark);
    background: var(--rb-color-secondary-soft);
    border: 1px solid rgba(var(--rb-color-secondary-rgb), 0.35);
    border-radius: var(--rb-button-radius);
}

.account-prompt-band__icon svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.account-prompt-band__benefit-copy,
.account-prompt-band__benefit-title,
.account-prompt-band__benefit-text {
    display: block;
}

.account-prompt-band__benefit-title {
    color: var(--rb-color-primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.account-prompt-band__benefit-text {
    max-width: 210px;
    margin-top: 5px;
    color: var(--rb-color-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 980px) {
    .account-prompt-band {
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .account-prompt-band__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .account-prompt-band__copy,
    .account-prompt-band .newsletter-band__dek {
        max-width: 680px;
    }

    .account-prompt-band__reader {
        width: 100%;
        padding: 22px 0 0;
        border-top: 1px solid var(--rb-rule);
        border-left: 0;
    }

    .account-prompt-band__benefits {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .account-prompt-band__benefits li {
        grid-template-columns: 32px minmax(0, 1fr);
        align-items: center;
        min-height: 50px;
        padding: 12px 0;
        border-right: 0;
        border-top: 1px solid var(--rb-soft-rule);
    }

    .account-prompt-band__benefit-text {
        max-width: none;
    }

    .account-prompt-band__benefits li:first-child {
        border-top: 0;
    }
}

@media (max-width: 620px) {
    .account-prompt-band {
        padding-right: 20px;
        padding-left: 20px;
    }

    .account-prompt-band h2 {
        font-size: 34px;
        line-height: 1.04;
    }

    .account-prompt-band .newsletter-band__actions {
        width: 100%;
    }

    .account-prompt-band .newsletter-band__actions a {
        width: 100%;
    }

    .account-prompt-band__reader {
        padding-top: 20px;
    }
}

.link-arrow {
    display: inline-flex;
    flex: 0 0 auto;
    width: 1.05em;
    height: 1.05em;
    transform: translateY(1px);
    transition: transform 160ms ease;
}

.link-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.25;
}

.newsletter-band a:hover .link-arrow,
.newsletter-band a:focus-visible .link-arrow,
.show-more a:hover .link-arrow,
.show-more a:focus-visible .link-arrow {
    transform: translate(3px, 1px);
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(520px, 1.25fr) minmax(260px, 0.48fr) minmax(360px, 0.7fr);
    gap: 36px;
    align-items: start;
}

.feature-lead h3 {
    max-width: 620px;
    font-size: clamp(36px, 3.15vw, 42px);
    letter-spacing: 0;
    line-height: 1.12;
}

.feature-lead .story-tax {
    display: none;
}

.feature-lead > a {
    aspect-ratio: 2.16;
    margin: 18px 0 14px;
}

.feature-lead p {
    margin: 0;
    color: var(--rb-color-muted);
    font-size: 15px;
    line-height: 1.62;
}

.story-card--large-title {
    align-self: end;
    padding-bottom: 8px;
}

.story-card--large-title h3 {
    font-size: clamp(26px, 2.3vw, 32px);
    line-height: 1.15;
}

.feature-middle {
    align-self: start;
    padding-top: 8px;
}

.story-card--middle-feature .story-card__image {
    aspect-ratio: 0.82;
}

.story-card--middle-feature h3 {
    margin-top: 14px;
}

.feature-side {
    display: grid;
    align-self: start;
    gap: 0;
}

.feature-side .story-card--side {
    padding-bottom: 26px;
}

.feature-side .story-card--side + .story-card--side {
    padding-top: 24px;
}

.beauty-layout {
    display: grid;
    grid-template-columns: 260px minmax(320px, 0.9fr) minmax(420px, 1.45fr);
    gap: 30px 42px;
    align-items: start;
}

.home-cta {
    grid-row: 1 / span 2;
    min-height: 520px;
    padding: 54px 28px 28px;
    background: var(--rb-color-border-soft);
}

.home-cta h3 {
    margin: 0 0 26px;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: 33px;
    font-weight: 700;
    line-height: 1.12;
}

.home-cta p {
    margin: 0 0 80px;
    color: var(--rb-color-text);
    font-size: 15px;
}

.home-cta > a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 20px;
    border: 1px solid var(--rb-color-primary);
    font-size: 13px;
    font-weight: 700;
}

.social-links--cta {
    margin-top: 28px;
    justify-content: center;
}

.beauty-feature {
    display: grid;
    grid-column: 2 / 4;
    grid-row: 1;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.4fr);
    gap: 30px;
}

.beauty-feature__image {
    aspect-ratio: 1.9;
}

.beauty-feature h3 {
    font-size: clamp(36px, 3.15vw, 44px);
    letter-spacing: 0;
    line-height: 1.12;
}

.beauty-feature p {
    margin: 0 0 16px;
    color: var(--rb-color-muted);
    font-size: 15px;
    line-height: 1.62;
}

.beauty-grid {
    display: grid;
    grid-column: 2 / 4;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.show-more {
    margin: 34px 0 0;
    text-align: center;
    font-weight: 700;
}

.show-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.show-more .link-arrow {
    width: 1em;
    height: 1em;
}

.not-found-main {
    width: min(calc(100% - 32px), 1308px);
    margin: 0 auto;
    padding-top: 0;
}

.not-found-hero {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(420px, 1fr);
    gap: clamp(54px, 6vw, 96px);
    align-items: start;
    width: min(100%, 1170px);
    margin: 0 auto;
    padding: 24px 0 68px;
}

.not-found-hero__copy {
    width: 100%;
    max-width: 520px;
}

.not-found-hero .section-kicker {
    position: relative;
    display: inline-block;
    margin: 0 0 28px;
    color: var(--rb-gold-dark);
    font-family: var(--rb-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.not-found-hero .section-kicker::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    background: var(--rb-gold-dark);
}

.not-found-hero h1 {
    max-width: 500px;
    margin: 0 0 22px;
    color: var(--rb-ink);
    font-family: var(--rb-serif);
    font-size: clamp(44px, 4.4vw, 66px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: 0;
}

.not-found-hero__copy > p:not(.section-kicker) {
    max-width: 410px;
    margin: 0;
    color: var(--rb-color-text);
    font-size: 18px;
    line-height: 1.48;
}

.not-found-search {
    width: min(100%, 480px);
    margin-top: 34px;
    background: var(--rb-color-background);
    border: 1px solid var(--rb-rule);
}

.not-found-search__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    align-items: center;
    min-height: 64px;
}

.not-found-search__form label {
    position: relative;
    display: block;
}

.not-found-search__form label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 22px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--rb-color-primary);
    border-radius: 50%;
    transform: translateY(-54%);
}

.not-found-search__form label::after {
    content: "";
    position: absolute;
    top: calc(50% + 8px);
    left: 37px;
    width: 8px;
    height: 2px;
    background: var(--rb-color-primary);
    transform: rotate(45deg);
}

.not-found-search__field {
    width: 100%;
    min-height: 64px;
    padding: 0 16px 0 64px;
    border: 0;
    outline: none;
    color: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: 17px;
}

.not-found-search__field::placeholder {
    color: var(--rb-color-muted);
    opacity: 1;
}

.not-found-search__submit {
    display: inline-grid;
    place-items: center;
    width: 58px;
    min-height: 64px;
    padding: 0;
    color: var(--rb-color-primary);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.not-found-search__submit svg {
    width: 22px;
    height: 22px;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.not-found-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 182px;
    min-height: 52px;
    padding: 0 24px;
    color: var(--rb-ink);
    border: 1px solid var(--rb-color-primary);
    border-radius: 0;
    font-family: var(--rb-nav);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.not-found-button--primary {
    color: var(--rb-color-background);
    background: linear-gradient(135deg, var(--rb-gold) 0%, var(--rb-gold-dark) 100%);
    border-color: var(--rb-gold);
}

.not-found-button:hover .link-arrow,
.not-found-button:focus-visible .link-arrow {
    transform: translate(3px, 1px);
}

.not-found-button:hover,
.not-found-button:focus-visible {
    border-color: var(--rb-color-primary);
    transform: translateY(-1px);
}

.not-found-button--primary:hover,
.not-found-button--primary:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
}

.not-found-briefing {
    padding-left: clamp(42px, 6vw, 82px);
    border-left: 1px solid var(--rb-rule);
}

.not-found-briefing__header {
    padding-bottom: 30px;
}

.not-found-briefing__header h2 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(30px, 2.5vw, 34px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

.not-found-briefing__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.not-found-briefing__item a {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--rb-soft-rule);
    color: inherit;
}

.not-found-briefing__item:first-child a {
    padding-top: 0;
}

.not-found-briefing__media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--rb-color-border-soft);
    color: var(--rb-gold-dark);
    font-family: var(--rb-serif);
    font-size: 24px;
    font-weight: 700;
}

.not-found-briefing__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.not-found-briefing__label {
    display: block;
    margin-bottom: 8px;
    color: var(--rb-gold-dark);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: var(--rb-label-spacing);
    line-height: 1.2;
    text-transform: uppercase;
}

.not-found-briefing__body {
    display: grid;
    gap: 8px;
    align-content: start;
    min-width: 0;
}

.not-found-briefing__item strong {
    display: block;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.not-found-briefing__item time {
    display: block;
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: var(--rb-label-spacing);
    line-height: 1.2;
    text-transform: uppercase;
}

.not-found-briefing__item a:hover strong,
.not-found-briefing__item a:focus-visible strong {
    color: var(--rb-gold-dark);
}

.not-found-briefing__item a:hover .not-found-briefing__media img,
.not-found-briefing__item a:focus-visible .not-found-briefing__media img {
    transform: scale(1.035);
}

.not-found-briefing__media img {
    transition: transform 220ms ease;
}

.not-found-directory {
    width: min(100%, 1308px);
    margin: 0 auto;
    padding: 42px 0 34px;
    border-top: 1px solid var(--rb-rule);
}

.not-found-directory__heading h2 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(28px, 2.6vw, 36px);
    font-weight: 700;
    line-height: 1.12;
}

.not-found-section-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 26px;
}

.not-found-section-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 32px;
    border-right: 1px solid var(--rb-rule);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
    transition: color 180ms ease, padding-left 180ms ease;
}

.not-found-section-links a:first-child {
    padding-left: 0;
}

.not-found-section-links a:last-child {
    border-right: 0;
}

.not-found-section-links a::after {
    content: ">";
    margin-left: 8px;
    color: var(--rb-gold-dark);
}

.not-found-section-links a:hover,
.not-found-section-links a:focus-visible {
    color: var(--rb-gold-dark);
    padding-left: 6px;
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--rb-rule);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(380px, 1.28fr);
    gap: 92px;
    padding: 48px 0 36px;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.footer-about p {
    max-width: 560px;
    margin: 20px 0 28px;
    color: var(--rb-color-text);
    font-size: 14px;
}

.social-links--footer a {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--rb-color-border-strong);
}

.footer-menu h2 {
    margin: 12px 0 28px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 17px;
    font-weight: 600;
}

.footer-menu h2::after {
    content: ">";
    margin-left: 7px;
}

.footer-menu__list {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
}

.footer-menu__list a {
    font-family: var(--rb-nav);
    font-size: 14px;
    font-weight: 600;
}

.footer-menu__list li + li::before {
    content: "/";
    margin-right: 22px;
}

.footer-bottom {
    background: var(--rb-color-surface);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    min-height: 118px;
    color: var(--rb-color-muted);
    font-size: 13px;
    text-align: center;
}

.footer-bottom__inner > span {
    color: var(--rb-color-primary);
    font-weight: 800;
    line-height: 1.1;
}

.social-links--bottom {
    flex-wrap: nowrap;
}

.footer-bottom__inner p {
    flex-basis: 100%;
    max-width: 640px;
    margin: 0;
}

.site-footer--events {
    position: relative;
    overflow: hidden;
    margin-top: 44px;
    color: var(--rb-color-text);
    background: var(--rb-color-background);
    border-top: 1px solid var(--rb-rule);
}

.site-footer--events::before {
    content: none;
}

.events-footer__inner,
.events-footer__bottom-inner {
    position: relative;
    z-index: 1;
    width: min(var(--rb-max), calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.events-footer__inner {
    display: grid;
    grid-template-columns: minmax(88px, 0.28fr) minmax(230px, 0.72fr) repeat(3, minmax(112px, 0.42fr));
    gap: clamp(22px, 3.4vw, 46px);
    align-items: start;
    padding: 44px 0 38px;
}

.events-footer__logo {
    display: inline-flex;
    width: fit-content;
}

.events-footer__logo img {
    width: 112px;
    height: auto;
    object-fit: contain;
}

.events-footer__about-column {
    max-width: 430px;
}

.events-footer__kicker {
    margin: 6px 0 10px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.events-footer__about {
    max-width: 460px;
    margin: 0;
    color: var(--rb-color-muted);
    font-size: 15px;
    line-height: 1.55;
}

.events-footer__index {
    display: grid;
    grid-column: span 3;
    grid-template-columns: repeat(3, minmax(112px, 1fr));
    gap: 24px;
    width: 100%;
    padding-top: 9px;
}

.events-footer__index-group h2 {
    margin: 0 0 13px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.events-footer__index-group ul {
    display: grid;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.events-footer__index-group a {
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.events-footer__index-group a:hover,
.events-footer__index-group a:focus-visible,
.events-footer__legal a:hover,
.events-footer__legal a:focus-visible {
    color: var(--rb-gold);
}

.events-footer__bottom {
    background: var(--rb-color-surface);
    border-top: 1px solid var(--rb-soft-rule);
}

.events-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    align-items: center;
    min-height: 64px;
    color: var(--rb-color-muted);
    font-size: 12px;
    text-align: center;
}

.events-footer__bottom-inner p {
    margin: 0;
}

.events-footer__legal {
    display: flex;
    align-items: center;
}

.events-footer__legal {
    gap: 14px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-weight: 800;
}

.article-main {
    width: min(1320px, calc(100% - 40px));
    padding-top: 36px;
}

.article-page {
    display: grid;
    grid-template-columns: minmax(0, 860px) minmax(300px, 360px);
    gap: 52px;
    align-items: start;
}

.article-main--centered {
    width: min(1180px, calc(100% - 40px));
}

.site-main.article-main--image-overlay {
    width: 100%;
    padding-top: 0;
}

.article-page--centered {
    display: block;
}

.article-page--image-overlay {
    display: block;
}

.article-page--centered .article-shell {
    max-width: 930px;
    margin-right: auto;
    margin-left: auto;
}

.article-page--image-overlay .article-shell {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.article-page--centered .article-hero,
.article-page--centered .article-hero h1,
.article-page--centered .article-dek,
.article-page--centered .article-meta-row,
.article-page--centered .article-comment-jump,
.article-page--centered .article-toc,
.article-page--centered .article-content,
.article-page--centered .article-comments {
    margin-right: auto;
    margin-left: auto;
}

.article-page--centered .article-hero,
.article-page--centered .article-hero__image {
    max-width: 930px;
}

.article-page--centered .article-hero h1,
.article-page--centered .article-dek {
    max-width: 930px;
}

.article-page--centered .article-meta-row,
.article-page--centered .article-comment-jump,
.article-page--centered .article-toc,
.article-page--centered .article-content,
.article-page--centered .article-comments {
    max-width: 760px;
}

.article-page--centered .article-hero__image {
    margin-right: auto;
    margin-left: auto;
}

.article-page--image-overlay .article-hero,
.article-page--image-overlay .article-dek,
.article-page--image-overlay .article-meta-row,
.article-page--image-overlay .article-comment-jump,
.article-page--image-overlay .article-toc,
.article-page--image-overlay .article-content,
.article-page--image-overlay .article-comments,
.article-page--image-overlay .rb-article-tts {
    margin-right: auto;
    margin-left: auto;
}

.article-page--image-overlay .article-dek,
.article-page--image-overlay .article-meta-row,
.article-page--image-overlay .article-comment-jump,
.article-page--image-overlay .article-toc,
.article-page--image-overlay .article-content,
.article-page--image-overlay .article-comments,
.article-page--image-overlay .rb-article-tts {
    width: min(760px, calc(100% - 40px));
    max-width: 760px;
}

.article-main--image-overlay .related-stories--centered {
    width: min(1060px, calc(100% - 40px));
}

.article-shell,
.feature-lead__copy {
    min-width: 0;
}

.article-hero {
    margin-bottom: 30px;
}

.article-hero > .story-tax,
.article-hero__desktop-tax .story-tax {
    gap: 9px;
    margin-bottom: 0;
    color: var(--rb-color-primary);
    font-size: clamp(15px, 1.08vw, 18px);
    line-height: 1.1;
}

.article-hero > .story-tax span,
.article-hero__desktop-tax .story-tax span {
    color: var(--rb-color-muted-light);
}

.article-hero > .story-tax + h1 {
    margin-top: 0;
}

.article-hero--image-overlay {
    max-width: none;
    margin-bottom: 34px;
}

.article-hero h1 {
    max-width: 860px;
    margin: 18px 0 14px;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(38px, 2.58vw, 48px);
    font-weight: 650;
    line-height: 1.09;
}

.article-dek {
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--rb-color-muted);
    font-family: var(--rb-sans);
    font-size: clamp(17px, 1.22vw, 20px);
    font-weight: 600;
    line-height: 1.42;
}

.article-page--image-overlay .article-dek {
    margin-bottom: 12px;
}

.article-meta-row {
    max-width: 760px;
    margin: 0 0 30px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--rb-rule);
}

.article-sharebar {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0;
    margin: 0;
    color: var(--rb-muted);
    font-size: 13px;
}

.article-sharebar__label {
    color: var(--rb-color-primary);
    font-weight: 800;
}

.article-read-time,
.article-comments-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
}

.article-comments-link {
    text-decoration: none;
}

.article-sharebar__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 0;
    padding: 0;
    color: var(--rb-color-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.article-meta-line .rb-bookmark-action button,
.article-meta-line .rb-bookmark-action--login {
    min-height: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    text-decoration: none;
    text-transform: none;
}

.article-comments-link:hover,
.article-comments-link:focus-visible,
.article-sharebar__toggle:hover,
.article-sharebar__toggle:focus-visible,
.article-meta-line .rb-bookmark-action button:hover,
.article-meta-line .rb-bookmark-action button:focus-visible,
.article-meta-line .rb-bookmark-action--login:hover,
.article-meta-line .rb-bookmark-action--login:focus-visible {
    color: var(--rb-gold-dark);
    background: transparent;
    border-color: transparent;
    text-decoration: none;
}

.article-meta-line .rb-bookmark-action.is-saved button {
    color: var(--rb-color-primary);
}

.article-meta-line .rb-bookmark-action.is-saved button:hover,
.article-meta-line .rb-bookmark-action.is-saved button:focus-visible {
    color: var(--rb-gold-dark);
}

.article-action-icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.article-sharebar svg,
.article-sharebar__copy svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.article-action-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.article-page--centered .article-meta-row {
    margin: 0 auto 34px;
    padding: 18px 0 22px;
    border-top: 0;
    border-bottom: 1px solid var(--rb-rule);
}

.article-page--image-overlay .article-meta-row {
    margin-bottom: 34px;
    padding: 18px 0 22px;
}

.article-page--centered .article-sharebar {
    justify-content: flex-start;
    gap: 0;
    padding-left: 0;
}

.article-page--centered .article-read-time {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    color: var(--rb-color-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-weight: 800;
}

.article-page--centered .article-sharebar__label {
    margin-left: 4px;
    color: var(--rb-color-muted);
    font-size: 12px;
    font-weight: 700;
}

.article-page--centered .article-sharebar__toggle {
    min-height: 0;
    padding: 0;
    box-shadow: none;
}

.article-share-panel {
    position: absolute;
    z-index: 100002;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(250px, calc(100vw - 36px));
    padding: 8px;
    background: var(--rb-color-background);
    border: 1px solid var(--rb-rule);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(var(--rb-color-primary-rgb), 0.14);
}

.article-share-panel.is-share-panel-layer {
    position: fixed;
    z-index: 2147483647;
    top: var(--rb-share-panel-top, 0);
    right: auto;
    left: var(--rb-share-panel-left, 0);
    max-height: calc(100vh - 36px);
    overflow: auto;
}

.article-share-panel[hidden] {
    display: none;
}

.article-page--centered .article-share-panel {
    right: auto;
    left: 0;
}

.article-share-panel__item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    width: 100%;
    padding: 0 11px;
    color: var(--rb-color-primary);
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.article-share-panel__item:hover,
.article-share-panel__item:focus-visible {
    color: var(--rb-color-primary);
    background: var(--rb-color-surface);
}

.article-share-panel__item svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.article-page--centered .article-comments-link:hover,
.article-page--centered .article-comments-link:focus-visible,
.article-page--centered .article-sharebar__toggle:hover,
.article-page--centered .article-sharebar__toggle:focus-visible {
    color: var(--rb-gold-dark);
    background: transparent;
    border-color: transparent;
}

.article-page--centered .article-sharebar .article-share-panel__item:hover,
.article-page--centered .article-sharebar .article-share-panel__item:focus-visible {
    color: var(--rb-color-primary);
    background: var(--rb-color-surface);
    border-color: transparent;
}

.article-page--centered .article-byline {
    gap: 16px;
}

.article-page--centered .article-byline img {
    width: 48px;
    height: 48px;
    border: 1px solid var(--rb-rule);
    box-shadow: 0 10px 28px rgba(var(--rb-color-primary-rgb), 0.08);
}

.article-page--centered .article-published,
.article-page--centered .article-updated {
    margin-bottom: 0;
    font-size: 14px;
}

.article-page--centered .article-author-line {
    font-size: 14px;
}

@media (max-width: 620px) {
    .article-page--centered .article-sharebar {
        padding-left: 0;
    }

    .article-page--centered .article-share-panel {
        left: 0;
        width: min(100%, calc(100vw - 18px));
    }
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--rb-color-primary);
    font-size: 14px;
    line-height: 1.35;
}

.article-byline img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.article-meta-copy {
    min-width: 0;
}

.article-meta-line,
.article-author-line {
    display: flex;
    align-items: center;
}

.article-meta-line {
    flex-wrap: wrap;
    gap: 6px 13px;
    margin: 4px 0 0;
    color: var(--rb-color-primary);
}

.article-author-line {
    gap: 5px;
    margin: 0;
}

.article-author-line a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-date-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    align-items: center;
}

.article-published,
.article-updated {
    display: inline-flex;
    color: var(--rb-color-muted);
    font-size: 13px;
    white-space: nowrap;
}

.article-published {
    color: var(--rb-color-primary);
    font-weight: 800;
}

.article-author-line span {
    color: var(--rb-color-muted);
}

.article-hero__image {
    margin: 0 0 34px;
}

.article-hero__image--overlay {
    width: 100%;
    margin: 0 0 18px;
}

.article-hero__overlay-frame {
    position: relative;
    min-height: clamp(520px, 52vw, 780px);
    overflow: hidden;
    background: var(--rb-color-primary);
}

.article-hero__overlay-frame::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(var(--rb-color-primary-rgb), 0.02) 0%, rgba(var(--rb-color-primary-rgb), 0.04) 34%, rgba(var(--rb-color-primary-rgb), 0.5) 68%, rgba(var(--rb-color-primary-rgb), 0.92) 100%),
        linear-gradient(90deg, rgba(var(--rb-color-primary-rgb), 0.28) 0%, rgba(var(--rb-color-primary-rgb), 0.12) 42%, transparent 72%);
    content: "";
    pointer-events: none;
}

.article-hero__image img {
    width: 100%;
    height: auto;
}

.article-hero__image--overlay img {
    display: block;
    height: clamp(520px, 52vw, 780px);
    object-fit: cover;
    object-position: center;
}

.article-hero__overlay-content {
    position: absolute;
    z-index: 1;
    right: max(20px, calc((100vw - 1180px) / 2));
    bottom: clamp(24px, 3.2vw, 52px);
    left: max(20px, calc((100vw - 1180px) / 2));
    max-width: 1040px;
    color: var(--rb-color-background);
}

.article-hero__overlay-content .story-tax {
    color: rgba(var(--rb-color-background-rgb), 0.86);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.article-hero__overlay-content .story-tax a,
.article-hero__overlay-content .story-tax span {
    color: inherit;
}

.article-page--image-overlay .article-hero__overlay-content h1 {
    max-width: 1040px;
    margin: 14px 0 0;
    color: var(--rb-color-background);
    font-size: clamp(40px, 4.7vw, 72px);
    line-height: 1;
    text-shadow: 0 2px 22px rgba(var(--rb-color-primary-rgb), 0.34);
    text-wrap: balance;
}

.article-hero__desktop-tax,
.article-hero__desktop-title {
    display: none;
}

@media (min-width: 981px) {
    .site-main.article-main--image-overlay {
        padding-top: 12px;
    }

    .article-hero--image-overlay {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }

    .article-hero__desktop-tax,
    .article-hero__desktop-title {
        display: block;
        width: min(930px, calc(100% - 40px));
        margin-right: auto;
        margin-left: auto;
    }

    .article-hero__desktop-tax {
        order: 1;
        margin-bottom: 3px;
    }

    .article-hero__desktop-title {
        order: 2;
        margin-top: 0;
        margin-bottom: 8px;
    }

    .article-hero__desktop-title h1 {
        width: 100%;
        max-width: 100%;
        margin: 0;
        color: var(--rb-color-primary);
        font-family: var(--rb-serif);
        font-size: clamp(38px, 2.58vw, 48px);
        font-weight: 650;
        line-height: 1.09;
        text-wrap: normal;
    }

    .article-page--image-overlay .article-dek {
        width: min(930px, calc(100% - 40px));
        max-width: 930px;
    }

    .article-page--image-overlay .article-dek {
        order: 3;
        margin-bottom: 10px;
    }

    .article-page--image-overlay .article-hero__image--overlay {
        order: 4;
        width: min(930px, calc(100% - 40px));
        margin-bottom: 16px;
        margin-right: auto;
        margin-left: auto;
    }

    .article-page--image-overlay .article-meta-row {
        order: 5;
        margin-bottom: 0;
        padding: 8px 0 10px;
        border-top: 1px solid var(--rb-soft-rule);
    }

    .article-page--image-overlay .article-byline {
        align-items: center;
        gap: 16px;
    }

    .article-page--image-overlay .article-byline img {
        width: 46px;
        height: 46px;
    }

    .article-page--image-overlay .article-meta-line {
        gap: 7px 14px;
        margin-top: 8px;
    }

    .article-page--image-overlay .rb-bookmark-action button,
    .article-page--image-overlay .rb-bookmark-action--login {
        min-height: 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0;
        line-height: 1.25;
        text-transform: none;
    }

    .article-page--image-overlay .rb-bookmark-action__icon {
        width: 16px;
        height: 18px;
    }

    .article-page--image-overlay .article-hero__overlay-frame {
        min-height: 0;
        overflow: visible;
        background: transparent;
    }

    .article-page--image-overlay .article-hero__overlay-frame::after {
        content: none;
    }

    .article-page--image-overlay .article-hero__overlay-content {
        display: none;
    }

    .article-page--image-overlay .article-hero__image--overlay img {
        height: auto;
        object-fit: initial;
    }
}

.article-hero__image figcaption {
    margin-top: 10px;
    color: var(--rb-muted);
    font-size: 12px;
    text-align: center;
}

.article-hero__image--overlay figcaption {
    width: min(760px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.article-toc {
    margin: 0 0 34px;
    padding: 22px 24px 24px;
    border: 1px solid var(--rb-rule);
    background: var(--rb-color-background);
}

.article-toc__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
}

.article-toc__summary::-webkit-details-marker {
    display: none;
}

.article-toc__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
}

.article-toc__title svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.article-toc__chevron {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin-right: 2px;
    border-top: 3px solid var(--rb-color-primary);
    border-left: 3px solid var(--rb-color-primary);
    transform: rotate(45deg) translateY(3px);
    transition: transform 160ms ease;
}

.article-toc:not([open]) .article-toc__chevron {
    transform: rotate(225deg) translate(3px, -3px);
}

.article-toc__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 46px;
    padding: 22px 12px 0 0;
    margin: 0;
    list-style: none;
    counter-reset: article-toc;
}

.article-toc__item {
    counter-increment: article-toc;
    min-width: 0;
    border-bottom: 1px solid var(--rb-rule);
}

.article-toc__item a,
.article-toc__label {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 11px 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.34;
}

.article-toc__item a::before,
.article-toc__label::before {
    content: counter(article-toc);
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 20px;
    margin-top: 1px;
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.article-toc__item--level-3 a,
.article-toc__item--level-3 .article-toc__label {
    color: var(--rb-color-muted);
}

.article-toc--preview .article-toc__label {
    cursor: default;
}

.article-comment-jump {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin: 0 0 34px;
    padding: 13px 16px;
    border: 1px solid var(--rb-rule);
    background: var(--rb-color-surface);
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
}

.article-comment-jump + .article-toc {
    margin-top: -12px;
}

.rb-article-tts {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--rb-color-primary);
}

.article-page--centered .rb-article-tts {
    max-width: 930px;
    margin-right: auto;
    margin-left: auto;
}

.rb-article-tts__surface {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 10px 12px;
    background: var(--rb-color-background);
    border: 1px solid var(--rb-rule);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(var(--rb-color-primary-rgb), 0.05);
}

.rb-article-tts__body {
    min-width: 0;
}

.rb-article-tts__topline {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    line-height: 1.2;
}

.rb-article-tts__title {
    overflow: hidden;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rb-article-tts__badge,
.rb-article-tts__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    color: var(--rb-color-muted);
    background: var(--rb-color-surface);
    border: 1px solid var(--rb-color-border-soft);
    border-radius: 999px;
    font-family: var(--rb-nav);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.rb-article-tts__status {
    overflow: hidden;
    min-width: 56px;
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rb-article-tts__timeline {
    display: grid;
    grid-template-columns: minmax(90px, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.rb-article-tts__seek {
    --rb-tts-progress: 0%;
    width: 100%;
    height: 18px;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
}

.rb-article-tts__seek:disabled {
    cursor: default;
    opacity: 0.55;
}

.rb-article-tts__seek::-webkit-slider-runnable-track {
    height: 4px;
    background: linear-gradient(90deg, var(--rb-color-primary) var(--rb-tts-progress), var(--rb-color-border-soft) var(--rb-tts-progress));
    border-radius: 999px;
}

.rb-article-tts__seek::-webkit-slider-thumb {
    width: 13px;
    height: 13px;
    margin-top: -4.5px;
    background: var(--rb-color-primary);
    border: 2px solid var(--rb-color-background);
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(var(--rb-color-primary-rgb), 0.22);
    appearance: none;
}

.rb-article-tts__seek::-moz-range-track {
    height: 4px;
    background: var(--rb-color-border-soft);
    border: 0;
    border-radius: 999px;
}

.rb-article-tts__seek::-moz-range-progress {
    height: 4px;
    background: var(--rb-color-primary);
    border-radius: 999px;
}

.rb-article-tts__seek::-moz-range-thumb {
    width: 13px;
    height: 13px;
    background: var(--rb-color-primary);
    border: 2px solid var(--rb-color-background);
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(var(--rb-color-primary-rgb), 0.22);
}

.rb-article-tts__time {
    color: var(--rb-color-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.rb-article-tts__play,
.rb-article-tts__speed,
.rb-article-tts__cta {
    font-family: var(--rb-nav);
}

.rb-article-tts__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
    border: 1px solid var(--rb-color-primary);
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.rb-article-tts__play:hover,
.rb-article-tts__play:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold);
    border-color: var(--rb-gold);
    transform: translateY(-1px);
}

.rb-article-tts__play:disabled,
.rb-article-tts__play:disabled:hover,
.rb-article-tts__play:disabled:focus-visible {
    color: var(--rb-color-muted);
    background: var(--rb-color-border-soft);
    border-color: var(--rb-rule);
    cursor: not-allowed;
    transform: none;
}

.rb-article-tts__play--link {
    text-decoration: none;
}

.rb-article-tts__play-icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
}

.rb-article-tts__play-icon::before {
    position: absolute;
    top: 1px;
    left: 4px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid currentColor;
    content: "";
}

.rb-article-tts.is-playing .rb-article-tts__play-icon::before {
    top: 1px;
    left: 2px;
    width: 4px;
    height: 14px;
    background: currentColor;
    border: 0;
    box-shadow: 8px 0 0 currentColor;
}

.rb-article-tts[aria-busy="true"] .rb-article-tts__play-icon {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(var(--rb-color-background-rgb), 0.45);
    border-top-color: currentColor;
    border-radius: 999px;
    animation: rb-tts-spin 800ms linear infinite;
}

.rb-article-tts[aria-busy="true"] .rb-article-tts__play-icon::before {
    content: none;
}

.rb-article-tts__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 48px;
}

.rb-article-tts__speed,
.rb-article-tts__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 34px;
    padding: 0 10px;
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    border: 1px solid var(--rb-rule);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.rb-article-tts__speed {
    cursor: pointer;
}

.rb-article-tts__speed:hover,
.rb-article-tts__speed:focus-visible,
.rb-article-tts__cta:hover,
.rb-article-tts__cta:focus-visible {
    color: var(--rb-color-primary);
    background: var(--rb-color-secondary-soft);
    border-color: var(--rb-gold);
}

.rb-article-tts__speed:disabled {
    color: var(--rb-color-muted);
    background: var(--rb-color-surface);
    border-color: var(--rb-color-border-soft);
    cursor: default;
}

.rb-article-tts--locked .rb-article-tts__play {
    color: var(--rb-color-primary);
    background: var(--rb-color-secondary-soft);
    border-color: rgba(var(--rb-color-secondary-rgb), 0.42);
}

.rb-article-tts--locked .rb-article-tts__play:hover,
.rb-article-tts--locked .rb-article-tts__play:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
}

.rb-article-tts__audio {
    display: none;
}

@keyframes rb-tts-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rb-article-tts[aria-busy="true"] .rb-article-tts__play-icon {
        animation: none;
    }
}

.article-comment-jump__count {
    color: var(--rb-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.article-comment-jump a {
    color: var(--rb-color-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.article-comment-jump a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.article-content {
    max-width: 760px;
    color: var(--rb-color-text);
    font-size: var(--rb-reader-size);
    line-height: var(--rb-leading-reader);
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content p {
    margin: 0 0 28px;
}

.article-content h2,
.article-content h3 {
    scroll-margin-top: 120px;
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-weight: 700;
}

.article-content h2 {
    margin: 46px 0 18px;
    font-size: clamp(29px, 2vw, 36px);
    line-height: 1.14;
}

.article-content h3 {
    margin: 34px 0 14px;
    font-size: clamp(22px, 1.45vw, 27px);
    line-height: 1.2;
}

.article-content a {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.article-content li + li {
    margin-top: 9px;
}

.article-content img {
    margin: 34px 0;
}

.article-content blockquote,
.article-content .wp-block-quote {
    margin: 34px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--rb-gold);
    background: var(--rb-soft);
    color: var(--rb-color-text);
    font-size: 18px;
    line-height: 1.6;
}

.article-content blockquote p,
.article-content .wp-block-quote p {
    margin-bottom: 14px;
}

.article-content blockquote p:last-child,
.article-content .wp-block-quote p:last-child {
    margin-bottom: 0;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 34px 0 0;
    color: var(--rb-muted);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
}

.page-links a,
.page-links .post-page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid var(--rb-rule);
    color: var(--rb-color-primary);
    text-decoration: none;
}

.page-shell:has(.rb-designed-page) .article-hero {
    display: none;
}

.page-shell:has(.rb-designed-page) .article-content {
    max-width: none;
}

.rb-designed-page {
    --rb-page-muted: var(--rb-color-muted);
    --rb-page-soft: var(--rb-color-surface);
    --rb-page-accent: var(--rb-color-secondary-hover);
    color: var(--rb-color-primary);
}

.rb-contact-page {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    --rb-contact-anchor-offset: 112px;
}

.rb-contact-page #contact-form,
.rb-contact-page #department-info {
    scroll-margin-top: var(--rb-contact-anchor-offset);
}

.rb-about-page {
    --rb-page-accent: var(--rb-color-secondary-hover);
}

.rb-editor-page {
    --rb-page-accent: var(--rb-gold-dark);
}

.article-content .rb-designed-page p {
    margin: 0;
}

.rb-page-kicker {
    margin: 0 0 16px;
    color: var(--rb-page-accent);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    line-height: 1.2;
    text-transform: uppercase;
}

.rb-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: end;
    min-height: 520px;
    padding: 58px 0 48px;
    border-bottom: 1px solid var(--rb-rule);
}

.rb-page-hero--profile {
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
}

.rb-page-title {
    max-width: 840px;
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: clamp(48px, 6.4vw, 88px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.92;
}

.rb-page-title--profile {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
}

.rb-page-dek {
    max-width: 790px;
    margin-top: 24px;
    color: var(--rb-color-text);
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 500;
    line-height: 1.34;
}

.rb-page-summary {
    max-width: 780px;
    margin-top: 20px;
    color: var(--rb-color-text);
    font-size: 17px;
    line-height: 1.72;
}

.rb-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.article-content .rb-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    color: var(--rb-color-primary);
    border: 1px solid var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
}

.article-content .rb-page-button--dark {
    color: var(--rb-color-background);
    background: var(--rb-color-primary);
}

.rb-page-brand-card {
    padding-left: 32px;
    border-left: 1px solid var(--rb-rule);
}

.rb-page-brand-card img {
    width: 180px;
    height: auto;
    margin: 0 0 30px;
    filter: grayscale(100%);
}

.rb-page-brand-card p,
.rb-page-portrait p {
    color: var(--rb-page-muted);
    font-size: 14px;
    line-height: 1.6;
}

.rb-page-portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin: 0;
    filter: grayscale(100%);
}

.rb-page-portrait p {
    margin-top: 14px;
}

.rb-page-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--rb-rule);
}

.rb-page-metric {
    padding: 24px 24px 24px 0;
    border-right: 1px solid var(--rb-rule);
}

.rb-page-metric + .rb-page-metric {
    padding-left: 24px;
}

.rb-page-metric:last-child {
    border-right: 0;
}

.rb-page-metric strong {
    display: block;
    margin-bottom: 8px;
    color: var(--rb-color-primary);
    font-size: 32px;
    font-weight: 950;
    line-height: 1;
}

.rb-page-metric span {
    display: block;
    color: var(--rb-page-muted);
    font-size: 13px;
    line-height: 1.45;
}

.rb-page-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    padding: 58px 0;
    border-bottom: 1px solid var(--rb-rule);
}

.rb-page-section h2 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.04;
}

.rb-page-copy {
    color: var(--rb-color-text);
    font-size: 17px;
    line-height: 1.72;
}

.rb-page-list {
    margin-top: 24px;
    border-top: 1px solid var(--rb-rule);
}

.rb-page-list-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--rb-rule);
}

.rb-page-list-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--rb-color-primary);
    font-size: 15px;
    line-height: 1.35;
}

.rb-page-list-item span {
    display: block;
    color: var(--rb-page-muted);
    font-size: 15px;
    line-height: 1.55;
}

.article-content .rb-page-list-item a {
    color: var(--rb-gold-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rb-editor-panel {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 28px;
    background: var(--rb-page-soft);
    border: 1px solid var(--rb-rule);
}

.rb-editor-panel img {
    width: 100%;
    margin: 0;
    filter: grayscale(100%);
}

.rb-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    border-top: 1px solid var(--rb-rule);
    border-left: 1px solid var(--rb-rule);
}

.rb-service-item {
    min-height: 148px;
    padding: 24px;
    border-right: 1px solid var(--rb-rule);
    border-bottom: 1px solid var(--rb-rule);
}

.rb-service-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--rb-color-primary);
    font-size: 16px;
    line-height: 1.25;
}

.rb-service-item span {
    display: block;
    color: var(--rb-page-muted);
    font-size: 15px;
    line-height: 1.55;
}

.rb-page-quote {
    margin-top: 26px;
    padding: 24px;
    background: var(--rb-page-soft);
    border-left: 4px solid var(--rb-page-accent);
}

.rb-page-quote p {
    color: var(--rb-color-text);
    font-size: 20px;
    line-height: 1.5;
}

.rb-page-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 28px 0 76px;
    border: 1px solid var(--rb-rule);
}

.rb-page-contact--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
}

.article-content .rb-page-contact a {
    display: block;
    padding: 20px;
    border-right: 1px solid var(--rb-rule);
    text-decoration: none;
}

.article-content .rb-page-contact a:last-child {
    border-right: 0;
}

.rb-page-contact span {
    display: block;
    margin-bottom: 6px;
    color: var(--rb-page-muted);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.rb-page-contact strong {
    color: var(--rb-color-primary);
    font-size: 16px;
    line-height: 1.35;
}

.rb-publication-page {
    --rb-page-hero-min: min(640px, calc(100svh - 170px));
    --rb-page-measure: 760px;
    --rb-page-accent-soft: rgba(var(--rb-color-secondary-rgb), 0.13);
    padding-top: 6px;
}

.rb-publication-page .rb-page-hero {
    position: relative;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
    gap: clamp(34px, 5vw, 82px);
    align-items: center;
    min-height: var(--rb-page-hero-min);
    padding: clamp(58px, 7vw, 96px) 0 clamp(44px, 5vw, 70px);
    overflow: clip;
}

.rb-publication-page .rb-page-hero::before {
    position: absolute;
    top: clamp(42px, 7vw, 88px);
    right: min(34vw, 480px);
    bottom: clamp(42px, 6vw, 84px);
    width: 1px;
    background: var(--rb-rule);
    content: "";
}

.rb-publication-page .rb-page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.rb-publication-page .rb-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(16px, 2vw, 22px);
}

.rb-publication-page .rb-page-kicker::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.rb-publication-page .rb-page-title {
    max-width: 920px;
    font-family: var(--rb-serif);
    font-size: clamp(68px, 11vw, 156px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.86;
}

.rb-publication-page .rb-page-title--profile {
    max-width: 780px;
    font-size: clamp(54px, 8vw, 112px);
    line-height: 0.9;
}

.rb-publication-page .rb-page-dek {
    max-width: 780px;
    margin-top: clamp(22px, 2.4vw, 34px);
    color: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: clamp(24px, 2.6vw, 38px);
    font-weight: 800;
    line-height: 1.08;
}

.rb-publication-page .rb-page-summary {
    max-width: 660px;
    margin-top: 20px;
    color: var(--rb-color-muted);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.66;
}

.rb-publication-page .rb-page-actions {
    gap: 10px;
    margin-top: 32px;
}

.article-content .rb-publication-page .rb-page-button {
    min-height: 48px;
    padding: 14px 20px;
    border-color: var(--rb-color-primary);
    border-radius: 0;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.article-content .rb-publication-page .rb-page-button:hover,
.article-content .rb-publication-page .rb-page-button:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
    transform: translateY(-1px);
}

.rb-page-cover {
    position: relative;
    z-index: 1;
    display: grid;
    align-self: stretch;
    min-height: 430px;
    margin: 0;
    background:
        linear-gradient(135deg, rgba(var(--rb-color-primary-rgb), 0.06), transparent 46%),
        var(--rb-color-surface);
}

.rb-page-cover::after {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(var(--rb-color-primary-rgb), 0.12);
    content: "";
    pointer-events: none;
}

.rb-page-cover--brand {
    place-items: center;
    padding: clamp(34px, 4vw, 54px);
}

.rb-page-cover--brand .rb-page-cover__logo {
    width: min(74%, 290px);
    margin: 0;
    filter: grayscale(100%) contrast(1.05);
}

.rb-page-cover--portrait {
    min-height: 560px;
    background: var(--rb-color-primary);
}

.rb-page-cover--portrait img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    margin: 0;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.06);
}

.rb-page-cover figcaption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    z-index: 1;
    color: var(--rb-page-muted);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
}

.rb-page-cover--portrait figcaption {
    color: rgba(var(--rb-color-background-rgb), 0.82);
}

.rb-page-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--rb-rule);
    border-bottom: 1px solid var(--rb-rule);
}

.rb-page-index__item {
    display: grid;
    gap: 10px;
    min-height: 132px;
    padding: 24px 28px 24px 0;
    align-content: end;
    border-right: 1px solid var(--rb-rule);
}

.rb-page-index__item + .rb-page-index__item {
    padding-left: 28px;
}

.rb-page-index__item:last-child {
    border-right: 0;
}

.rb-page-index__item span {
    color: var(--rb-page-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.rb-page-index__item strong {
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 700;
    line-height: 0.88;
}

.rb-publication-page .rb-page-section {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 76px);
    padding: clamp(64px, 7vw, 100px) 0;
}

.rb-publication-page .rb-page-section h2 {
    max-width: 560px;
    font-family: var(--rb-serif);
    font-size: clamp(36px, 4.4vw, 66px);
    font-weight: 700;
    line-height: 0.98;
}

.rb-page-stack {
    display: grid;
    gap: 20px;
    max-width: var(--rb-page-measure);
}

.rb-publication-page .rb-page-copy {
    color: var(--rb-color-text);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.74;
}

.rb-publication-page .rb-page-list--ruled {
    margin-top: 8px;
}

.rb-publication-page .rb-page-list-item {
    position: relative;
    padding: 22px 0 22px 28px;
}

.rb-publication-page .rb-page-list-item::before {
    position: absolute;
    top: 28px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--rb-page-accent);
    content: "";
}

.rb-publication-page .rb-page-list-item strong {
    font-size: 17px;
}

.rb-publication-page .rb-page-list-item span {
    font-size: 15px;
}

.rb-page-feature {
    display: grid;
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
    gap: 28px;
    align-items: end;
    max-width: var(--rb-page-measure);
    padding: 28px 0 0;
    border-top: 1px solid var(--rb-rule);
}

.rb-page-feature img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    margin: 0;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.06);
}

.article-content .rb-page-text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.article-content .rb-page-text-link::after {
    margin-left: 10px;
    color: var(--rb-page-accent);
    content: "->";
}

.rb-service-grid--editorial {
    max-width: var(--rb-page-measure);
    background: linear-gradient(180deg, var(--rb-color-background), var(--rb-color-surface));
}

.rb-publication-page .rb-service-item {
    min-height: 174px;
    padding: 26px;
}

.rb-publication-page .rb-page-quote--large {
    max-width: var(--rb-page-measure);
    margin: 0;
    padding: clamp(30px, 4vw, 48px);
    background:
        linear-gradient(135deg, var(--rb-page-accent-soft), transparent 52%),
        var(--rb-color-surface);
    border: 0;
    border-top: 4px solid var(--rb-page-accent);
}

.rb-publication-page .rb-page-quote--large p {
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.04;
}

.rb-page-press-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.rb-page-press-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 10px;
    color: var(--rb-color-primary);
    background: var(--rb-color-surface);
    border: 1px solid var(--rb-rule);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.rb-publication-page .rb-page-contact--editorial,
.rb-publication-page .rb-page-contact--inline {
    background: var(--rb-color-primary);
    border-color: var(--rb-color-primary);
}

.article-content .rb-publication-page .rb-page-contact--editorial a,
.article-content .rb-publication-page .rb-page-contact--inline a {
    border-color: rgba(var(--rb-color-background-rgb), 0.22);
}

.rb-publication-page .rb-page-contact--editorial span,
.rb-publication-page .rb-page-contact--inline span {
    color: rgba(var(--rb-color-background-rgb), 0.62);
}

.rb-publication-page .rb-page-contact--editorial strong,
.rb-publication-page .rb-page-contact--inline strong {
    color: var(--rb-color-background);
}

.rb-publication-page .rb-page-contact--editorial a:hover,
.rb-publication-page .rb-page-contact--editorial a:focus-visible,
.rb-publication-page .rb-page-contact--inline a:hover,
.rb-publication-page .rb-page-contact--inline a:focus-visible {
    color: var(--rb-color-background);
    background: rgba(var(--rb-color-background-rgb), 0.08);
}

.rb-contact-intro .rb-page-copy {
    display: grid;
    gap: 16px;
}

.rb-contact-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-content: start;
    padding-top: 52px;
}

.rb-contact-intro h2 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.04;
}

.article-content .rb-contact-intro a {
    color: var(--rb-gold-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rb-contact-directory,
.rb-contact-form-panel {
    width: 100%;
    padding: 58px 0;
    border-bottom: 1px solid var(--rb-rule);
}

.rb-contact-directory > h2,
.rb-contact-form-panel h1,
.rb-contact-form-panel h2,
.rb-contact-response h2 {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-sans);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.04;
}

.rb-contact-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.rb-contact-directory__copy {
    width: 100%;
    margin-top: 22px;
}

.rb-contact-route {
    min-height: 0;
    padding: 18px;
    border: 1px solid var(--rb-rule);
    background: var(--rb-color-background);
}

.rb-contact-route h2 {
    margin: 0 0 9px;
    color: var(--rb-color-primary);
    font-size: 17px;
    line-height: 1.2;
}

.rb-contact-route__person,
.rb-contact-route__role,
.rb-contact-route p {
    margin: 0;
    color: var(--rb-page-muted);
    font-size: 13px;
    line-height: 1.46;
}

.rb-contact-route__person {
    color: var(--rb-color-primary);
    font-weight: 800;
}

.article-content .rb-contact-route a {
    display: inline-flex;
    margin: 10px 0;
    color: var(--rb-gold-dark);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.rb-contact-form-panel {
    align-self: stretch;
    position: static;
    background: transparent;
}

.rb-contact-form-panel > p:not(.rb-page-kicker) {
    max-width: 760px;
    margin: 14px 0 22px;
    color: var(--rb-page-muted);
    font-size: 15px;
    line-height: 1.6;
}

.rb-contact-form-wrap {
    max-width: none;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(var(--rb-color-secondary-rgb), 0.48);
    background: #f2f1ee;
    color: var(--rb-color-primary);
}

.rb-contact-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.rb-contact-form__field--full {
    grid-column: 1 / -1;
}

.rb-contact-form label {
    display: grid;
    gap: 8px;
}

.rb-contact-form label span {
    color: var(--rb-gold-dark);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    line-height: 1.2;
    text-transform: uppercase;
}

.rb-contact-form input,
.rb-contact-form select,
.rb-contact-form textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(var(--rb-color-primary-rgb), 0.16);
    border-radius: 0;
    padding: 12px 13px;
    background: var(--rb-color-background);
    color: var(--rb-color-primary);
    font: inherit;
}

.rb-contact-form input::placeholder,
.rb-contact-form textarea::placeholder {
    color: rgba(var(--rb-color-primary-rgb), 0.42);
}

.rb-contact-form input:focus,
.rb-contact-form select:focus,
.rb-contact-form textarea:focus {
    border-color: var(--rb-gold);
    outline: 2px solid rgba(var(--rb-color-secondary-rgb), 0.26);
    outline-offset: 0;
}

.rb-contact-form textarea {
    min-height: 190px;
    resize: vertical;
}

.rb-contact-form__submit {
    grid-column: 1 / -1;
    min-height: 44px;
    width: min(100%, 360px);
    border: 1px solid var(--rb-gold);
    background: var(--rb-gold);
    color: var(--rb-color-primary);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.rb-contact-form__submit:hover,
.rb-contact-form__submit:focus-visible {
    border-color: var(--rb-gold-dark);
    background: var(--rb-gold-dark);
    color: #ffffff;
}

.rb-contact-form__notice {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(var(--rb-color-secondary-rgb), 0.42);
    color: var(--rb-color-primary);
    background: var(--rb-color-background);
    font-size: 14px;
    line-height: 1.5;
}

.rb-contact-form__notice--success {
    border-color: var(--rb-gold);
    background: rgba(var(--rb-color-secondary-rgb), 0.16);
}

.rb-contact-form__notice--error {
    border-color: var(--rb-color-primary);
}

.rb-contact-form__notice ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

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

.rb-contact-response .rb-page-list {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .rb-contact-page {
        --rb-contact-anchor-offset: 132px;
    }

    .rb-contact-route-grid,
    .rb-contact-form {
        grid-template-columns: 1fr;
    }

    .rb-contact-form__field--full,
    .rb-contact-form__submit {
        grid-column: 1 / -1;
    }

    .rb-contact-form-panel {
        padding: 44px 0;
    }

    .rb-contact-form-wrap {
        padding: 18px;
    }

    .rb-contact-route {
        min-height: 0;
    }
}

.article-sidebar {
    padding-top: 52px;
}

.article-sidebar__label {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin: 0 0 24px;
    padding: 0 12px;
    background: var(--rb-color-background);
    box-shadow: 0 1px 10px rgba(var(--rb-color-primary-rgb), 0.08);
    color: var(--rb-color-primary);
    font-size: 13px;
}

.article-sidebar h2 {
    margin: 0 0 22px;
}

.article-sidebar h2::after {
    content: ">";
    margin-left: 8px;
}

.article-sidebar__list {
    display: grid;
    gap: 0;
}

.article-sidebar__card {
    padding-bottom: 24px;
}

.article-sidebar__card + .article-sidebar__card {
    padding-top: 24px;
}

.article-sidebar__card h3 {
    font-size: 15px;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--rb-rule);
    color: var(--rb-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.article-tags a {
    padding: 5px 9px;
    color: var(--rb-color-primary);
    background: var(--rb-color-surface);
    text-transform: none;
}

.article-post-nav {
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.article-post-nav__link {
    display: grid;
    gap: 7px;
    min-height: 92px;
    padding: 18px;
    border: 1px solid var(--rb-rule);
    color: var(--rb-color-primary);
    font-family: var(--rb-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.28;
}

.article-post-nav__link span {
    color: var(--rb-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.article-post-nav__link--next {
    text-align: right;
}

.article-comments {
    max-width: 760px;
    margin: 44px 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--rb-rule);
}

.article-comments__header {
    margin-bottom: 22px;
}

.article-comments__header h2,
.comment-reply-title {
    margin: 0;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.article-comments__empty,
.article-comments__closed,
.article-comments__login,
.comment-respond {
    padding: 22px;
    border: 1px solid var(--rb-rule);
    background: var(--rb-color-background);
}

.article-comments__empty,
.article-comments__closed,
.article-comments__login p,
.logged-in-as,
.comment-notes {
    margin: 0;
    color: var(--rb-muted);
    font-family: var(--rb-nav);
    font-size: 14px;
    line-height: 1.6;
}

.article-comments__login {
    display: grid;
    gap: 16px;
}

.article-comments__account-name {
    border-color: var(--rb-gold);
}

.article-comments__login-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
}

.article-comments__login-actions a {
    color: var(--rb-color-primary);
}

.article-comments__login-button,
.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid var(--rb-color-primary);
    border-radius: var(--rb-button-radius);
    background: var(--rb-color-primary);
    color: var(--rb-color-background);
    cursor: pointer;
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.comment-list {
    display: grid;
    gap: 18px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.comment-list .children {
    display: grid;
    gap: 14px;
    margin: 16px 0 0 34px;
    padding: 0 0 0 20px;
    border-left: 1px solid var(--rb-rule);
    list-style: none;
}

.comment-body {
    padding: 20px;
    border: 1px solid var(--rb-rule);
    background: var(--rb-color-background);
}

.comment-meta {
    margin: 0;
}

.bypostauthor > .comment-body {
    border-color: var(--rb-gold);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 14px;
    font-weight: 800;
}

.comment-author__content {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.comment-author__line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.comment-author__brand {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    color: var(--rb-muted);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.comment-author .fn,
.comment-author .fn a {
    color: var(--rb-color-primary);
}

.comment-author .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
}

.comment-badge {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 0 7px;
    border: 1px solid var(--rb-rule);
    color: var(--rb-color-primary);
    background: var(--rb-color-surface);
    font-family: var(--rb-nav);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    line-height: 1;
    text-transform: uppercase;
}

.comment-badge--author {
    border-color: var(--rb-color-primary);
    background: var(--rb-color-primary);
    color: var(--rb-color-background);
}

.comment-badge--staff {
    border-color: var(--rb-gold);
    background: var(--rb-color-secondary-soft);
}

.comment-metadata {
    margin: 0;
    font-family: var(--rb-nav);
    font-size: 12px;
}

.comment-metadata a,
.comment-edit-link,
.comment-reply-link,
.comment-reply-login,
.edit-link a {
    color: var(--rb-muted);
}

.comment-content {
    color: var(--rb-color-text);
    font-size: 16px;
    line-height: 1.7;
}

.comment-content p {
    margin: 0 0 14px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-awaiting-moderation {
    display: block;
    margin: 10px 0;
    color: var(--rb-gold);
    font-family: var(--rb-nav);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.reply {
    margin-top: 14px;
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.comment-respond {
    margin-top: 28px;
}

.comment-reply-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.comment-reply-title small {
    font-size: 12px;
}

.comment-form {
    display: grid;
    gap: 16px;
}

.comment-form p {
    margin: 0;
}

.comment-form-comment {
    display: grid;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--rb-color-primary);
    font-family: var(--rb-nav);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    border: 1px solid var(--rb-rule);
    border-radius: 0;
    padding: 13px 14px;
    background: var(--rb-color-background);
    color: var(--rb-color-primary);
    font: inherit;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 2px;
}

.comments-pagination {
    margin: 4px 0 24px;
    font-family: var(--rb-nav);
    font-size: 13px;
    font-weight: 800;
}

.comments-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.comments-pagination a,
.comments-pagination span {
    color: var(--rb-color-primary);
}

.related-stories {
    margin-top: 58px;
    padding-top: 30px;
    border-top: 1px solid var(--rb-rule);
}

.section-kicker {
    margin: 0 0 7px;
    color: var(--rb-muted);
    font-family: var(--rb-nav);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: var(--rb-label-spacing);
    text-transform: uppercase;
}

.section-heading--line {
    margin-bottom: 22px;
}

.section-heading--line h2 {
    font-weight: 700;
}

.related-stories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.related-stories--centered {
    max-width: 1060px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1501px) {
    .home-top {
        left: auto;
        width: auto;
        grid-template-columns: minmax(340px, 0.9fr) minmax(560px, 1fr) minmax(390px, 0.9fr);
        column-gap: 40px;
        transform: none;
    }

    .home-lead h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .home-lead__copy p {
        max-width: 360px;
        font-size: 14px;
        line-height: 1.7;
    }

    .home-lead__image {
        aspect-ratio: 1.43;
    }

    .story-card--headline h3 {
        font-size: 16px;
        line-height: 1.35;
    }
}

@media (max-width: 1500px) {
    .topic-row__inner {
        width: min(var(--rb-max), calc(100% - 40px));
    }

    .nav-row {
        width: min(var(--rb-header-max), calc(100% - 40px));
    }

    .home-top {
        grid-template-columns: minmax(230px, 0.58fr) minmax(560px, 1.35fr) minmax(330px, 0.88fr);
        column-gap: 40px;
    }

    .home-top.home-top--events {
        grid-template-columns: minmax(240px, 0.76fr) minmax(560px, 1.28fr) minmax(240px, 0.76fr);
    }

    .home-lead h1 {
        font-size: 40px;
    }
}

@media (max-width: 1180px) {
    .newsletter-button {
        padding: 0 10px;
    }

    .header-tools {
        gap: 10px;
    }

    .site-nav__list {
        gap: 10px;
    }

    .header-account-actions--desktop {
        gap: 6px;
        font-size: 12px;
    }

    .header-account-link {
        padding: 0 9px;
    }

    .home-top,
    .feature-layout,
    .beauty-layout {
        gap: 24px;
    }

    .home-top {
        grid-template-columns: minmax(260px, 0.85fr) minmax(390px, 1.3fr) minmax(260px, 0.9fr);
    }

    .home-top.home-top--events {
        grid-template-columns: minmax(220px, 0.76fr) minmax(460px, 1.28fr) minmax(220px, 0.76fr);
    }

    .four-grid,
    .more-grid,
    .archive-grid,
    .beauty-grid {
        gap: 24px;
    }

    .feature-layout {
        grid-template-columns: minmax(360px, 1.05fr) minmax(230px, 0.52fr) minmax(280px, 0.68fr);
    }

    .feature-lead h3 {
        font-size: clamp(30px, 2.6vw, 36px);
    }

    .story-card--middle-feature h3 {
        font-size: clamp(24px, 2.1vw, 28px);
    }

    .beauty-layout {
        grid-template-columns: 220px minmax(260px, 0.85fr) minmax(330px, 1.15fr);
        gap: 28px 30px;
    }

    .beauty-feature {
        grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
        gap: 28px;
    }

    .home-cta {
        padding: 44px 22px 24px;
    }

    .home-cta h3 {
        font-size: 29px;
    }
}

@media (min-width: 1101px) and (max-width: 1350px) {
    .site-main {
        padding-top: 84px;
    }

    .not-found-main {
        padding-top: 36px;
    }
}

@media (max-width: 1100px) {
    body {
        --rb-mobile-admin-offset: 0px;
        --rb-mobile-header-offset: 100px;
    }

    body.admin-bar {
        --rb-mobile-admin-offset: 32px;
    }

    .site-header {
        position: sticky;
        z-index: 60;
        top: var(--rb-mobile-admin-offset);
    }

    .sticky-nav-stack {
        top: calc(var(--rb-mobile-admin-offset) + var(--rb-mobile-header-offset));
    }

    body.admin-bar .sticky-nav-stack {
        top: calc(var(--rb-mobile-admin-offset) + var(--rb-mobile-header-offset));
    }

    .brand-row,
    .nav-row,
    .topic-row {
        display: none;
    }

    .mobile-mainbar,
    .mobile-topic-row {
        display: flex;
    }

    .mobile-mainbar {
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        padding: 0 12px;
        border-bottom: 1px solid var(--rb-rule);
    }

    .mobile-mainbar__side {
        display: flex;
        align-items: center;
        flex: 1 1 0;
        min-width: 0;
    }

    .mobile-mainbar__side--left {
        justify-content: flex-start;
    }

    .mobile-mainbar__side--right {
        justify-content: flex-end;
        gap: 6px;
    }

    .site-brand--mobile img {
        width: 56px;
        height: 56px;
    }

    .icon-button,
    .account-icon {
        min-width: 36px;
        min-height: 36px;
        padding: 0;
        color: var(--rb-color-primary);
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .account-icon {
        display: inline-grid;
        place-items: center;
    }

    .account-icon svg {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .mobile-menu-toggle svg {
        width: 25px;
        height: 25px;
    }

    .mobile-panel {
        max-height: calc(100vh - var(--rb-mobile-admin-offset) - var(--rb-mobile-header-offset));
        max-height: calc(100dvh - var(--rb-mobile-admin-offset) - var(--rb-mobile-header-offset));
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid var(--rb-rule);
    }

    .mobile-panel.is-open {
        display: block;
    }

    .mobile-account-popover {
        position: absolute;
        z-index: 80;
        top: calc(100% + 8px);
        right: 10px;
        display: grid;
        width: min(330px, calc(100vw - 20px));
        gap: 14px;
        padding: 16px;
        background: var(--rb-color-background);
        border: 1px solid var(--rb-rule);
        box-shadow: 0 18px 40px rgba(var(--rb-color-primary-rgb), 0.14);
    }

    .mobile-account-popover[hidden] {
        display: none;
    }

    .mobile-account-popover__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        font-family: var(--rb-nav);
        font-size: 13px;
        line-height: 1;
        text-transform: uppercase;
    }

    .mobile-account-popover__close {
        display: inline-grid;
        place-items: center;
        width: 32px;
        height: 32px;
        padding: 0;
        color: var(--rb-color-primary);
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-account-popover__close svg {
        width: 18px;
        height: 18px;
    }

    .mobile-account-popover p {
        margin: 0;
        color: var(--rb-color-muted);
        font-size: 14px;
        line-height: 1.45;
    }

    .mobile-account-popover__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mobile-account-popover .header-account-link {
        min-height: 42px;
    }

    .mobile-panel .site-nav__list {
        display: grid;
        gap: 0;
        min-width: 0;
        padding: 6px 18px 14px;
    }

    .mobile-panel .site-nav__list a {
        min-height: 38px;
        border-bottom: 1px solid var(--rb-soft-rule);
    }

    .mobile-panel .site-nav__list .sub-menu {
        position: static;
        min-width: 0;
        padding: 0 0 8px 14px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .mobile-panel .site-nav__list .sub-menu a {
        min-height: 34px;
        color: var(--rb-color-muted);
        font-size: 13px;
    }

    .header-account-actions--mobile {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 8px 18px 18px;
    }

    .header-account-actions--mobile .header-account-link {
        min-height: 40px;
    }

    .header-account-actions--mobile .header-account-link:only-child {
        grid-column: 1 / -1;
    }

    .mobile-topic-row {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        overscroll-behavior-x: contain;
        border-bottom: 1px solid var(--rb-rule);
    }

    .mobile-topic-row::-webkit-scrollbar {
        display: none;
    }

    .topic-nav {
        display: flex;
        gap: 26px;
        min-width: max-content;
        padding: 0 14px;
    }

    .topic-nav a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        font-family: var(--rb-nav);
        font-size: 14px;
    }

    .site-main,
    .footer-main,
    .footer-bottom__inner {
        width: min(100% - 18px, var(--rb-max));
    }

    .site-main {
        padding-top: 14px;
    }

    .home-main.home-main--events {
        padding-top: 0;
    }

    .home-top {
        display: block;
        padding-top: 10px;
    }

    .home-main--events .home-top.home-top--events {
        margin-top: 12px;
        padding-top: 0;
    }

    .home-lead {
        display: flex;
        flex-direction: column-reverse;
        gap: 18px;
    }

    .home-lead h1 {
        font-size: clamp(30px, 7vw, 40px);
    }

    .home-side-list,
    .home-today-list,
    .home-events-list {
        margin-top: 24px;
    }

    .headline-strip,
    .four-grid,
    .more-grid,
    .archive-grid,
    .beauty-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .author-profile-hero {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
        gap: 30px;
    }

    .author-profile-hero h1 {
        font-size: 62px;
    }

    .author-profile-bio {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 28px;
    }

    .feature-layout,
    .beauty-layout,
    .beauty-feature,
    .footer-main {
        display: block;
    }

    .newsletter-band {
        grid-template-columns: 1fr;
        width: calc(100% + 18px);
        margin-right: -9px;
        margin-left: -9px;
        padding: 56px 20px 50px;
    }

    .newsletter-band::after {
        bottom: 22px;
    }

    .newsletter-band__content {
        max-width: none;
    }

    .newsletter-band__benefits {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 9px;
    }

    .newsletter-band__actions {
        display: grid;
        width: min(100%, 340px);
        margin-top: 28px;
    }

    .newsletter-band a {
        width: min(100%, 340px);
        margin-top: 28px;
    }

    .newsletter-band__actions a {
        width: 100%;
        margin-top: 0;
    }

    .feature-side,
    .beauty-grid {
        margin-top: 26px;
    }

    .home-cta {
        min-height: auto;
        margin-bottom: 28px;
    }

    .beauty-feature__copy {
        margin-top: 18px;
    }

    .footer-main {
        padding-top: 42px;
    }

    .footer-menu {
        margin-top: 36px;
    }

    .events-footer__inner,
    .events-footer__bottom-inner {
        width: min(100% - 18px, var(--rb-max));
    }

    .events-footer__inner {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 30px;
        align-items: start;
        padding: 38px 0 32px;
    }

    .events-footer__index {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        padding-top: 0;
        text-align: center;
    }

    .events-footer__bottom-inner {
        gap: 10px 18px;
        min-height: auto;
        padding: 18px 0 20px;
    }

    .article-main {
        width: min(100% - 18px, var(--rb-max));
        padding-top: 34px;
    }

    .site-main.article-main--image-overlay {
        width: 100%;
        padding-top: 0;
    }

    .article-page {
        display: block;
    }

    .article-hero {
        margin-bottom: 28px;
    }

    .article-hero h1 {
        margin: 18px 0 20px;
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.125;
    }

    .article-hero__overlay-frame {
        min-height: clamp(470px, 68vw, 700px);
    }

    .article-hero__image--overlay img {
        height: clamp(470px, 68vw, 700px);
    }

    .article-page--image-overlay .article-hero__overlay-content h1 {
        font-size: clamp(38px, 7.8vw, 64px);
        line-height: 1;
    }

    .article-dek {
        font-size: 18px;
    }

    .article-meta-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .article-sharebar {
        justify-content: flex-start;
    }

    .rb-article-tts {
        margin-bottom: 24px;
    }

    .rb-article-tts__surface {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        align-items: center;
    }

    .rb-article-tts__topline {
        flex-wrap: wrap;
    }

    .rb-article-tts__status {
        flex-basis: 100%;
    }

    .article-hero__image {
        margin-top: 24px;
    }

    .article-toc {
        padding: 24px 18px 26px;
    }

    .article-toc__list {
        gap: 0 24px;
        padding-right: 0;
    }

    .article-toc__item a,
    .article-toc__label {
        font-size: 15px;
    }

    .article-content {
        font-size: 17px;
    }

    .rb-page-hero,
    .rb-page-hero--profile,
    .rb-page-metrics,
    .rb-page-section,
    .rb-editor-panel,
    .rb-service-grid,
    .rb-page-contact,
    .rb-page-contact--two {
        grid-template-columns: 1fr;
    }

    .rb-page-hero {
        min-height: 0;
        gap: 34px;
        padding: 42px 0 40px;
    }

    .rb-page-title {
        font-size: clamp(42px, 13vw, 56px);
    }

    .rb-page-dek {
        font-size: 21px;
    }

    .rb-page-brand-card {
        padding: 24px 0 0;
        border-top: 1px solid var(--rb-rule);
        border-left: 0;
    }

    .rb-page-brand-card img {
        width: 150px;
    }

    .rb-page-metric,
    .rb-page-metric + .rb-page-metric,
    .article-content .rb-page-contact a {
        padding-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--rb-rule);
    }

    .rb-page-metric:last-child,
    .article-content .rb-page-contact a:last-child {
        border-bottom: 0;
    }

    .rb-page-section {
        gap: 26px;
        padding: 44px 0;
    }

    .rb-editor-panel {
        padding: 22px;
    }

    .rb-editor-panel img,
    .rb-page-portrait {
        max-width: 260px;
    }

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

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

    .not-found-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 42px 0 46px;
    }

    .not-found-hero h1 {
        font-size: clamp(40px, 7vw, 56px);
    }

    .not-found-search {
        width: min(100%, 480px);
    }

    .not-found-briefing {
        max-width: 720px;
        padding-top: 26px;
        padding-left: 0;
        border-top: 1px solid var(--rb-rule);
        border-left: 0;
    }

    .not-found-directory {
        padding-top: 36px;
    }

    .not-found-section-links {
        gap: 10px 0;
    }

    .not-found-section-links a {
        padding-right: 24px;
        padding-left: 24px;
    }

    .article-post-nav__link--next {
        text-align: left;
    }

    .article-sidebar {
        padding-top: 34px;
        border-top: 1px solid var(--rb-rule);
    }
}

@media (max-width: 782px) {
    body.admin-bar {
        --rb-mobile-admin-offset: 46px;
    }

    body.admin-bar #wpadminbar {
        position: fixed;
        z-index: 99999;
    }
}

@media (min-width: 981px) and (max-width: 1100px) {
    body {
        --rb-mobile-header-offset: 100px;
    }

    .mobile-mainbar {
        min-height: 52px;
    }

    .site-brand--mobile img {
        width: 54px;
        height: 54px;
    }

    .site-main,
    .footer-main,
    .footer-bottom__inner {
        width: min(100% - 40px, var(--rb-max));
    }

    .site-main {
        padding-top: 10px;
    }

    .home-main.home-main--events {
        padding-top: 0;
    }

    .home-top {
        display: grid;
        grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.95fr);
        gap: 18px 32px;
        padding-top: 0;
    }

    .home-top.home-top--events {
        margin-top: 12px;
    }

    .home-lead {
        display: contents;
    }

    .home-lead__copy,
    .home-top--events .home-lead__copy {
        grid-column: 1;
        grid-row: 1;
    }

    .home-lead__image,
    .home-top--events .home-lead__image {
        grid-column: 2;
        grid-row: 1;
        aspect-ratio: 1.25;
    }

    .home-top--events .headline-strip {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .home-lead h1 {
        font-size: clamp(32px, 3.8vw, 40px);
        line-height: 1.2;
    }

    .home-lead__copy p {
        max-width: 560px;
        font-size: 14px;
        line-height: 1.7;
    }

    .home-side-list,
    .home-today-list,
    .home-events-list {
        display: none;
    }
}

@media (max-width: 620px) {
    .headline-strip,
    .four-grid,
    .more-grid,
    .archive-grid,
    .beauty-grid {
        grid-template-columns: 1fr;
    }

    .story-card--side {
        grid-template-columns: minmax(0, 1fr) 88px;
        gap: 10px;
    }

    .story-card--side h3,
    .story-card--grid h3 {
        font-size: 16px;
    }

    .section-block,
    .feature-section {
        padding-bottom: 34px;
    }

    .author-profile-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 22px;
    }

    .author-profile-card {
        width: min(100%, 320px);
    }

    .author-profile-hero h1 {
        font-size: 46px;
    }

    .author-profile-hero__dek {
        font-size: 18px;
    }

    .author-profile-bio {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 0;
    }

    .author-profile-actions {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .author-profile-actions__primary {
        width: 100%;
    }

    .author-profile-stories .section-heading {
        display: grid;
        gap: 12px;
    }

    .author-profile-links a,
    .author-profile-beats li {
        width: 100%;
        justify-content: center;
    }

    .newsletter-band h2 {
        font-size: 40px;
        line-height: 1.04;
    }

    .newsletter-band__dek {
        font-size: 16px;
    }

    .footer-menu__list {
        display: block;
    }

    .footer-menu__list li {
        margin-bottom: 8px;
    }

    .footer-menu__list li + li::before {
        content: "";
        margin: 0;
    }

    .site-footer--events {
        margin-top: 32px;
    }

    .events-footer__inner {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 22px 20px;
        padding: 30px 0 26px;
    }

    .events-footer__logo {
        margin-top: 2px;
    }

    .events-footer__index {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        padding-top: 18px;
        border-top: 1px solid var(--rb-soft-rule);
        text-align: center;
    }

    .events-footer__logo img {
        width: 72px;
    }

    .events-footer__kicker {
        margin: 0 0 7px;
        font-size: 10px;
        line-height: 1.15;
    }

    .events-footer__about {
        font-size: 14px;
        line-height: 1.45;
    }

    .events-footer__index-group h2 {
        font-size: 11px;
        margin-bottom: 9px;
    }

    .events-footer__index-group ul {
        gap: 6px;
    }

    .events-footer__index-group a {
        font-size: 12px;
        line-height: 1.28;
    }

    .events-footer__legal {
        flex-wrap: wrap;
    }

    .article-byline {
        align-items: center;
    }

    .article-byline img {
        display: none;
    }

    .article-meta-row {
        padding-bottom: 18px;
    }

    .article-meta-line {
        gap: 5px 10px;
    }

    .article-page--image-overlay .article-dek,
    .article-page--image-overlay .article-meta-row,
    .article-page--image-overlay .article-comment-jump,
    .article-page--image-overlay .article-toc,
    .article-page--image-overlay .article-content,
    .article-page--image-overlay .article-comments,
    .article-page--image-overlay .rb-article-tts,
    .article-main--image-overlay .related-stories--centered {
        width: calc(100% - 28px);
    }

    .article-page--image-overlay .article-hero__image--overlay {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .article-hero__overlay-frame {
        min-height: clamp(500px, 130vw, 680px);
    }

    .article-hero__overlay-frame::after {
        background:
            linear-gradient(180deg, rgba(var(--rb-color-primary-rgb), 0) 0%, rgba(var(--rb-color-primary-rgb), 0.03) 34%, rgba(var(--rb-color-primary-rgb), 0.5) 60%, rgba(var(--rb-color-primary-rgb), 0.9) 78%, rgba(var(--rb-color-primary-rgb), 0.98) 100%),
            linear-gradient(180deg, transparent 46%, rgba(var(--rb-color-primary-rgb), 0.68) 78%, rgba(var(--rb-color-primary-rgb), 0.96) 100%),
            linear-gradient(90deg, rgba(var(--rb-color-primary-rgb), 0.18) 0%, rgba(var(--rb-color-primary-rgb), 0.08) 48%, transparent 78%);
    }

    .article-hero__image--overlay img {
        height: clamp(500px, 130vw, 680px);
    }

    .article-hero__overlay-content {
        right: 18px;
        bottom: 24px;
        left: 18px;
    }

    .article-hero__overlay-content .story-tax {
        font-size: 10px;
    }

    .article-page--image-overlay .article-hero__overlay-content h1 {
        margin-top: 10px;
        font-size: clamp(28px, 8.4vw, 38px);
        line-height: 1.08;
    }

    .article-published,
    .article-updated,
    .article-author-line,
    .article-read-time,
    .article-comments-link,
    .article-sharebar__toggle {
        font-size: 12px;
    }

    .article-sharebar {
        gap: 0;
    }

    .article-toc {
        margin-bottom: 28px;
        padding: 22px 16px 24px;
    }

    .article-toc__title {
        font-size: 24px;
    }

    .article-toc__list {
        grid-template-columns: 1fr;
        padding-top: 22px;
    }

    .article-comment-jump {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-comment-jump + .article-toc {
        margin-top: -10px;
    }

    .article-comments {
        margin-top: 34px;
        padding-top: 26px;
    }

    .article-comments__header h2,
    .comment-reply-title {
        font-size: 21px;
    }

    .comment-list .children {
        margin-left: 12px;
        padding-left: 14px;
    }

    .comment-body,
    .article-comments__login,
    .comment-respond {
        padding: 18px;
    }

    .comment-metadata {
        margin-left: 0;
    }

    .related-stories__grid {
        grid-template-columns: 1fr;
    }

    .not-found-main {
        width: min(calc(100% - 20px), 1308px);
        padding-top: 18px;
    }

    .not-found-hero {
        gap: 28px;
        padding: 30px 0 36px;
        border-top: 0;
    }

    .not-found-hero h1 {
        max-width: 8.2em;
        font-size: clamp(32px, 8.8vw, 38px);
        line-height: 1.06;
    }

    .not-found-hero__copy > p:not(.section-kicker) {
        max-width: 22em;
        font-size: 16px;
    }

    .not-found-search {
        width: 100%;
        margin-top: 26px;
    }

    .not-found-search__form {
        grid-template-columns: minmax(0, 1fr) 50px;
        min-height: 56px;
    }

    .not-found-search__field {
        min-height: 56px;
        padding-left: 54px;
        font-size: 16px;
    }

    .not-found-search__submit {
        width: 50px;
        min-height: 56px;
    }

    .not-found-search__form label::before {
        left: 18px;
    }

    .not-found-search__form label::after {
        left: 33px;
    }

    .not-found-actions {
        display: grid;
        gap: 14px;
    }

    .not-found-button {
        min-width: 0;
        width: 100%;
    }

    .not-found-briefing {
        width: 100%;
        max-width: 100%;
        padding-top: 22px;
    }

    .not-found-briefing__header {
        align-items: flex-start;
    }

    .not-found-briefing__item a {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .not-found-briefing__body {
        max-width: 100%;
        gap: 6px;
    }

    .not-found-briefing__media {
        width: min(150px, 44vw);
    }

    .not-found-briefing__item time {
        white-space: normal;
    }

    .not-found-briefing__item strong {
        max-width: calc(100vw - 32px);
        font-size: 16px;
        line-height: 1.24;
    }

    .not-found-directory {
        padding: 30px 0 36px;
    }

    .not-found-section-links {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .not-found-section-links a,
    .not-found-section-links a:last-child {
        justify-content: space-between;
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid var(--rb-soft-rule);
    }
}

@media (max-width: 1100px) {
    .rb-retail-card--lead {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .rb-retail-card--lead .rb-retail-card__title {
        font-size: clamp(28px, 4vw, 38px);
    }

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

    .rb-retail-card--tail {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 20px;
    }

    .rb-retail-card--tail .rb-retail-card__title {
        font-size: 19px;
    }

    .retail-follow-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
}

@media (max-width: 760px) {
    .retail-archive-hero {
        padding: 26px 0 22px;
    }

    .retail-archive-hero h1 {
        font-size: clamp(44px, 14vw, 64px);
    }

    .retail-archive-hero__kicker {
        flex-wrap: wrap;
    }

    .retail-tag-filter {
        display: grid;
        gap: 12px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .retail-tag-filter__label {
        padding-top: 0;
    }

    .retail-tag-filter__list {
        display: flex;
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .retail-tag-filter__list::-webkit-scrollbar {
        display: none;
    }

    .retail-tag-filter__link {
        flex: 0 0 auto;
        justify-content: center;
        min-height: 36px;
        font-size: 12px;
        white-space: nowrap;
    }

    .retail-tag-filter__clear {
        align-self: start;
        justify-self: start;
        margin-left: 0;
    }

    .retail-follow-card {
        padding: 18px 18px 20px;
    }

    .retail-follow-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .retail-follow-card__btn {
        justify-content: center;
    }

    .rb-retail-lead {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .rb-retail-card--lead {
        gap: 16px;
    }

    .rb-retail-card--lead .rb-retail-card__title {
        font-size: clamp(26px, 7vw, 34px);
    }

    .rb-retail-card--lead .rb-retail-card__dek {
        font-size: 15px;
    }

    .rb-retail-secondary {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .rb-retail-card--tail {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
    }

    .rb-retail-card--tail .rb-retail-card__title {
        font-size: 17px;
        line-height: 1.25;
    }

    .rb-retail-card--tail .rb-retail-card__tag {
        font-size: 10px;
        margin-bottom: 6px;
    }
}

.scroll-to-top {
    position: fixed;
    z-index: 60;
    right: calc(22px + env(safe-area-inset-right, 0px));
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--rb-color-background);
    background: var(--rb-gold);
    border: 1px solid var(--rb-gold);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(var(--rb-color-secondary-rgb), 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    visibility: hidden;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.scroll-to-top.is-visible {
    opacity: 0.96;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    color: var(--rb-color-background);
    background: var(--rb-gold-dark);
    border-color: var(--rb-gold-dark);
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

@media (max-width: 620px) {
    .scroll-to-top {
        right: calc(16px + env(safe-area-inset-right, 0px));
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-to-top {
        transition: none;
    }
}

@media (max-width: 980px) {
    .rb-publication-page {
        --rb-page-hero-min: 0;
        padding-top: 0;
    }

    .rb-publication-page .rb-page-hero,
    .rb-publication-page .rb-page-hero--profile,
    .rb-publication-page .rb-page-section {
        grid-template-columns: 1fr;
    }

    .rb-publication-page .rb-page-hero {
        gap: 34px;
        padding: 48px 0 42px;
    }

    .rb-publication-page .rb-page-hero::before {
        display: none;
    }

    .rb-page-cover,
    .rb-page-cover--portrait,
    .rb-page-cover--portrait img {
        min-height: 0;
    }

    .rb-page-cover {
        width: min(100%, 440px);
    }

    .rb-page-cover--brand {
        min-height: 330px;
    }

    .rb-page-cover--portrait img {
        aspect-ratio: 4 / 5;
    }

    .rb-page-index {
        grid-template-columns: 1fr;
    }

    .rb-page-index__item,
    .rb-page-index__item + .rb-page-index__item {
        min-height: 96px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--rb-rule);
    }

    .rb-page-index__item:last-child {
        border-bottom: 0;
    }

    .rb-publication-page .rb-page-section {
        gap: 28px;
        padding: 52px 0;
    }

    .rb-publication-page .rb-page-section h2,
    .rb-page-stack,
    .rb-page-feature,
    .rb-service-grid--editorial,
    .rb-publication-page .rb-page-quote--large {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .rb-publication-page .rb-page-hero {
        gap: 24px;
        padding: 34px 0 30px;
    }

    .rb-publication-page .rb-page-title {
        font-size: clamp(56px, 18vw, 76px);
        line-height: 0.9;
    }

    .rb-publication-page .rb-page-title--profile {
        font-size: clamp(48px, 15vw, 64px);
    }

    .rb-publication-page .rb-page-dek {
        font-size: 23px;
        line-height: 1.14;
    }

    .rb-publication-page .rb-page-actions,
    .rb-page-feature,
    .rb-service-grid--editorial,
    .rb-publication-page .rb-page-contact--editorial,
    .rb-publication-page .rb-page-contact--inline {
        grid-template-columns: 1fr;
    }

    .rb-publication-page .rb-page-actions {
        display: grid;
    }

    .rb-editor-page .rb-page-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rb-editor-page .rb-page-summary {
        display: none;
    }

    .article-content .rb-publication-page .rb-page-button {
        width: 100%;
    }

    .rb-page-cover {
        width: min(100%, 320px);
    }

    .rb-page-cover--brand {
        min-height: 220px;
    }

    .rb-page-cover--brand .rb-page-cover__logo {
        width: min(62%, 180px);
    }

    .rb-page-cover--portrait {
        width: min(100%, 300px);
    }

    .rb-page-cover--portrait img {
        height: 340px;
        min-height: 0;
    }

    .rb-editor-page .rb-page-cover--portrait {
        width: min(100%, 260px);
    }

    .rb-editor-page .rb-page-cover--portrait img {
        height: 280px;
    }

    .rb-page-cover figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .rb-publication-page .rb-page-section h2 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .rb-publication-page .rb-service-item {
        min-height: 0;
    }

    .rb-publication-page .rb-page-contact--editorial,
    .rb-publication-page .rb-page-contact--inline {
        margin-bottom: 44px;
    }

    .article-content .rb-publication-page .rb-page-contact--editorial a,
    .article-content .rb-publication-page .rb-page-contact--inline a {
        border-right: 0;
        border-bottom: 1px solid rgba(var(--rb-color-background-rgb), 0.22);
    }

    .article-content .rb-publication-page .rb-page-contact--editorial a:last-child,
    .article-content .rb-publication-page .rb-page-contact--inline a:last-child {
        border-bottom: 0;
    }
}
