/* Botões de Compartilhamento Compactos */
.social-share-compact {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    align-items: center;
}

.share-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.share-compact.facebook {
    background-color: #1877f2;
}

.share-compact.facebook:hover {
    background-color: #166fe5;
}

.share-compact.twitter {
    background-color: #1da1f2;
}

.share-compact.twitter:hover {
    background-color: #0d8bd9;
}

.share-compact.whatsapp {
    background-color: #25d366;
}

.share-compact.whatsapp:hover {
    background-color: #1ebe57;
}

.share-compact.linkedin {
    background-color: #0077b5;
}

.share-compact.linkedin:hover {
    background-color: #005885;
}

.share-compact.telegram {
    background-color: #0088cc;
}

.share-compact.telegram:hover {
    background-color: #006ba6;
}

/* Estilo do Título da Categoria */
.category-header .page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    border-left: 4px solid #fbbf24;
    padding-left: 15px;
    margin-bottom: 20px;
    position: relative;
}

.category-header .page-title::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #fbbf24, #f59e0b);
}

.category-header .page-title span {
    color: #1f2937;
}

.share-compact.whatsapp:hover {
    background-color: #1ebe57;
}

.share-compact.linkedin {
    background-color: #0077b5;
}

.share-compact.linkedin:hover {
    background-color: #005885;
}

.share-compact.telegram {
    background-color: #0088cc;
}

.share-compact.telegram:hover {
    background-color: #006ba6;
}

/* Layout Horizontal dos Posts */
.post-card-horizontal {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.post-card-horizontal:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.post-image-wrapper {
    height: 246px;
    overflow: hidden;
}

.post-image-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.post-card-horizontal:hover .post-image-wrapper img {
    transform: scale(1.05);
}

.post-content-wrapper {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-category-wrapper {
    margin-bottom: 10px;
}

.post-category {
    background-color: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 8px;
}
.post-titulo {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0 27px 0;
    color: #333;
}

.post-titulo a {
    color: inherit;
    text-decoration: none;
}

.post-titulo a:hover {
    color: #dc3545;
}

.post-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0px 0 27px 0;
    color: #333;
}
.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-title a:hover {
    color: #dc3545;
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 15px 0 -8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-meta-info {
    font-size: 12px;
    color: #999;
    margin: 12px 0;
    font-weight: 400;
}

.post-separator {
    margin: 0 8px;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .post-card-horizontal .row {
        flex-direction: column;
    }
    
    .post-image-wrapper {
        height: 150px;
    }
    
    .post-content-wrapper {
        padding: 15px;
    }
    
    .post-title {
        font-size: 16px;
    }
    
    .social-share-compact {
        gap: 6px;
        margin: 12px 0;
    }
    
    .share-compact {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .post-image-wrapper {
        height: 120px;
    }
    
    .post-content-wrapper {
        padding: 12px;
    }
    
    .post-title {
        font-size: 14px;
    }
    
    .post-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .social-share-compact {
        gap: 4px;
        margin: 10px 0;
    }
    
    .share-compact {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}