.blog-hero {
    position: relative;
    padding: 6rem 0;
    background-image: url('/assets/imgs/ambiente-de-atendimento-odontológico.jpeg');
    background-size: cover;
    background-position: center;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
}

.blog-header {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.blog-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-header p {
    font-size: 1.1rem;
}

.blog-meta {
    font-size: 0.75rem;
    opacity: 0.5;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.blog-card {
    background: var(--secondary-bg-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.blog-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-content h2 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8rem;
}

.blog-content p {
    font-size: 1rem;
}

.blog-read {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}