.news-item-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;

    margin-top: 3rem;
}

.news-item-info {
    max-width: 42rem;
    font-size: 17px;
    line-height: 1.5;
    color: #111;
}

.news-item-info dl {
    margin: 0 0 1.5rem;
}

.news-item-info dt {
    font-size: 17px;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    letter-spacing: 0.02em;
}

.news-item-info dd {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 400;
    color: #222;
}

.news-item-description {
    margin-bottom: 1.75rem;
    font-size: 17px;
    line-height: 1.5;
    color: #222;
}

.news-item-description p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.news-item-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-item-links li {
    margin-bottom: 0.4rem;
}

.news-item-info a {
    color: #02cafc;
    text-decoration: none;
}

.news-item-info a:hover {
    color: #111;
    text-decoration-color: #111;
}

.news-item-media {
    min-width: 0;
}

.news-item-media figure {
    margin: 0;
}

.news-item-media img {
    display: block;
    width: 100%;
    height: auto;
}

.news-item-media figcaption {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
}

@media screen and (max-width: 960px) {
    .news-item-layout {
        grid-template-columns: 1fr;
        gap: 1.0rem;
    }

    .news-item-info dl {
        margin-bottom: 0.75rem;
    }

    .news-item-description {
        margin-bottom: 0.7rem;
    }
}

/* Mobile landscape */
@media screen and (max-width: 960px) and (orientation: landscape) and (max-height: 640px) {
    .news-item-layout {
        width: 60%;
        max-width: 60%;
        margin-right: auto;
    }

    .news-item-page h1,
    .news-item-page .hero-title {
        width: 60%;
        max-width: 60%;
        margin-right: auto;
    }
}