.content {
    padding: 3rem 0;
}

.content .container {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
}

.content .news {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content .news .new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content .news .new-img {
    border-radius: 4px;
    display: flex;
    overflow: hidden;
}

.content .news .new-img img {
    height: 250px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s ease;
}

.content .news .new-img:hover img {
    transform: scale(1.1);
}

.content .news .new-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.content .news .new-content .new-category {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 12px;
    background-color: var(--clr-primary-light);
    color: var(--clr-primary);
    font-family: var(--font-secondary);
}

.content .news .new-content .new-title {
    line-height: 1.2;
    font-size: 24px;
}

.content .news .new-content .new-date {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    font-weight: 500;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

.content .news .new-content .new-description {
    line-height: 1.5;
    color: var(--clr-text-light);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .content .news .new {
        flex-direction: row;
    }

    .content .news .new-img {
        width: 320px;
    }

    .content .news .new-content {
        flex: 1;
    }
}

@media screen and (min-width: 912px) {
    .content .news .new-img {
        flex: 1;
    }
}

@media screen and (min-width: 1024px) {
    .content {
        padding: 5rem 0;
    }

    .content .container {
        flex-direction: row;
    }

    .content .news .new {
        align-items: center;
        gap: 1.5rem;
    }

    .content .news .new-img {
        background-color: var(--clr-gray);
    }

    .content .news .new-img img {
        min-height: 320px;
    }
}

/*# sourceMappingURL=news.css.map */