.rb-newsroom {
    --rb-news-paper: #f5f3ee;
    --rb-news-ink: #111214;
    --rb-news-muted: #65676b;
    --rb-news-line: #d9d7d1;
    --rb-news-accent: #9b7639;
    width: min(100% - 64px, 1400px);
    max-width: none;
    margin-inline: auto;
    padding: 0 0 88px;
    color: var(--rb-news-ink);
}

.rb-newsroom h1,
.rb-newsroom h2,
.rb-newsroom h3,
.rb-newsroom p,
.rb-newsroom figure,
.rb-newsroom ul {
    margin-top: 0;
}

.rb-newsroom a {
    color: inherit;
}

.rb-newsroom__masthead {
    padding: clamp(50px, 7vw, 94px) 0 0;
    border-bottom: 1px solid var(--rb-news-line);
}

.rb-newsroom__eyebrow,
.rb-newsroom-report__type {
    margin: 0 0 14px;
    color: var(--rb-news-accent);
    font-family: var(--rb-nav);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.rb-newsroom__masthead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(320px, .58fr);
    gap: clamp(44px, 8vw, 124px);
    align-items: end;
    padding-bottom: clamp(34px, 5vw, 64px);
}

.rb-newsroom__masthead h1 {
    max-width: 930px;
    margin: 0;
    font-family: var(--rb-serif);
    font-size: clamp(58px, 8vw, 116px);
    font-weight: var(--rb-serif-weight);
    line-height: .88;
    letter-spacing: -.055em;
}

.rb-newsroom__intro p {
    max-width: 510px;
    margin: 0;
    color: #34363a;
    font-family: var(--rb-sans);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.55;
}

.rb-newsroom__topics {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 64px;
    padding: 12px 0;
    border-top: 1px solid var(--rb-news-line);
    font-family: var(--rb-nav);
}

.rb-newsroom__topics > span {
    color: var(--rb-news-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.rb-newsroom__topics ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rb-newsroom__topics a {
    position: relative;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
    text-decoration: none;
}

.rb-newsroom__topics a::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.rb-newsroom__topics a:hover::after,
.rb-newsroom__topics a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.rb-newsroom > .archive-hero {
    margin-top: clamp(42px, 5vw, 72px);
}

.rb-newsroom-reports {
    margin-top: clamp(58px, 7vw, 96px);
    background: transparent;
}

.rb-newsroom__section-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--rb-news-ink);
}

.rb-newsroom__section-head h2 {
    margin: 0;
    font-family: var(--rb-serif);
    font-size: clamp(40px, 4.5vw, 67px);
    font-weight: var(--rb-serif-weight);
    line-height: .98;
    letter-spacing: -.035em;
}

.rb-newsroom__section-head .rb-newsroom__eyebrow {
    margin-bottom: 8px;
}

.rb-newsroom__all-link {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    min-height: 38px;
    font-family: var(--rb-nav);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
}

.rb-newsroom__all-link span {
    color: var(--rb-news-accent);
    font-size: 19px;
    transition: transform 180ms ease;
}

.rb-newsroom__all-link:hover span,
.rb-newsroom__all-link:focus-visible span {
    transform: translateX(4px);
}

.rb-newsroom-reports__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
    border-top: 1px solid #c9c5bc;
    border-left: 1px solid #c9c5bc;
}

.rb-newsroom-report__image {
    display: block;
    overflow: hidden;
    background: #e4e1da;
}

.rb-newsroom-report__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms cubic-bezier(.2, .7, .2, 1);
}

.rb-newsroom-report:hover .rb-newsroom-report__image img,
.rb-newsroom-report:focus-within .rb-newsroom-report__image img {
    transform: scale(1.025);
}

.rb-newsroom-report--tile {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-right: 1px solid #c9c5bc;
    border-bottom: 1px solid #c9c5bc;
    background: #fff;
}

.rb-newsroom-report__media-frame {
    padding: clamp(18px, 2.2vw, 32px);
    background: var(--rb-news-paper);
    border-bottom: 1px solid #c9c5bc;
}

.rb-newsroom-report--tile .rb-newsroom-report__image {
    aspect-ratio: 4 / 5;
}

.rb-newsroom-report--tile .rb-newsroom-report__image img {
    object-fit: contain;
}

.rb-newsroom-report h3 {
    margin: 0;
    font-family: var(--rb-serif);
    font-weight: var(--rb-serif-weight);
    letter-spacing: -.018em;
}

.rb-newsroom-report h3 a {
    text-decoration: none;
}

.rb-newsroom-report h3 a:hover,
.rb-newsroom-report h3 a:focus-visible {
    color: #684916;
}

.rb-newsroom-report--tile .rb-newsroom-report__copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 218px;
    padding: 27px 25px 28px;
}

.rb-newsroom-report__heading-row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
}

