.blog.publicacao h2 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog.publicacao .category-desc {
    text-align: center;
    font-size: 22px;
    color: #15143966;
}

.filters-wrapper {
}

.filter-tags select ,
.filter-order select {
    border: 0px;
    color: #15143966;
    line-height: 26px;
    font-size: 14px;
}

.article-list .col-lg-4 {
    margin-bottom: 30px;
}

.card {
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    
}

.card-title {
    padding: 0 15px 5px;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #353E5D;
    font-family: 'Inter', sans-serif;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--bs-primary);
}

.card-text {
    padding: 0 15px 10px 15px;
    color: #6D758F;
    font-size: 16px;
    line-height: 150%;
    font-family: 'Inter', sans-serif;
}

.publicacao .tags {
    margin: 0;
    padding: 0 15px 10px;
    color: #6D758F;
    font-size: 16px;
}

.card-img-top {
    height: 270px;
    object-fit: cover;
}

.containerTituloPublicacao{
    background-color: #122645; /* Your desired background */
    width: 100vw; /* Viewport width */
    margin-left: calc(-50vw + 50%);
    margin-top: -60px;
    margin-bottom: 60px;
    padding: 100px 0;
}

.containerTituloPublicacao h2{
    float: none;
    font-size: 58px!important;
    color: #ffffff!important;
    line-height: 70px;
}

.containerTituloPublicacao .article-tags{
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .filters-wrapper .d-flex {
        flex-direction: column;
    }

    .filter-tags,
    .filter-order {
        width: 100%;
    }

    .filter-order {
        flex-wrap: wrap;
    }

    .filter-order select {
        flex: 1;
        min-width: 150px;
    }
}