.noticias-recentes-img-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.noticias-recentes-img-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticias-recentes-div .noticias-detalhes {
    background-color: #EFF5F9;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
    display: flex;
    font-size: 1.25rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1D2A4D;
    flex-grow: 1;
}

.noticias-recentes-div .noticias-detalhes > span {
    max-width: 250px;
}

@media (min-width: 992px) {
    .noticias-recentes-div .noticias-detalhes > span {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.img-noticia {
    height: 260px;
    object-fit: cover;
}

.noticia-card-bottom {
    height: 220px;
}

.row-noticias {
    align-items: stretch;
}

.row-noticias .col-noticia {
    display: flex;
}

.noticia-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #EFF5F9;
    border-radius: 8px;
    color: #848E9F;
}

.noticia-card .content {
    flex-grow: 1;
}

.noticia-card .title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1D2A4D;
    display: block;
    font-size: 1.3rem;
    min-height: 4em;
    align-content: center;
}

.noticia-card .subtitle {
    margin: 0;
    font-size: 1rem;
    flex-grow: 1;
}

.noticia-card .image-div {
    position: relative;
    overflow: hidden;
    /* aspect-ratio: 4 / 3; */
}

.noticia-card .image-div {
    position: relative;
}

.noticia-card .image-div img {
    width: 100%;
    height: 274px;
    object-fit: cover;
    transition: ease-in-out .5s;
}

.noticia-card .categoria-badge {
    position: absolute;
    top: 10px;
    left: 10px;

    background: rgba(0, 0, 0, 0.7);
    color: #fff;

    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    font-weight: 500;
}

.noticia-card .image-div img:hover {
    transform: scale(1.15);
}

.content p,
.date-content small {
    color: #626262 !important;
}


.categoria-toast-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.categoria-toast {
    display: inline-block;
    padding: 6px 14px;

    font-size: 13px;
    font-weight: 500;
    text-decoration: none;

    color: #fff;
    background: rgba(0, 0, 0, 0.6);

    border-radius: 20px;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition: all 0.2s ease;
}

/* Hover */
.categoria-toast:hover {
    background: var(--primary, #367cdd);
    color: #fff;
    transform: translateY(-2px);
}

/* Ativo */
.categoria-toast.active {
    background: var(--primary, #367cdd);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