.rb-newsroom-report__number {
    color: var(--rb-news-accent);
    font-family: var(--rb-nav);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .08em;
}

.rb-newsroom-report--tile h3 {
    font-size: clamp(22px, 1.75vw, 29px);
    line-height: 1.08;
}

.rb-newsroom-report__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: auto 0 0 36px;
    padding-top: 22px;
    color: var(--rb-news-muted);
    font-family: var(--rb-nav);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rb-newsroom-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
    gap: clamp(48px, 6vw, 86px);
    align-items: start;
    width: min(100%, 1280px);
    margin: clamp(72px, 9vw, 126px) auto 0;
}

.rb-newsroom-feed {
    width: 100%;
    margin: 0;
}

.rb-newsroom-feed__head > p {
    max-width: 430px;
    margin: 0 0 4px;
    color: var(--rb-news-muted);
    font-family: var(--rb-sans);
    font-size: 14px;
    line-height: 1.5;
}

.rb-newsroom-list {
    border-bottom: 1px solid var(--rb-news-line);
}

.rb-newsroom .rb-newsroom-list__item {
    display: grid;
    grid-template-columns: minmax(260px, 35%) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 58px);
    padding: 30px 0;
    border-top: 1px solid var(--rb-news-line);
}

.rb-newsroom .rb-newsroom-list__item:first-child {
    border-top: 0;
}

.rb-newsroom .rb-newsroom-list__item .story-card__image {
    align-self: start;
    aspect-ratio: 16 / 10;
    margin: 0;
    background: #eceae5;
}

.rb-newsroom .rb-newsroom-list__item .story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms cubic-bezier(.2, .7, .2, 1);
}

.rb-newsroom .rb-newsroom-list__item:hover .story-card__image img,
.rb-newsroom .rb-newsroom-list__item:focus-within .story-card__image img {
    transform: scale(1.02);
}

.rb-newsroom .rb-newsroom-list__item .story-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.rb-newsroom .rb-newsroom-list__item h3 {
    order: 1;
    margin: 0;
    font-family: var(--rb-serif);
    font-size: clamp(26px, 2.15vw, 34px);
    font-weight: var(--rb-serif-weight);
    line-height: 1.1;
    letter-spacing: -.018em;
}

.rb-newsroom .rb-newsroom-list__item h3 a {
    color: inherit;
    text-decoration: none;
}

.rb-newsroom .rb-newsroom-list__item h3 a:hover,
.rb-newsroom .rb-newsroom-list__item h3 a:focus-visible {
    color: #684916;
}

.rb-newsroom .rb-newsroom-list__item > .story-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    order: 2;
    max-width: 720px;
    margin: 14px 0 0;
    color: #505257;
    font-family: var(--rb-sans);
    font-size: 15px;
    line-height: 1.55;
}

.rb-newsroom .rb-newsroom-list__item .story-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    order: 3;
    margin-top: auto;
    padding-top: 20px;
}

.rb-newsroom .rb-newsroom-list__item .story-tax,
.rb-newsroom .rb-newsroom-list__item .story-meta {
    display: flex;
    gap: 9px;
    align-items: center;
    margin: 0;
    color: var(--rb-news-muted);
    font-family: var(--rb-nav);
    font-size: 9px;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.rb-newsroom .rb-newsroom-list__item .story-tax a,
.rb-newsroom .rb-newsroom-list__item .story-meta a {
    min-height: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    text-decoration: none;
}

.rb-newsroom .rb-newsroom-list__item .story-tax a:hover,
.rb-newsroom .rb-newsroom-list__item .story-tax a:focus-visible,
.rb-newsroom .rb-newsroom-list__item .story-meta a:hover,
.rb-newsroom .rb-newsroom-list__item .story-meta a:focus-visible {
    color: #684916;
    background: transparent;
}

.rb-newsroom .rb-newsroom-list__item .story-tax {
    order: 1;
}

.rb-newsroom .rb-newsroom-list__item .story-meta {
    order: 2;
}

.rb-newsroom-pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 116px;
    margin: 0;
    border-bottom: 1px solid var(--rb-news-line);
}

.rb-newsroom-pagination > .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rb-newsroom-pagination .page-numbers li {
    margin: 0;
}

.rb-newsroom-pagination .page-numbers li > a,
.rb-newsroom-pagination .page-numbers li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 48px;
    padding: 0 14px;
    color: var(--rb-news-ink);
    background: #fff;
    border: 1px solid var(--rb-news-line);
    border-radius: 0;
    font-family: var(--rb-nav);
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.rb-newsroom-pagination .page-numbers li > .prev,
.rb-newsroom-pagination .page-numbers li > .next {
    min-width: 116px;
    padding-inline: 22px;
}

