.cra-news-widget {
    --cra-gap: 1.4rem;
    --cra-radius: 14px;
    --cra-font-ui: "Source Sans 3", var(--theme-font-family, sans-serif);
    --cra-font-title: "Archivo Black", var(--theme-font-family-headings, "Source Sans 3", sans-serif);
    --cra-font-brand: "Eagel Lake", "Archivo Black", var(--theme-font-family-headings, "Source Sans 3", sans-serif);
    --cra-border: color-mix(in srgb, var(--theme-palette-color-8, #0f172a) 12%, transparent);
    --cra-title: var(--theme-palette-color-1, #0f172a);
    --cra-meta: var(--theme-palette-color-3, #64748b);
    --cra-bg: var(--theme-palette-color-8, #ffffff);
    --cra-surface-soft: color-mix(in srgb, var(--theme-palette-color-8, #ffffff) 84%, var(--theme-palette-color-1, #0f172a) 16%);
    --cra-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.52), 0 2px 4px rgba(15, 23, 42, 0.06);
    --cra-link: var(--theme-palette-color-2, #1d4ed8);
    --cra-divider: color-mix(in srgb, var(--theme-palette-color-1, #0f172a) 10%, transparent);

    display: grid;
    grid-template-columns: repeat(var(--cra-columns, 1), minmax(0, 1fr));
    gap: var(--cra-gap);
    margin: 0;
    padding: 0;
}

/* Global newsroom cleanup: remove badge/date UI and force neutral transparent surfaces. */
.cra-card__category,
.cra-card__footer,
.cra-card__meta,
.cra-card__date,
.cra-card__date::before,
.cra-card__source {
    display: none !important;
}

.cra-news-widget,
.cra-news-widget .cra-card,
.cra-news-widget .cra-card__content,
.cra-news-widget .cra-card__media,
.cra-home-layout .cra-card,
.cra-home-band .cra-card,
.cra-home-split .cra-card {
    background: transparent !important;
    background-color: transparent !important;
}

.cra-card:hover,
.cra-card:focus-within,
.cra-layout--news-reference-news .cra-card:hover,
.cra-layout--news-reference-news .cra-card:focus-within,
.cra-layout--news-nyt-red .cra-card:hover,
.cra-layout--news-nyt-red .cra-card:focus-within {
    background: transparent !important;
    background-color: transparent !important;
}

.cra-news-widget.cra-columns-1 { --cra-columns: 1; }
.cra-news-widget.cra-columns-2 { --cra-columns: 2; }
.cra-news-widget.cra-columns-3 { --cra-columns: 3; }
.cra-news-widget.cra-columns-4 { --cra-columns: 4; }
.cra-news-widget.cra-columns-5 { --cra-columns: 5; }
.cra-news-widget.cra-columns-6 { --cra-columns: 6; }

.cra-feed-column {
    min-width: 0;
}

.cra-feed-column__inner {
    display: grid;
    gap: 1.2rem;
}

.cra-feed-column__heading {
    margin: 0;
    font-size: .82rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cra-title);
    opacity: .85;
    font-family: var(--cra-font-title) !important;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.cra-feed-column__heading::before {
    content: '';
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: var(--cra-link);
    opacity: .78;
}

.cra-card {
    background: var(--cra-bg);
    border: 1px solid var(--cra-border);
    border-radius: var(--cra-radius);
    overflow: hidden;
    box-shadow: var(--cra-shadow);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}


@media (hover: hover) and (pointer: fine) {
    .cra-card:hover {
        transform: translateY(-3px);
        border-color: color-mix(in srgb, var(--cra-link) 28%, var(--cra-border));
        background-color: color-mix(in srgb, var(--cra-bg) 90%, var(--cra-link) 10%);
        box-shadow: 0 18px 34px -24px rgba(15, 23, 42, 0.42), 0 3px 10px rgba(15, 23, 42, 0.08);
    }

    .cra-card:hover .cra-card__image {
        transform: scale(1.02);
    }

    .cra-card:hover .cra-card__category {
        background: color-mix(in srgb, #eb0707 88%, #ffffff 12%);
        transform: translateY(-1px);
    }

    .cra-card:hover .cra-card__link {
        color: var(--cra-link);
    }
}

.cra-card:focus-within {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--cra-link) 24%, var(--cra-border));
    background-color: color-mix(in srgb, var(--cra-bg) 94%, var(--cra-link) 6%);
    box-shadow: 0 16px 30px -22px rgba(15, 23, 42, 0.36), 0 2px 8px rgba(15, 23, 42, 0.08);
}

.cra-card__media {
    display: block;
    background: var(--cra-surface-soft);
    overflow: hidden;
}

.cra-card__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(68vh, 640px);
    object-fit: contain;
    transition: transform .28s ease, filter .28s ease, opacity .28s ease;
}

.cra-card__image--placeholder {
    object-fit: cover;
    background: #f4f5f6;
}

.cra-card__image--preview {
    object-fit: cover;
    background: #f2f3f5;
}

.cra-card__content {
    padding: 1.2rem 1.2rem 1.3rem;
    display: grid;
    gap: .7rem;
}

.cra-card__title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 700;
    font-family: var(--cra-font-title) !important;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cra-card__link {
    color: var(--cra-title);
    text-decoration: none;
    transition: color .18s ease, opacity .18s ease;
}

/* Typography lock: protect card hierarchy from broad external selectors like .cra-feed-item a { font-size: 14px } */
.entry-content .cra-home-layout .cra-card__title > a.cra-card__link,
.entry-content .cra-news-widget .cra-card__title > a.cra-card__link {
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
}

.entry-content .cra-home-layout .cra-card__excerpt,
.entry-content .cra-news-widget .cra-card__excerpt {
    font-size: .95rem;
    line-height: 1.55;
    color: #4a4a4a !important;
}

.entry-content .cra-home-layout .cra-card__excerpt a,
.entry-content .cra-home-layout .cra-card__excerpt a:any-link,
.entry-content .cra-home-layout .cra-card__excerpt a:visited,
.entry-content .cra-home-layout .cra-card__excerpt a:hover,
.entry-content .cra-home-layout .cra-card__excerpt a:focus,
.entry-content .cra-news-widget .cra-card__excerpt a,
.entry-content .cra-news-widget .cra-card__excerpt a:any-link,
.entry-content .cra-news-widget .cra-card__excerpt a:visited,
.entry-content .cra-news-widget .cra-card__excerpt a:hover,
.entry-content .cra-news-widget .cra-card__excerpt a:focus {
    color: #4a4a4a !important;
    text-decoration: none !important;
}

.entry-content .cra-home-layout .cra-card__meta,
.entry-content .cra-news-widget .cra-card__meta {
    font-size: .8rem;
    line-height: 1.2;
}

.entry-content .cra-home-layout .cra-card__category,
.entry-content .cra-news-widget .cra-card__category {
    font-size: .62rem;
}

.cra-card__link:hover,
.cra-card__link:focus {
    color: var(--cra-link);
    text-decoration: none;
}

.cra-card__link:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--cra-link) 55%, transparent);
    outline-offset: 2px;
}

.cra-card__title {
    transition: transform .18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cra-home-layout__rail .cra-card__title,
    .cra-home-band__side .cra-card__title,
    .cra-home-split__side .cra-card__title {
        transform-origin: left top;
    }

    .cra-home-layout__rail .cra-card:hover .cra-card__title,
    .cra-home-band__side .cra-card:hover .cra-card__title,
    .cra-home-split__side .cra-card:hover .cra-card__title {
        transform: scale(.985);
    }
}

.cra-home-layout__rail .cra-card:focus-within .cra-card__title,
.cra-home-band__side .cra-card:focus-within .cra-card__title,
.cra-home-split__side .cra-card:focus-within .cra-card__title {
    transform: scale(.985);
    transform-origin: left top;
}

.cra-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .52rem .7rem;
    color: var(--cra-meta);
    font-size: .8rem;
    line-height: 1.2;
    font-family: var(--cra-font-ui) !important;
}

.cra-card__source {
    font-weight: 700;
    letter-spacing: .02em;
    padding: .24rem .5rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cra-link) 10%, transparent);
    color: color-mix(in srgb, var(--cra-link) 78%, var(--cra-title));
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.cra-card__category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #fff;
    background: #eb0707;
    padding: .16rem .36rem;
    border-radius: 2px;
    font-family: var(--cra-font-ui) !important;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.cra-card__date {
    opacity: .92;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.cra-card__date::before {
    content: '';
    width: .22rem;
    height: .22rem;
    border-radius: 999px;
    background: currentColor;
    opacity: .42;
}

.cra-card__excerpt {
    margin: 0;
    color: color-mix(in srgb, var(--cra-title) 76%, transparent);
    font-size: .95rem;
    line-height: 1.55;
    font-family: var(--cra-font-ui) !important;
    transition: color .18s ease, opacity .18s ease;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cra-card__excerpt a,
.cra-card__excerpt a:any-link,
.cra-card__excerpt a:visited,
.cra-card__excerpt a:hover,
.cra-card__excerpt a:focus {
    color: inherit !important;
    text-decoration: none;
}

.cra-card:hover .cra-card__excerpt,
.cra-card:focus-within .cra-card__excerpt {
    color: #4a4a4a !important;
}

.cra-news-widget--spotlight .cra-feed-column__heading,
.cra-news-widget--spotlight .cra-feed-column__heading::before {
    display: none !important;
}

.cra-news-widget--hero .cra-card {
    border-width: 1px;
}

.cra-news-widget--hero .cra-card__title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.2;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    position: relative;
    padding-left: .72rem;
}

.cra-news-widget--hero .cra-card__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 78%;
    transform: translateY(-50%);
    background: rgba(235, 7, 7, .58);
    transition: width .18s ease, background-color .18s ease, height .18s ease;
    border-radius: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .cra-news-widget--hero .cra-card:hover .cra-card__title::before {
        width: 5px;
        height: 82%;
        background: rgba(235, 7, 7, .9);
    }
}

.cra-news-widget--hero .cra-card:focus-within .cra-card__title::before {
    width: 5px;
    height: 82%;
    background: rgba(235, 7, 7, .9);
}

.cra-news-widget--hero .cra-card:first-child .cra-card__content {
    padding: 1.4rem 1.5rem 1.5rem;
    gap: .9rem;
}

.cra-news-widget--hero .cra-card__excerpt {
    font-size: 1rem;
    line-height: 1.62;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.cra-news-widget--rail .cra-card,
.cra-news-widget--compact .cra-card,
.cra-news-widget--spotlight .cra-card,
.cra-news-widget--card .cra-card {
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--cra-border);
    transform: none;
    position: relative;
    overflow: hidden;
}

/* Editorial accent strip for list-based cards, anchored to titles only. */
.cra-news-widget--rail .cra-card__title,
.cra-news-widget--compact .cra-card__title,
.cra-news-widget--spotlight .cra-card__title,
.cra-news-widget--card .cra-card__title {
    position: relative;
    padding-left: .72rem;
}

.cra-news-widget--rail .cra-card__title::before,
.cra-news-widget--compact .cra-card__title::before,
.cra-news-widget--spotlight .cra-card__title::before,
.cra-news-widget--card .cra-card__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 78%;
    transform: translateY(-50%);
    background: rgba(235, 7, 7, .58);
    transition: width .18s ease, background-color .18s ease, height .18s ease;
    border-radius: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .cra-news-widget--rail .cra-card:hover .cra-card__title::before,
    .cra-news-widget--compact .cra-card:hover .cra-card__title::before,
    .cra-news-widget--spotlight .cra-card:hover .cra-card__title::before,
    .cra-news-widget--card .cra-card:hover .cra-card__title::before {
        width: 5px;
        height: 82%;
        background: rgba(235, 7, 7, .9);
    }
}

.cra-news-widget--rail .cra-card:focus-within .cra-card__title::before,
.cra-news-widget--compact .cra-card:focus-within .cra-card__title::before,
.cra-news-widget--spotlight .cra-card:focus-within .cra-card__title::before,
.cra-news-widget--card .cra-card:focus-within .cra-card__title::before {
    width: 5px;
    height: 82%;
    background: rgba(235, 7, 7, .9);
}

.cra-news-widget--rail .cra-card:hover,
.cra-news-widget--rail .cra-card:focus-within,
.cra-news-widget--compact .cra-card:hover,
.cra-news-widget--compact .cra-card:focus-within {
    transform: none;
    box-shadow: none;
    border-color: color-mix(in srgb, var(--cra-link) 20%, var(--cra-border));
}

.cra-news-widget--compact .cra-card__content,
.cra-news-widget--rail .cra-card__content {
    padding: .9rem 1rem;
}

.cra-news-widget--compact .cra-card__title,
.cra-news-widget--rail .cra-card__title {
    font-size: 1rem;
    line-height: 1.32;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.cra-news-widget--spotlight .cra-feed-column__inner {
    gap: 1rem;
}

.cra-news-widget--spotlight .cra-card__title {
    font-size: 1.08rem;
}

.cra-card-style-minimal .cra-card {
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--cra-border);
    border-radius: 0;
}

.cra-card-style-minimal .cra-card__content {
    padding-left: 0;
    padding-right: 0;
}

.cra-card-style-minimal .cra-card:last-child {
    border-bottom: 0;
}

.cra-zone {
    margin: 0;
}

.cra-home-layout {
    display: grid;
    gap: 1.6rem;
}

.cra-home-layout--multi {
    gap: 1.15rem;
}

.cra-home-band {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 1.1rem;
    align-items: stretch;
}

.cra-home-band__main,
.cra-home-band__side {
    min-width: 0;
}

.cra-home-band--briefing {
    grid-template-columns: minmax(0, 2.15fr) minmax(320px, 1fr);
}

.cra-home-band--newsdesk {
    grid-template-columns: minmax(0, 2fr) minmax(330px, 1fr);
}

.cra-home-section {
    display: grid;
    gap: .72rem;
}

.cra-home-section__header {
    margin: 0;
    padding: 0;
}

.cra-home-section__title {
    margin: 0;
    font-family: var(--cra-font-title) !important;
    font-size: clamp(1.06rem, 1.35vw, 1.28rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #121212;
    padding-bottom: .42rem;
    border-bottom: 1px solid var(--cra-divider, #dadada);
}

.cra-home-split {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 1.05rem;
    align-items: stretch;
}

.cra-home-split__main,
.cra-home-split__side {
    min-width: 0;
}

.cra-home-layout__rail,
.cra-home-band__side,
.cra-home-split__side {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cra-home-band__main,
.cra-home-split__main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cra-home-band__side .cra-home-section,
.cra-home-split__side .cra-home-section {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cra-home-band__main .cra-home-section,
.cra-home-split__main .cra-home-section {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cra-home-band__side .cra-home-section > .cra-feeds-wrapper,
.cra-home-split__side .cra-home-section > .cra-feeds-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(106, 106, 106, .55) transparent;
}

.cra-home-band__side .cra-home-section > .cra-feeds-wrapper::-webkit-scrollbar,
.cra-home-split__side .cra-home-section > .cra-feeds-wrapper::-webkit-scrollbar {
    width: 8px;
}

.cra-home-band__side .cra-home-section > .cra-feeds-wrapper::-webkit-scrollbar-track,
.cra-home-split__side .cra-home-section > .cra-feeds-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.cra-home-band__side .cra-home-section > .cra-feeds-wrapper::-webkit-scrollbar-thumb,
.cra-home-split__side .cra-home-section > .cra-feeds-wrapper::-webkit-scrollbar-thumb {
    background: rgba(106, 106, 106, .55);
    border-radius: 999px;
}

.cra-item--hidden-fit {
    display: none !important;
}

.cra-home-section--featured .cra-news-widget--hero .cra-card__title {
    font-size: clamp(1.12rem, 1.75vw, 1.5rem);
}

.cra-home-section--latest .cra-news-widget--rail .cra-card,
.cra-home-section--split .cra-zone-opinion .cra-card {
    border-radius: 0;
}

.cra-home-layout__top {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(320px, 1fr);
    gap: 1.3rem;
    align-items: stretch;
}

.cra-home-layout__top > * {
    min-width: 0;
}

.cra-home-layout__hero .cra-news-widget {
    gap: 0;
}

.cra-home-layout__hero .cra-card__image {
    max-height: min(70vh, 680px);
    object-fit: contain;
    background: var(--cra-surface-soft);
}

.cra-home-layout__rail .cra-news-widget {
    gap: .5rem;
}

.cra-home-layout__top .cra-home-layout__rail,
.cra-home-band--newsdesk .cra-home-band__side,
.cra-home-split__side {
    align-self: stretch;
}

.cra-home-band--newsdesk .cra-home-band__side .cra-home-section,
.cra-home-band--newsdesk .cra-home-band__side .cra-news-widget--rail,
.cra-home-split__side .cra-home-section,
.cra-home-split__side .cra-news-widget--rail {
    height: 100%;
}

.cra-home-band--newsdesk .cra-home-band__main .cra-news-widget--card,
.cra-home-split__main .cra-news-widget--spotlight {
    height: 100%;
}

.cra-home-band--newsdesk .cra-home-section--latest .cra-feed-column__inner,
.cra-home-split__side .cra-feed-column__inner {
    gap: .65rem;
}

.cra-home-band--newsdesk .cra-home-section--latest .cra-card,
.cra-home-split__side .cra-card {
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.cra-home-layout__rail .cra-card__title::before,
.cra-home-band__side .cra-card__title::before,
.cra-home-split__side .cra-card__title::before {
    height: 70%;
    width: 3px;
    background: rgba(235, 7, 7, .72);
}

@media (hover: hover) and (pointer: fine) {
    .cra-home-layout__rail .cra-card:hover .cra-card__title::before,
    .cra-home-band__side .cra-card:hover .cra-card__title::before,
    .cra-home-split__side .cra-card:hover .cra-card__title::before {
        height: 74%;
        width: 6px;
        background: rgba(235, 7, 7, .95);
    }
}

@media (hover: hover) and (pointer: fine) {
    .cra-home-band--newsdesk .cra-home-section--latest .cra-card:hover,
    .cra-home-split__side .cra-card:hover {
        transform: translateY(-2px);
    }
}

@media (min-width: 1025px) {
    .cra-home-layout__rail {
        min-height: 0;
    }

    .cra-home-layout__rail .cra-news-widget--rail {
        height: auto;
        max-height: 100%;
        min-height: 0;
        overflow: hidden;
        overscroll-behavior: contain;
        padding-right: 0;
    }

    .cra-home-band__side .cra-news-widget--rail,
    .cra-home-split__side .cra-news-widget--rail {
        max-height: 100%;
        overflow: hidden;
    }
}

.cra-home-layout__rail .cra-feed-column__inner {
    gap: .8rem;
}

.cra-home-layout__grid,
.cra-home-layout__spotlight {
    margin-top: .3rem;
    padding-top: .8rem;
    border-top: 1px solid var(--cra-divider);
}

.cra-home-layout__grid .cra-card__image,
.cra-home-layout__spotlight .cra-card__image {
    max-height: min(48vh, 420px);
    object-fit: contain;
    background: var(--cra-surface-soft);
}

.cra-home-layout__grid .cra-feed-column__inner,
.cra-home-layout__spotlight .cra-feed-column__inner {
    gap: 1.3rem;
}

@media (max-width: 1024px) {
    .cra-news-widget {
        grid-template-columns: repeat(min(var(--cra-columns, 1), 2), minmax(0, 1fr));
    }

    .cra-home-layout__top {
        grid-template-columns: 1fr;
    }

    .cra-home-layout__grid,
    .cra-home-layout__spotlight {
        padding-top: .6rem;
    }

    .cra-home-split {
        grid-template-columns: 1fr;
        gap: .85rem;
    }

    .cra-home-band,
    .cra-home-band--briefing,
    .cra-home-band--newsdesk {
        grid-template-columns: 1fr;
        gap: .9rem;
    }

    .cra-home-layout__hero .cra-card__image,
    .cra-home-layout__grid .cra-card__image,
    .cra-home-layout__spotlight .cra-card__image {
        max-height: min(50vh, 420px);
    }
}

@media (max-width: 680px) {
    .cra-news-widget {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .cra-card__content {
        padding: .96rem 1rem 1.04rem;
    }

    .cra-card__source {
        padding: .18rem .4rem;
    }

    .cra-news-widget--hero .cra-card__title {
        font-size: clamp(1.35rem, 6vw, 1.8rem);
    }

    .cra-home-layout {
        gap: 1.2rem;
    }

    .cra-card__image,
    .cra-home-layout__hero .cra-card__image,
    .cra-home-layout__grid .cra-card__image,
    .cra-home-layout__spotlight .cra-card__image {
        max-height: 240px;
    }
}

/* Reference News Preset: Drudge-like hierarchy with enterprise readability */
.cra-layout--news-reference-news {
    --cra-gap: 1rem;
    --cra-title: #101317;
    --cra-meta: #5a6573;
    --cra-bg: #ffffff;
    --cra-border: #d6dbe2;
    --cra-shadow: 0 4px 14px -12px rgba(16, 19, 23, .45);
}

.cra-layout--news-reference-news .cra-home-layout__top {
    grid-template-columns: minmax(0, 2.2fr) minmax(300px, 1fr);
    gap: 1rem;
}

.cra-layout--news-reference-news .cra-home-layout__hero .cra-news-widget,
.cra-layout--news-reference-news .cra-home-layout__rail .cra-news-widget,
.cra-layout--news-reference-news .cra-home-layout__grid .cra-news-widget,
.cra-layout--news-reference-news .cra-home-layout__spotlight .cra-news-widget {
    gap: .8rem;
}

.cra-layout--news-reference-news .cra-card {
    border-radius: 8px;
    box-shadow: none;
    border: 0;
}

.cra-layout--news-reference-news .cra-card:hover,
.cra-layout--news-reference-news .cra-card:focus-within {
    transform: none;
    border-color: #b8c2cf;
    background: #fbfbfb;
    box-shadow: none;
}

.cra-layout--news-reference-news .cra-card__content {
    padding: .78rem .82rem .82rem;
    gap: .38rem;
}

.cra-layout--news-reference-news .cra-card__header {
    display: grid;
    gap: .3rem;
}

.cra-layout--news-reference-news .cra-card__kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: .62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    background: #eb0707;
    padding: .18rem .38rem;
    border-radius: 2px;
}

.cra-layout--news-reference-news .cra-card__category {
    background: #eb0707;
}

.cra-layout--news-reference-news .cra-card__title,
.cra-layout--news-reference-news .cra-card__link {
    background: transparent !important;
    color: #111418 !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.cra-layout--news-reference-news .cra-card__title {
    font-family: var(--cra-font-title) !important;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.cra-layout--news-reference-news .cra-card__body {
    margin-top: .1rem;
}

.cra-layout--news-reference-news .cra-card__excerpt {
    font-family: var(--cra-font-ui) !important;
    font-size: .84rem;
    line-height: 1.35;
    color: #3f4a58;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.cra-layout--news-reference-news .cra-card__meta {
    margin-top: .18rem;
    font-size: .72rem;
    gap: .35rem .5rem;
    color: #6a7380;
}

.cra-layout--news-reference-news .cra-card__date::before {
    opacity: .3;
}

.cra-layout--news-reference-news .cra-card__source {
    background: transparent;
    color: #4a5768;
    border: 1px solid #d6dbe2;
    border-radius: 2px;
    padding: .1rem .3rem;
}

.cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__media {
    aspect-ratio: 16 / 9;
    background: #eef2f6;
}

.cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
}

.cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__content {
    padding: .9rem .95rem 1rem;
    gap: .42rem;
}

.cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__title {
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    line-height: 1.08;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__excerpt {
    font-size: .92rem;
    line-height: 1.42;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.cra-layout--news-reference-news .cra-home-layout__rail .cra-news-widget--rail .cra-card {
    border-radius: 0;
    border: 0;
    background: transparent;
}

.cra-layout--news-reference-news .cra-home-layout__rail .cra-news-widget--rail .cra-card:last-child {
    border-bottom: 0;
}

.cra-layout--news-reference-news .cra-home-layout__rail .cra-news-widget--rail .cra-card__content {
    padding: .44rem 0 .5rem;
}

.cra-layout--news-reference-news .cra-home-layout__rail .cra-news-widget--rail .cra-card__title {
    font-size: 1.05rem;
    line-height: 1.18;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.cra-layout--news-reference-news .cra-home-layout__rail .cra-card__kicker {
    margin-bottom: .04rem;
}

.cra-layout--news-reference-news .cra-home-layout__grid,
.cra-layout--news-reference-news .cra-home-layout__spotlight {
    margin-top: .2rem;
    padding-top: .65rem;
}

.cra-layout--news-reference-news .cra-home-layout__grid .cra-card__media,
.cra-layout--news-reference-news .cra-home-layout__spotlight .cra-card__media {
    aspect-ratio: 16 / 10;
    background: #eef2f6;
}

.cra-layout--news-reference-news .cra-home-layout__grid .cra-card__image,
.cra-layout--news-reference-news .cra-home-layout__spotlight .cra-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
}

.cra-layout--news-reference-news .cra-home-layout__grid .cra-card__title,
.cra-layout--news-reference-news .cra-home-layout__spotlight .cra-card__title {
    font-size: 1.06rem;
    line-height: 1.2;
}

.cra-layout--news-reference-news.cra-density-compact .cra-card__content {
    padding: .62rem .68rem .7rem;
}

.cra-layout--news-reference-news.cra-density-compact .cra-card__title {
    font-size: .94rem;
}

@media (max-width: 1024px) {
    .cra-layout--news-reference-news .cra-home-layout__top {
        grid-template-columns: 1fr;
    }

    .cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__title {
        font-size: clamp(1.45rem, 5vw, 1.9rem);
    }

    .cra-layout--news-reference-news .cra-home-layout__rail .cra-news-widget--rail .cra-card__title {
        font-size: 1rem;
    }
}

@media (max-width: 680px) {
    .cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__title {
        font-size: clamp(1.25rem, 7vw, 1.55rem);
    }

    .cra-layout--news-reference-news .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__excerpt {
        display: none;
    }

    .cra-layout--news-reference-news .cra-card__title {
        font-size: .98rem;
        line-height: 1.22;
    }
}

/* NYT-inspired preset with subtle red accents */
.cra-layout--news-nyt-red {
    --cra-gap: 1rem;
    --cra-title: #121212;
    --cra-meta: #6a6a6a;
    --cra-bg: #ffffff;
    --cra-border: #dfdfdf;
    --cra-link: #eb0707;
    --cra-divider: #dadada;
    --cra-shadow: none;
}

.cra-layout--news-nyt-red .cra-home-layout__top {
    grid-template-columns: minmax(0, 2.35fr) minmax(320px, 1fr);
    gap: 1.05rem;
    align-items: start;
}

.cra-layout--news-nyt-red .cra-home-layout__top > * {
    min-width: 0;
}

.cra-layout--news-nyt-red .cra-card {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: #fff;
}

.cra-layout--news-nyt-red .cra-card:hover,
.cra-layout--news-nyt-red .cra-card:focus-within {
    transform: none;
    box-shadow: none;
    border-color: #cfcfcf;
    background: #fafafa;
}

.cra-layout--news-nyt-red .cra-card__content {
    padding: .7rem .78rem .82rem;
    gap: .35rem;
}

.cra-layout--news-nyt-red .cra-card__header,
.cra-layout--news-nyt-red .cra-card__body,
.cra-layout--news-nyt-red .cra-card__footer {
    min-width: 0;
}

.cra-layout--news-nyt-red .cra-card__kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #fff;
    background: #eb0707;
    padding: .16rem .36rem;
    border-radius: 2px;
}

.cra-layout--news-nyt-red .cra-card__category {
    background: #eb0707;
}

.cra-layout--news-nyt-red .cra-card__title,
.cra-layout--news-nyt-red a.cra-card__link,
.cra-layout--news-nyt-red a.cra-card__link:link,
.cra-layout--news-nyt-red a.cra-card__link:visited {
    color: var(--cra-title) !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    text-decoration: none !important;
}

.cra-layout--news-nyt-red .cra-card__title {
    margin: 0;
    font-family: var(--cra-font-title) !important;
    font-size: 1.04rem;
    line-height: 1.24;
    font-weight: 700;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.cra-layout--news-nyt-red .cra-card__link:hover,
.cra-layout--news-nyt-red .cra-card__link:focus {
    color: #eb0707 !important;
    text-decoration: none;
}

.cra-layout--news-nyt-red .cra-card__link:focus-visible {
    outline: 2px solid rgba(235, 7, 7, .32);
    outline-offset: 2px;
}

.entry-content .cra-home-layout.cra-layout--news-nyt-red .cra-card__title a.cra-card__link:any-link,
.entry-content .cra-home-layout.cra-layout--news-nyt-red .cra-card__title a.cra-card__link:link,
.entry-content .cra-home-layout.cra-layout--news-nyt-red .cra-card__title a.cra-card__link:visited,
.entry-content .cra-home-layout.cra-layout--news-nyt-red .cra-card__title a.cra-card__link:active,
.entry-content .cra-home-layout.cra-layout--news-nyt-red .cra-card__title a.cra-card__link:focus {
    color: #121212 !important;
    text-decoration: none !important;
}

.entry-content .cra-home-layout.cra-layout--news-nyt-red .cra-card__title a.cra-card__link:hover {
    color: #eb0707 !important;
    text-decoration: none !important;
}

.cra-layout--news-nyt-red .cra-card__excerpt {
    font-family: var(--cra-font-ui) !important;
    font-size: .86rem;
    line-height: 1.38;
    color: #4a4a4a !important;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.cra-layout--news-nyt-red .cra-card__meta {
    margin-top: .16rem;
    font-size: .74rem;
    color: var(--cra-meta);
    gap: .34rem .5rem;
}

.cra-layout--news-nyt-red .cra-card__date::before {
    opacity: .28;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__media {
    aspect-ratio: 16 / 9;
    background: #f3f3f3;
    position: relative;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-slider-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: block;
    padding: .52rem .7rem;
    background: rgba(235, 7, 7, .96);
    color: #fff;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-slider-banner__title {
    display: block;
    font-family: var(--cra-font-brand) !important;
    font-size: 34px;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -.01em;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__content {
    padding: .85rem .9rem .92rem;
    gap: .42rem;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__title {
    font-family: var(--cra-font-brand) !important;
    font-size: 38px;
    line-height: 1.03;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__header > .cra-card__title {
    display: -webkit-box;
}

.cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__excerpt {
    font-size: .92rem;
    line-height: 1.42;
}

@media (min-width: 1025px) {
    .cra-layout--news-nyt-red .cra-home-layout__top {
        align-items: start;
    }
}

.cra-layout--news-nyt-red .cra-home-layout__rail .cra-news-widget--rail {
    border-left: 1px solid var(--cra-divider);
    padding-left: .75rem;
}

.cra-layout--news-nyt-red .cra-home-layout__top .cra-home-layout__rail .cra-news-widget--rail {
    border-left: 0;
    padding-left: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.cra-layout--news-nyt-red .cra-home-layout__top .cra-home-layout__rail .cra-feed-column__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: .52rem;
}

.cra-layout--news-nyt-red .cra-home-layout__top .cra-home-layout__rail .cra-news-widget--rail .cra-card {
    border: 0;
    border-radius: 0;
    background: #fff;
}

.cra-layout--news-nyt-red .cra-home-layout__top .cra-home-layout__rail .cra-news-widget--rail .cra-card__content {
    padding: .44rem .5rem .5rem;
}

.cra-layout--news-nyt-red .cra-home-layout__top .cra-home-layout__rail .cra-news-widget--rail .cra-card__title {
    font-size: .94rem;
    line-height: 1.16;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.cra-layout--news-nyt-red .cra-home-layout__rail .cra-news-widget--rail .cra-card {
    border: 0;
    border-bottom: 0;
    border-radius: 0;
    background: transparent;
}

.cra-layout--news-nyt-red .cra-home-layout__rail .cra-news-widget--rail .cra-card:last-child {
    border-bottom: 0;
}

.cra-layout--news-nyt-red .cra-home-layout__rail .cra-news-widget--rail .cra-card__content {
    padding: .42rem 0 .5rem;
}

.cra-layout--news-nyt-red .cra-home-layout__rail .cra-news-widget--rail .cra-card__title {
    font-size: 1rem;
    line-height: 1.18;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.cra-layout--news-nyt-red .cra-home-layout__grid,
.cra-layout--news-nyt-red .cra-home-layout__spotlight {
    margin-top: .24rem;
    padding-top: .7rem;
    border-top: 1px solid var(--cra-divider);
}

.cra-layout--news-nyt-red .cra-home-band {
    border-top: 1px solid var(--cra-divider);
    padding-top: .75rem;
}

.cra-layout--news-nyt-red .cra-home-band--briefing .cra-home-section--top-stories .cra-news-widget {
    gap: .82rem;
}

.cra-layout--news-nyt-red .cra-home-band--briefing .cra-home-section--top-stories .cra-card__media {
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
}

.cra-layout--news-nyt-red .cra-home-band--briefing .cra-home-section--top-stories .cra-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
}

.cra-layout--news-nyt-red .cra-home-band--briefing .cra-home-section--top-stories .cra-card__title {
    font-size: 1.01rem;
    line-height: 1.2;
}

.cra-layout--news-nyt-red .cra-home-band--briefing .cra-home-section--featured .cra-slot-hero.cra-item-primary .cra-card__title {
    font-size: clamp(1.08rem, 1.65vw, 1.42rem);
    line-height: 1.08;
}

.cra-layout--news-nyt-red .cra-home-band--briefing .cra-home-section--featured .cra-slot-hero.cra-item-primary .cra-card__excerpt {
    font-size: .88rem;
    line-height: 1.38;
}

.cra-layout--news-nyt-red .cra-home-band--newsdesk .cra-home-section--more-news .cra-card__title {
    font-size: .98rem;
    line-height: 1.18;
}

.cra-layout--news-nyt-red .cra-home-band--newsdesk .cra-home-section--latest .cra-news-widget--rail {
    border-left: 0;
    padding-left: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.cra-layout--news-nyt-red .cra-home-band--newsdesk .cra-home-section--latest .cra-news-widget--rail .cra-card__title {
    font-size: .96rem;
    line-height: 1.16;
}

.cra-layout--news-nyt-red .cra-home-section--split {
    border-top: 1px solid var(--cra-divider);
    padding-top: .72rem;
}

.cra-layout--news-nyt-red .cra-home-layout__grid .cra-news-widget,
.cra-layout--news-nyt-red .cra-home-layout__spotlight .cra-news-widget {
    gap: .86rem;
}

@media (min-width: 1025px) {
    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-news-widget {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.05rem;
        align-items: stretch;
    }

    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-feed-column,
    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-feed-column__inner {
        display: contents;
    }

    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-feed-item {
        width: auto;
        margin: 0;
        break-inside: auto;
        -webkit-column-break-inside: auto;
        page-break-inside: auto;
        height: 100%;
    }

    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-feed-item .cra-card {
        height: 100%;
    }
}

.cra-layout--news-nyt-red .cra-home-layout__grid .cra-card__media,
.cra-layout--news-nyt-red .cra-home-layout__spotlight .cra-card__media {
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
}

.cra-layout--news-nyt-red .cra-home-layout__grid .cra-card__image,
.cra-layout--news-nyt-red .cra-home-layout__spotlight .cra-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
}

.cra-layout--news-nyt-red .cra-card__image--placeholder {
    filter: saturate(.94);
}

.cra-layout--news-nyt-red.cra-density-compact .cra-card__content {
    padding: .58rem .64rem .66rem;
    gap: .28rem;
}

.cra-layout--news-nyt-red.cra-density-compact .cra-card__title {
    font-size: .96rem;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .cra-layout--news-nyt-red .cra-home-layout__top {
        grid-template-columns: 1fr;
        gap: .84rem;
    }

    .cra-layout--news-nyt-red .cra-home-band,
    .cra-layout--news-nyt-red .cra-home-band--briefing,
    .cra-layout--news-nyt-red .cra-home-band--newsdesk {
        grid-template-columns: 1fr;
        gap: .88rem;
    }

    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-news-widget {
        display: grid;
        column-count: initial;
        column-gap: 0;
    }

    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-feed-column,
    .cra-layout--news-nyt-red .cra-home-layout__grid .cra-feed-column__inner {
        display: block;
    }

    .cra-layout--news-nyt-red .cra-home-layout__rail .cra-news-widget--rail {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid var(--cra-divider);
        padding-top: .55rem;
    }

    .cra-layout--news-nyt-red .cra-home-layout__top .cra-home-layout__rail .cra-feed-column__inner {
        grid-template-columns: 1fr;
    }

    .cra-layout--news-nyt-red .cra-home-band--newsdesk .cra-home-section--latest .cra-news-widget--rail {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid var(--cra-divider);
        padding-top: .55rem;
    }

    .cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__title {
        font-size: clamp(1.8rem, 6.2vw, 2.5rem);
    }

    .cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-slider-banner__title {
        font-size: clamp(1.55rem, 5.4vw, 2.2rem);
    }
}

@media (max-width: 680px) {
    .cra-layout--news-nyt-red .cra-card__content {
        padding: .64rem .7rem .72rem;
    }

    .cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.08;
    }

    .cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-slider-banner {
        padding: .36rem .48rem;
    }

    .cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-slider-banner__title {
        font-size: clamp(1.2rem, 6vw, 1.7rem);
        line-height: 1.06;
    }

    .cra-layout--news-nyt-red .cra-home-layout__hero .cra-slot-hero.cra-item-primary .cra-card__excerpt {
        display: none;
    }
}
