/* News page body cloned from the Chowly news layout, scoped to avoid site CSS clashes. */
.news-page {
    --news-text-primary: #212121;
    --news-text-secondary: #666;
    --news-button-bg: transparent;
    --news-button-text: #e66b24;
    --news-button-border: #e66b24;
    --news-button-hover-bg: transparent;
    --news-button-hover-border: #e66b24;
    background: linear-gradient(180deg, rgba(230, 107, 36, 0.08) 0px, rgba(230, 107, 36, 0) 520px);
    box-sizing: border-box;
    color: var(--news-text-primary);
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-bottom: 80px;
    width: 100%;
}

.news-page *,
.news-page *::before,
.news-page *::after {
    box-sizing: border-box;
}

.news-page figure,
.news-page article,
.news-page h2,
.news-page p,
.news-page img {
    margin: 0;
    padding: 0;
}

.news-page .news-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    margin: 40px auto 0;
    max-width: 1440px;
    padding: 0 16px;
    width: 100%;
}

.news-page .news-image,
.news-page .news-copy {
    flex-shrink: 0;
    width: 100%;
}

.news-page .news-image {
    display: none;
}

.news-page .news-image-mobile {
    display: block;
    margin-top: 16px;
    width: 100%;
}

.news-page .news-image img,
.news-page .news-image-mobile img {
    border-radius: 8px;
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}

.news-page .news-copy {
    text-align: left;
}

.news-page .news-title {
    color: var(--news-text-primary);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.48px;
    line-height: 1;
}

.news-page .news-title strong {
    font-weight: 700;
}

.news-page .news-body {
    color: var(--news-text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 16px;
    min-height: 0;
}

.news-page .news-button {
    align-items: center;
    background: var(--news-button-bg);
    border: 1px solid var(--news-button-border);
    border-radius: 6px;
    color: var(--news-button-text);
    display: inline-flex;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    height: 48px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 150%;
    margin-top: 28px;
    padding: 16px 32px;
    text-decoration: none;
}

.news-page .news-button:hover,
.news-page .news-button:focus {
    background: var(--news-button-hover-bg);
    border-color: var(--news-button-hover-border);
    color: var(--news-button-text);
    text-decoration: none;
}

@media (min-width: 1280px) {
    .news-page .news-section {
        flex-direction: row;
        gap: 24px;
        justify-content: space-evenly;
        margin-top: 80px;
        padding: 0;
    }

    .news-page .news-image {
        display: block;
        width: 500px;
    }

    .news-page .news-image-mobile {
        display: none;
    }

    .news-page .news-copy {
        width: 480px;
    }

    .news-page .news-title {
        font-size: 48px;
    }

    .news-page .news-body {
        font-size: 16px;
    }

    .news-page .news-section.is-image-left .news-image {
        order: 1;
    }

    .news-page .news-section.is-image-left .news-copy {
        order: 2;
    }

    .news-page .news-section.is-image-right .news-copy {
        order: 1;
    }

    .news-page .news-section.is-image-right .news-image {
        order: 2;
    }
}