.rb-newsroom-pagination .page-numbers li > .current {
    color: #fff;
    background: var(--rb-news-ink);
    border-color: var(--rb-news-ink);
}

.rb-newsroom-pagination .page-numbers li > a:hover,
.rb-newsroom-pagination .page-numbers li > a:focus-visible {
    color: #fff;
    background: var(--rb-news-ink);
    border-color: var(--rb-news-ink);
}

.rb-newsroom-pagination .page-numbers li > .dots {
    min-width: 30px;
    padding-inline: 4px;
    color: var(--rb-news-muted);
    background: transparent;
    border-color: transparent;
}

.rb-newsroom-sidebar {
    min-width: 0;
    border-top: 3px solid var(--rb-news-ink);
}

.rb-newsroom-sidebar__module {
    padding: 28px 0 34px;
    border-bottom: 1px solid var(--rb-news-line);
}

.rb-newsroom-sidebar__module + .rb-newsroom-sidebar__module {
    padding-top: 42px;
}

.rb-newsroom-sidebar__header {
    margin-bottom: 8px;
}

.rb-newsroom-sidebar__header .rb-newsroom__eyebrow {
    margin-bottom: 7px;
}

.rb-newsroom-sidebar__header h2 {
    margin: 0;
    font-family: var(--rb-serif);
    font-size: 32px;
    font-weight: var(--rb-serif-weight);
    line-height: 1;
    letter-spacing: -.025em;
}

.rb-newsroom-sidebar__list {
    margin: 18px 0 0;
    padding: 0;
    border-top: 1px solid var(--rb-news-line);
    list-style: none;
}

.rb-newsroom-sidebar__list li {
    margin: 0;
    border-bottom: 1px solid var(--rb-news-line);
}

.rb-newsroom-sidebar__list li > a {
    display: grid;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 15px 0;
    text-decoration: none;
}

.rb-newsroom-sidebar__events li > a {
    grid-template-columns: 48px minmax(0, 1fr);
}

.rb-newsroom-sidebar__date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    min-height: 54px;
    color: var(--rb-news-ink);
    border: 1px solid #c7c3ba;
    background: var(--rb-news-paper);
    font-family: var(--rb-nav);
    line-height: 1;
}

.rb-newsroom-sidebar__date strong {
    font-size: 20px;
    font-weight: 800;
}

