.noticias-item {
    border-radius: 4px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.noticias-category-tag {
    background-color: #2f8b5d;
    color: var(--white);
    padding: 4px 14px;
    font-size: 14px;
    line-height: 12px;
}

.noticias-category-tag:first-child {
    border-top-left-radius: 4px;
}

.noticias-category-tag:nth-child(2n) {
    background-color: #5ea881;
}

.noticias-item-title {
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--green-primary);
    height: 72px;
}

.noticias-item-title:hover {
    text-decoration: underline;
}

.noticias-item-preview {
    margin-bottom: 16px;
    color: var(--green-gray);
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.noticias-item-image {
    border-bottom: 10px solid var(--green-primary);
    max-width: 100%;
    width: 100%;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    height: 311px;
    object-fit: cover;
}

.noticias-item-image:hover {
    transform: scale(1.01);
}

.noticias-item-footer {
    justify-content: space-between;
}

.noticias-link {
    color: var(--green-primary);
}

.noticias-date {
    font-size: 12px;
    line-height: 14px;
    color: #a6a6a6;
}

.noticias-item-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.noticias-item-social {
    margin-top: 5px;
    margin-right: 5px;
}
.noticias-item-social-button {
    margin-right: 6px;
    cursor: pointer;
    text-decoration: none;
}
.noticias-item-social-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.noticias-item-social-button svg {
    width: 16px;
    fill: #ccc;
}

.noticias-item-social-button.large {
    margin-right: 10px;
}

.noticias-item-social-button:last-child,
.noticias-item-social-button.large:last-child {
    margin-right: 0;
}

.noticias-item-social-button.large svg {
    width: 25px;
}

.noticias-item-social-button.whatsapp:hover svg {
    fill: #25d366;
}

.noticias-item-social-button.facebook:hover svg {
    fill: #4267b2;
}

.noticias-item-social-button.linkedin:hover svg {
    fill: #1293d2;
}

@media screen and (max-width: 767px) {
    .noticias-item {
        margin-bottom: 16px;
    }

    .noticias-item-title {
        font-size: 16px;
        margin-bottom: 19.2px;
        height: 100px;
    }

    .noticias-item-preview,
    .noticias-link {
        font-size: 14px;
        line-height: 16.8px;
    }
}
