.parsys.hero_area {
    padding-block: 2rem;
    margin-block-end: -1.75rem;
}

.parsys.hero_area :focus {
    outline-color: var(--magenta) !important;
}

.parsys.hero_area .newslist {
    margin: 0;
    padding-inline: var(--page-edge-width);
}

.hero_area .list > ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media screen and (width >= 768px) {
    .hero_area .list > ul {
        grid-template-columns: 1fr 1fr;
    }
}

.hero_area .list > ul > li {
    position: relative;
    padding: 1.5rem 3rem 1.5rem 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    border-radius: 0;
    transition: color 0.1s ease;
}

.hero_area .list > ul > li .thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    z-index: 0;
    margin: 0;
    background: linear-gradient(80deg in oklab, var(--magenta-darker), var(--magenta));
    overflow: hidden;
    border-radius: 0;
    outline-offset: 1px;
}

.hero_area .list > ul > li .thumb:after {
    --article-overlay-blur: 0.75rem;
    --article-overlay-width: 6rem;
    content: '';
    position: absolute;
    inset: 0;
    width: var(--article-overlay-width);
    background: color-mix(in srgb, var(--magenta) 60%, transparent);
    backdrop-filter: blur(var(--article-overlay-blur));
    z-index: 1;
    transition: backdrop-filter 0.2s ease, width 0.2s ease;
}

.hero_area .list > ul > li img {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.97;
    transition: opacity 0.3s ease, transform 1.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.hero_area .list > ul > li img[src$="list-newspr-generic-thumb.png"] {
    overflow: hidden;
    background-image: url("/content/dam/research/home/list-newspr-generic-thumb-override.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: none;
    object-position: -9999px -9999px;
    text-align: center;
    padding: 1rem;
    color: white;
}

.hero_area .list > ul > li .news-listing {
    position: relative;
    z-index: 1;
    background: var(--background-0);
    max-width: max(48rem, 80%);
    pointer-events: none;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero_area .list > ul > li h3 {
    font-weight: 700;
}

.hero_area .list > ul > li h3 a {
    text-decoration: none;
    outline-offset: 0.25rem;
    color: inherit;
}

.hero_area .list > ul > li ul.post-metadata li {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    transition: color 0.1s ease;
}

.hero_area .list > ul > li .short-desc {
    display: none;
}

/* Hover state */
.hero_area .list > ul > li:hover,
.hero_area .list > ul > li:hover ul.post-metadata li {
    color: var(--magenta);
}

.hero_area .list > ul > li:hover img {
    transform: scale(1.02);
    opacity: 0.92;
}

.hero_area .list > ul > li:hover .thumb:after {
    backdrop-filter: blur(calc(var(--article-overlay-blur) * 1.25));
    width: calc(var(--article-overlay-width) * 1.5);
}

.hero_area .list > ul > li .thumb:active img {
    opacity: 0.6;
    transform: scale(1.04);
}

/* FIRST ITEM */
.hero_area .list > ul > li:first-child {
    grid-column: -1 / 1;
}

.hero_area .list > ul > li:first-child .thumb:after {
    --article-overlay-width: 9rem;
}

.hero_area .list > ul > li:first-child h3 {
    font-size: var(--font-size-xl);
}

@media screen and (width >= 768px) {
    .hero_area .list > ul > li:first-child {
        padding: 3rem 4rem 3rem 3rem;
    }

    .hero_area .list > ul > li:first-child h3 {
        font-size: var(--font-size-3x);
    }
}

.hero_area .list > ul > li:first-child .short-desc {
    display: block;
}