.blog-hero {
    padding: 90px 0 105px;
    background: #ffffff;
}

.blog-hero__content {
    text-align: center;
}

.blog-hero__image img {
    width: 280px;
    max-width: 100%;
    height: auto;
}

.blog-hero__lead {
    max-width: 920px;
    margin: 22px auto 0;
    font-size: 18px;
    line-height: 1.85;
    color: #6c757d;
}

.blog-list-section {
    padding: 10px 0 80px;
}

.blog-card {
    width: 100%;
    min-height: 100%;
    background: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.blog-card__image-link {
    display: block;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 12px;
}

.blog-card__meta-item {
    font-size: 13px;
    color: #666666;
}

.blog-card__meta-item i {
    margin-right: 6px;
}

.blog-card__title {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.4;
}

.blog-card__title a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card__title a:hover {
    color: #00456f;
}

.blog-card__excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 18px;
    flex-grow: 1;
}

.blog-card__footer {
    margin-top: auto;
}

.blog-card__button {
    display: inline-block;
    padding: 10px 18px;
    background: #00456f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.blog-card__button:hover {
    background: #003252;
    color: #ffffff;
}

.blog-empty {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin: 40px 0;
}

@media (max-width: 992px) {
    .blog-hero {
        padding: 70px 0 30px;
    }

    .blog-hero__lead {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .blog-hero__image img {
        width: 230px;
    }

    .blog-card__image {
        height: 210px;
    }

    .blog-card__title {
        font-size: 18px;
    }

    .blog-card__excerpt {
        font-size: 14px;
    }
}