.cg-news-feed {
    display: grid;
    gap: 28px;
}

.cg-news-card--featured {
    display: block;
}

.cg-news-card--featured .cg-news-card__wrap {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1.45fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    color: inherit;
    border-radius: var(--cg-radius);
}

.cg-news-card--featured .cg-news-card__thumb-link {
    display: grid;
    place-items: center;
    width: min(100%, 340px);
    max-width: 340px;
    aspect-ratio: 1 / 1;
    justify-self: center;
    align-self: start;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(43, 36, 53, 0.72);
}

.cg-news-card--featured .cg-news-card__thumb-image,
.cg-news-card--featured .cg-news-card__thumb {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    padding: clamp(12px, 1.5vw, 18px);
    background: rgba(43, 36, 53, 0.72);
}

.cg-news-card__body {
    display: grid;
    align-content: start;
    gap: 14px;
}

.cg-news-card--featured .cg-news-card__body {
    max-width: 62ch;
}

.cg-news-card--featured .cg-news-card__title {
    font-size: clamp(30px, 3vw, 44px);
}

.cg-news-card--featured .cg-news-card__excerpt {
    display: -webkit-box;
    margin-bottom: 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cg-single-post h1,
.cg-single-post__content {
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: auto;
}

.cg-single-post__hero {
    display: block;
    width: min(100%, 620px);
    max-width: 620px;
    height: auto;
    max-height: min(68vh, 520px);
    margin: 0 auto 24px;
    border-radius: 14px;
    object-fit: contain;
    object-position: center;
    background: rgba(43, 36, 53, 0.72);
}

@media (max-width: 860px) {
    .cg-news-card--featured .cg-news-card__wrap {
        grid-template-columns: 1fr;
    }
    .cg-news-card--featured .cg-news-card__thumb-link {
        width: min(100%, 320px);
    }
}

@media (max-width: 760px) {
    .cg-news-feed,
    .cg-more-news {
        gap: 22px;
    }
    .cg-news-card__wrap {
        gap: 14px;
    }
    .cg-news-card__thumb-link {
        width: min(100%, 320px);
        justify-self: center;
    }
    .cg-news-card__body {
        gap: 12px;
        justify-items: center;
        text-align: center;
    }
    .cg-news-card__title {
        max-width: 16ch;
        font-size: clamp(22px, 6.6vw, 28px);
        text-align: center;
        text-wrap: balance;
    }
    .cg-news-card__excerpt {
        max-width: 32ch;
        font-size: 14.5px;
        line-height: 1.7;
        text-align: center;
    }
    .cg-news-card__meta,
    .cg-news-card__link {
        justify-self: center;
    }
    .cg-news-card--featured .cg-news-card__body {
        max-width: min(100%, 34ch);
        justify-items: center;
        text-align: center;
    }
    .cg-news-card--featured .cg-news-card__badge,
    .cg-news-card--featured .cg-news-card__meta,
    .cg-news-card--featured .cg-news-card__link {
        justify-self: center;
    }
    .cg-news-card--featured .cg-news-card__title,
    .cg-news-card--featured .cg-news-card__excerpt {
        text-align: center;
    }
    .cg-single-post {
        padding: 18px 16px;
    }
    .cg-single-post__hero {
        width: min(100%, 248px);
        max-width: 248px;
        max-height: 248px;
        margin-bottom: 18px;
    }
    .cg-single-post h1 {
        width: min(100%, 16ch);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
        font-size: clamp(26px, 7.2vw, 32px);
        line-height: 1.12;
        text-align: center;
        text-wrap: balance;
    }
    .cg-single-post__content {
        width: min(100%, 30rem);
        font-size: 14.5px;
        line-height: 1.72;
    }
    .cg-post-navigation__title {
        font-size: 18px;
    }
}