/* === BLOG SECTION (DESIGN PRINT 5) === */

.blog-new-section {
    padding: 100px 0;
    background-color: white;
}

.blog-header-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.blog-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.blog-subtitle-new {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Grid de Posts */
.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Style */
.blog-card-new {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #E5E7EB;
    /* Borda súbtil */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-thumb-new {
    height: 200px;
    background-color: #111827;
    /* Fallback color */
    position: relative;
    overflow: hidden;
}

.blog-thumb-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.3s;
}

.blog-card-new:hover .blog-thumb-new img {
    transform: scale(1.05);
}

/* Conteúdo do Card */
.blog-content-new {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-badge-new {
    display: inline-block;
    background-color: #EFF6FF;
    /* Azul bem claro */
    color: #2563EB;
    /* Azul Royal */
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    /* Pill shape */
    margin-bottom: 15px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt-new {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    /* Empurra o rodapé para baixo */
}

.blog-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F3F4F6;
    padding-top: 20px;
    margin-top: auto;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.blog-read-more:hover {
    color: #1d4ed8;
}

.blog-date-new {
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-grid-new {
        grid-template-columns: 1fr;
    }
}