<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#hero-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    gap: 0.5rem;
    grid-template-areas: "hero-news";
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    #hero-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "hero-news hero-totm";
    }
}

@media (min-width: 1025px) {
    #hero-container {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        grid-template-areas: "hero-news hero-totm"
            "hero-news hero-video";
    }
}

#hero-container a {
    text-decoration: none;
}

.hero-news {
    grid-area: hero-news;
    width: 100%;
    height: 256px;
    position: relative;
}

@media (min-width: 1025px) {
    .hero-news {
        height: 600px;
    }
}

.hero-news:hover {
    cursor: pointer;
}

@media (max-width: 767px) {
    .hero-video {
        display: none;
    }

    .hero-totm {
        display: none;
    }
}

@media (max-width: 1025px) {
    .hero-video {
        display: none;
    }
}

.hero-news img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    display: block;
}

.hero-news .textbox {
    background-color: var(--primary-dark);
    background: linear-gradient(to bottom, var(--primary-dark-gradient-end-opacity), var(--primary-dark-gradient-start-opacity));
    color: var(--plaintext-light);
    width: 100%;
    padding: 1rem;
    position: absolute;
    bottom: 0;
}

.hero-news:hover .textbox {
    background: var(--secondary-dark-gradient-start);
    background: linear-gradient(to bottom, var(--secondary-dark-gradient-start), var(--secondary-dark));
}

@media (min-width: 1025px) {
    .hero-news img {
        height: 600px;
    }
}

.hero-news .textbox h1 {
    font-size: 1.25rem;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-news .textbox p {
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-news:hover .textbox h1 {
    height: auto;
    white-space: unset;
}

.hero-news:hover .textbox p {
    max-height: 46px;
}

@media (min-width: 1025px) {
    .hero-news .textbox h1 {
        font-size: 2rem;
        height: 38px;
    }

    .hero-news .textbox {
        padding: 1.25rem 1rem;
    }
}

.hero-totm {
    grid-area: hero-totm;
    width: 100%;
    height: 256px;
    position: relative;
}

@media (min-width: 1025px) {
    .hero-totm {
        height: 296px;
    }
}

.hero-totm:hover {
    cursor: pointer;
}

.hero-totm:hover .textbox {
    background: var(--secondary-dark-gradient-start);
    background: linear-gradient(to bottom, var(--secondary-dark-gradient-start), var(--secondary-dark));
}

.hero-totm img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    display: block;
}

@media (min-width: 1025px) {
    .hero-totm img {
        height: 296px;
    }
}

.hero-totm .textbox {
    background-color: var(--primary-dark);
    background: linear-gradient(to bottom, var(--primary-dark-gradient-end-opacity), var(--primary-dark-gradient-start-opacity));
    color: var(--plaintext-light);
    width: 100%;
    padding: 1rem;
    position: absolute;
    bottom: 0;
}

.hero-totm .textbox h2 {
    font-size: 1.25rem;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-totm:hover .textbox h2 {
    height: auto;
    white-space: unset;
}

.hero-totm .textbox p {
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-totm:hover .textbox p {
    max-height: 46px;
}

.hero-video {
    grid-area: hero-video;
    width: 100%;
    height: 296px;
    position: relative;
}

.hero-video:hover {
    cursor: pointer;
}

.hero-video:hover .textbox {
    background: var(--secondary-dark-gradient-start);
    background: linear-gradient(to bottom, var(--secondary-dark-gradient-start), var(--secondary-dark));
}

.hero-video img {
    width: 100%;
    height: 296px;
    object-fit: cover;
    display: block;
}

.hero-video .textbox {
    background-color: var(--primary-dark);
    background: linear-gradient(to bottom, var(--primary-dark-gradient-end-opacity), var(--primary-dark-gradient-start-opacity));
    color: var(--plaintext-light);
    width: 100%;
    padding: 1rem;
    position: absolute;
    bottom: 0;
}

.hero-video .textbox h2 {
    font-size: 1.25rem;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-video:hover .textbox h2 {
    height: auto;
    white-space: unset;
}

.hero-video .textbox p {
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-video:hover .textbox p {
    max-height: 46px;
}

.hero-video .video-indicator {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 2;
    top: 60px;
    left: calc(50% - 35px);
}
</pre></body></html>