<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.update-preview {
    background: #fff;
    min-height: 100%;
    padding: 10px;
    box-shadow: 0 4px 45px 0 rgba(14,38,72,.1);
    position: relative;
}
.update-preview__img {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    --bs-aspect-ratio: 56.25%;
}
.update-preview__img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}
.update-preview__title {
    font-weight: 700;
    display: block;
    text-decoration: none;
    color: #1B4580;
    font-size: clamp(1rem, 0.7836rem + 0.8054vw, 1.75rem);
    margin-bottom: 16px;
}
.update-preview__title:hover {
    text-decoration: none;
    color: #1B4580;
    opacity: 0.8;
}
.update-preview__date {
    margin-top: 20px;
    color: #5C5C5C;
}

@media (max-width: 767px) {    
    .update-preview {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        height: 100%;
    }
    .update-preview__img {
        width: 40%;
        --bs-aspect-ratio: 100%;
        margin-bottom: 0;
    }
    .update-preview-content {
        width: 60%;
        padding: 0 15px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}</pre></body></html>