<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-height: 460px;
}

.hero-container img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-large {
    flex: 2;
    overflow: hidden;
    position: relative;
}

.hero-small {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.hero-large img {
    transition: all 0.3s ease;
}

.hero-small:hover img,
.hero-large:hover img {
    filter: brightness(0.7) contrast(1.1); /* Darkens and slightly increases contrast */
}

.hero-large:hover .hero-image-caption,
.hero-small:hover .hero-image-caption {
    color: var(--secondary-color) !important;
}

.hero-small img,
.hero-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-small::after,
.hero-large::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.hero-image-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    line-height: 2.5rem;
    font-weight: 600;
    width: 100%;
    color: #fff;
    font-size: 2.2rem;
    transform: translateX(-50%);
    padding: 5px 10px;
    box-sizing: border-box;
    z-index: 1;
}

.hero-image-caption .hero-large-share-caption {
    display: block;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.hero-image-caption a {
    color: #FFF;
    /* Blue for links */
    text-decoration: none;
    /* Remove underline */
}

.hero-image-caption a:hover {
    color: var(--primary-color);
}

.hero-image-caption a:visited {
    color: #FFF;
}

.hero-image-caption a:visited:hover {
    color: var(--secondary-color);
}

.hero-image-caption a:active {
    color: #FFF;
}

.hero-small .hero-image-caption {
    line-height: 1.4rem;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: rgba(0, 0, 0, 0.7) 1px 1px 1px;
}

.hero-small .hero-share-caption {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
}

.hero-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-story-caption {
    position: absolute;
    top: 2%;
    left: 10px;
    font-weight: 700;
    color: #FFF;
    font-size: 1.2rem;
    background-color: var(--secondary-color);
    padding: 5px 10px;
    box-sizing: border-box;
    z-index: 1;
}

article.ad-item {
    margin: 24px auto;
    justify-content: center;
}

@media screen and (max-width: 860px) {
    .hero-container .hero-image-caption {
        font-size: 1.6rem;
        line-height: 1.8rem;
    }

    .hero-container .hero-image-caption .hero-share-caption {
        font-size: 1.1rem;
    }

    .hero-container .hero-image-caption {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }

    .hero-container .hero-small .hero-image-caption {
        font-size: 1em;
        line-height: 1.2em;
    }

    .hero-small .hero-share-caption {
        font-size: .8rem;
    }
}

@media screen and (max-width: 640px) {
    .hero-container .hero-image-caption {
        font-size: 1.6rem;
        line-height: 1.8rem;
    }

    .hero-container .hero-image-caption .hero-share-caption {
        font-size: 1.1rem;
    }

    .hero-container .hero-image-caption {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }

    .hero-container .hero-small .hero-image-caption {
        font-size: .6em;
        line-height: 1em;
    }

    .hero-small .hero-share-caption {
        font-size: .8rem;
    }
}</pre></body></html>