.blog-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-hero p {
    max-width: 760px;
    margin: 1rem auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.blog-cta {
    margin-top: 2rem;
}

.blog-cta .cta-button {
    margin: 0 0.5rem;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
    background: var(--background);
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(26, 54, 93, 0.12);
}

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

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

.blog-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

.blog-card-content p {
    flex: 1;
    text-align: justify;
    color: var(--text);
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.blog-card-footer a {
    font-weight: 600;
}

.blog-placeholder {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 16px;
    background: var(--background-alt);
    border: 1px dashed rgba(26, 54, 93, 0.2);
    margin-top: 2rem;
}

.blog-placeholder p {
    text-align: justify;
}