.rb-newsroom-sidebar__date span {
    margin-top: 5px;
    color: var(--rb-news-accent);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rb-newsroom-sidebar__item-copy {
    min-width: 0;
}

.rb-newsroom-sidebar__item-copy > strong {
    display: block;
    font-family: var(--rb-serif);
    font-size: 18px;
    font-weight: var(--rb-serif-weight);
    line-height: 1.12;
    transition: color 160ms ease;
}

.rb-newsroom-sidebar__item-copy > small {
    display: block;
    margin-top: 6px;
    color: var(--rb-news-muted);
    font-family: var(--rb-nav);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.rb-newsroom-sidebar__list li > a:hover .rb-newsroom-sidebar__item-copy > strong,
.rb-newsroom-sidebar__list li > a:focus-visible .rb-newsroom-sidebar__item-copy > strong {
    color: #684916;
}

.rb-newsroom-sidebar__jobs li > a {
    grid-template-columns: minmax(0, 1fr) 20px;
}

.rb-newsroom-sidebar__arrow {
    color: var(--rb-news-accent);
    font-size: 18px;
    transition: transform 160ms ease;
}

.rb-newsroom-sidebar__jobs li > a:hover .rb-newsroom-sidebar__arrow,
.rb-newsroom-sidebar__jobs li > a:focus-visible .rb-newsroom-sidebar__arrow {
    transform: translateX(4px);
}

.rb-newsroom-sidebar__all {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    min-height: 42px;
    margin-top: 15px;
    color: var(--rb-news-ink);
    font-family: var(--rb-nav);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
}

.rb-newsroom-sidebar__all span {
    color: var(--rb-news-accent);
    font-size: 18px;
    transition: transform 160ms ease;
}

.rb-newsroom-sidebar__all:hover span,
.rb-newsroom-sidebar__all:focus-visible span {
    transform: translateX(4px);
}

.rb-newsroom-sidebar__empty {
    margin: 18px 0 0;
    color: var(--rb-news-muted);
    font-family: var(--rb-sans);
    font-size: 14px;
    line-height: 1.5;
}

.rb-newsroom__empty {
    padding: 48px 0;
    border-bottom: 1px solid var(--rb-news-line);
}

.rb-newsroom a:focus-visible {
    outline: 2px solid var(--rb-news-accent);
    outline-offset: 4px;
}

@media (min-width: 981px) {
    .rb-newsroom-list__item--hero-duplicate {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .rb-newsroom__masthead-grid,
    .rb-newsroom-content {
        grid-template-columns: 1fr;
    }

    .rb-newsroom__masthead-grid {
        gap: 26px;
    }

    .rb-newsroom__intro p {
        max-width: 720px;
    }

    .rb-newsroom-reports__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rb-newsroom-content {
        gap: 64px;
    }

    .rb-newsroom-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
        border-top: 0;
    }

    .rb-newsroom-sidebar__module,
    .rb-newsroom-sidebar__module + .rb-newsroom-sidebar__module {
        padding-top: 28px;
        border-top: 3px solid var(--rb-news-ink);
    }

    .rb-newsroom .rb-newsroom-list__item {
        grid-template-columns: minmax(230px, 34%) minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .rb-newsroom {
        width: min(100% - 28px, 1400px);
        padding-bottom: 64px;
    }

    .rb-newsroom__masthead {
        padding-top: 42px;
    }

    .rb-newsroom__masthead h1 {
        font-size: clamp(50px, 16vw, 72px);
        line-height: .93;
    }

    .rb-newsroom__masthead-grid {
        padding-bottom: 31px;
    }

    .rb-newsroom__topics {
        display: block;
        padding: 16px 0 17px;
        overflow: hidden;
    }

    .rb-newsroom__topics > span {
        display: block;
        margin-bottom: 10px;
    }

    .rb-newsroom__topics ul {
        flex-wrap: nowrap;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .rb-newsroom__topics li {
        flex: 0 0 auto;
    }

    .rb-newsroom-reports {
        margin-top: 44px;
        padding: 0;
    }

    .rb-newsroom__section-head {
        align-items: flex-end;
        gap: 20px;
        padding-bottom: 16px;
    }

    .rb-newsroom__section-head h2 {
        font-size: clamp(37px, 11vw, 49px);
    }

    .rb-newsroom__all-link {
        max-width: 112px;
        justify-content: flex-end;
        text-align: right;
        font-size: 8px;
    }

    .rb-newsroom-reports__grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        margin-top: 22px;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .rb-newsroom-report--tile {
        display: flex;
        flex: 0 0 82%;
        flex-direction: column;
        scroll-snap-align: start;
    }

    .rb-newsroom-report__media-frame {
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid #c9c5bc;
    }

    .rb-newsroom-report--tile .rb-newsroom-report__copy {
        min-height: 0;
        padding: 20px 16px;
    }

    .rb-newsroom-report--tile h3 {
        font-size: 21px;
    }

    .rb-newsroom-report__heading-row {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 8px;
    }

    .rb-newsroom-report__meta {
        margin-left: 28px;
        font-size: 8px;
    }

    .rb-newsroom-feed {
        margin-top: 0;
    }

    .rb-newsroom-content {
        margin-top: 66px;
    }

    .rb-newsroom-feed__head > p {
        display: none;
    }

    .rb-newsroom .rb-newsroom-list__item {
        display: block;
        padding: 25px 0 28px;
    }

    .rb-newsroom .rb-newsroom-list__item .story-card__image {
        margin-bottom: 18px;
    }

    .rb-newsroom .rb-newsroom-list__item h3 {
        font-size: 26px;
        line-height: 1.08;
    }

    .rb-newsroom .rb-newsroom-list__item > .story-card__body > p {
        margin-top: 11px;
        font-size: 14px;
    }

    .rb-newsroom .rb-newsroom-list__item .story-card__footer {
        margin-top: 0;
        padding-top: 16px;
    }

    .rb-newsroom-pagination {
        justify-content: flex-start;
        min-height: 96px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .rb-newsroom-pagination::-webkit-scrollbar {
        display: none;
    }

    .rb-newsroom-pagination > .page-numbers {
        flex-wrap: nowrap;
        width: max-content;
        gap: 8px;
    }

    .rb-newsroom-pagination .page-numbers li > a,
    .rb-newsroom-pagination .page-numbers li > span {
        min-width: 42px;
        min-height: 42px;
        padding-inline: 11px;
        font-size: 14px;
    }

    .rb-newsroom-pagination .page-numbers li > .prev,
    .rb-newsroom-pagination .page-numbers li > .next {
        min-width: 96px;
        padding-inline: 17px;
    }

    .rb-newsroom-sidebar {
        display: block;
    }

    .rb-newsroom-sidebar__module + .rb-newsroom-sidebar__module {
        margin-top: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rb-newsroom * {
        scroll-behavior: auto !important;
    }

    .rb-newsroom__topics a::after,
    .rb-newsroom__all-link span,
    .rb-newsroom-report__image img,
    .rb-newsroom .rb-newsroom-list__item .story-card__image img,
    .rb-newsroom-sidebar__arrow,
    .rb-newsroom-sidebar__all span,
    .rb-newsroom-sidebar__item-copy > strong,
    .rb-newsroom-pagination a {
        transition: none;
    }
}
