.posts-carousel-container {
    position: relative;
    width: 100%;
    margin: 40px 0 20px;
    padding-top: 60px;
}

/* Setas de navegação */
.posts-carousel-setas {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.seta {
    width: 40px;
    height: 40px;
    border: none;
    /*border-radius: 50%;*/
    background: #1e1e1e;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.seta:hover {
    background: #333;
    transform: scale(1.1);
}

/* Row do carrossel */
.posts-carousel-row {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0 20px;
    margin: 0;
    list-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}

.posts-carousel-row::-webkit-scrollbar {
    height: 6px;
}

.posts-carousel-row::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.posts-carousel-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Slide */
.posts-carousel-slide {
    flex-shrink: 0;
}

/* Card do post - simplificado */
.post-card {
    /*background: #fff;*/
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Autor */
.post-autor {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.autor-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.autor-nome {
    font-size: 15px;
    font-weight: 500;
    color: #027fff;
    line-height: 1.3;
}

/* Título do post - 14px como pedido */
.post-titulo {
    margin: 0;
    
    line-height: 1.5;
    font-weight: 500;
}

.post-titulo a {
    font-size: 14px !important; /* Forçando 14px */
    color: #1e1e1e;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.post-titulo a:hover {
    color: #0073aa;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .posts-carousel-container {
        padding-top: 50px;
    }
    
    .seta {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .post-card {
        padding: 15px;
    }
    
    .autor-avatar {
        width: 38px;
        height: 38px;
    }
    
    .autor-nome {
        font-size: 14px;
    }
    
    .post-titulo {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 480px) {
    .seta {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}