@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

.qualiconsig-related-posts {
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 100px;
    width: 100%;
    text-align: center;
}

.qualiconsig-related-posts .swiper {
    width: 100%;
    padding: 40px 0;
}
.qualiconsig-related-posts .swiper-slide {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 280px; /* tamanho fixo para efeito coverflow */
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.qualiconsig-related-posts .swiper-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.qualiconsig-related-posts .post-content {
    padding: 15px;
    color: #333;
}

.qualiconsig-related-posts .post-content h3 {
    font-size: 18px;
    margin: 10px 0;
    font-family: 'Montserrat', 'Roboto', 'Arial', sans-serif;
}
.qualiconsig-related-posts .post-content h3 a {
    color: #333;
}

.qualiconsig-related-posts a.btn-posts {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    padding: 8px 15px;
    background: #001f60;
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s;
    font-size: 13px;
    font-family: 'Montserrat', 'Roboto', 'Arial', sans-serif;
    font-weight: bold;
}
.qualiconsig-related-posts a.btn-posts:hover {
    background: #003399;
}
/* Responsividade */
@media (max-width: 768px) {
    .qualiconsig-related-posts .swiper-slide {
        width: 80%;
    }
}