.posts-destaques-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 23.25px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #111827;
}

.posts-destaques-title .fa-regular.fa-star {
    color: #FFD700;
    font-size: 22px;
}

.posts-destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0;
}

.post-destaque-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px -2px #0000001A;
    box-shadow: 0px 4px 6px -1px #0000001A;
    transition: transform 0.3s ease;
    border-top: 4px solid #3B82F6;
    background: #FFFFFF;

}

.post-destaque-item:hover {
    transform: translateY(-4px);
}

.post-thumbnail {
    position: relative;
    padding-top: 56.25%; /* Proporção 16:9 */
    overflow: hidden;
}

.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #666;
    background: #f5f5f5;
}

/* Cores específicas para categorias */
.post-category:contains("Conscientização") {
    background-color: #E3F2FD;
    color: #1976D2;
}

.post-category:contains("Vida Adulta") {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.post-category:contains("Saúde") {
    background-color: #FFF3E0;
    color: #F57C00;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.post-date, .reading-time {
    display: flex;
    align-items: center;
}

.post-title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: #0066cc;
}

.post-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ler-mais {
    display: inline-block;
    color: #2563EB;
    font-family: Inter;
    font-weight: 400;
    font-size: 15.38px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.ler-mais:hover {
    color: #004999;
}

/* Responsividade */
@media (max-width: 768px) {
    .posts-destaques-grid {
        grid-template-columns: 1fr;
    }
    
    .post-destaque-item {
        margin-bottom: 20px;
    }
} 