.news{
    width: 90%;
    max-width: var(--max-sm-width);
    margin: var(--gutter-section) auto;
}
.news__headline{
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.news__subheadline{
    color: var(--blue);
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}
.news__wrapper{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.news__card{
    display: grid;
    grid-template-areas: "image" "title" "description" "date";
    grid-template-columns: 1fr;
    column-gap: 1rem;
}
.news-card__image{
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    grid-area: image;
}
.news-card__title{
    color: var(--gray-80);
    font-size: var(--fs-small);
    font-weight: 600;
    grid-area: title;
}
.news-card__description{
    color: var(--gray-50);
    font-style: normal;
    font-weight: 400;
    grid-area: description;
}
.news-card__date{
    color: var(--light-blue);
    font-weight: 500;
    grid-area: date;
}

.news__cta{
    width: 270px;
    height: 40px;
    border-radius: 10px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--white);
    margin: 1rem auto;
    text-decoration: none;
}
.news__cta:hover{
    background: var(--blue);
    color:var(--white);
}
@media (min-width: 768px){
    .news__card{
        grid-column: 2 / 3;
        grid-template-columns: 1fr 2fr;
        grid-template-areas: "image title" "image description" "image date";
        column-gap: 2rem;
    }
    .news-card__image{
        width: 100%;
        height: 100%;
    }
}