.blog-simple-hero {
    background: #101820;
    color: #fff;
    padding: 62px 0 48px;
}

.blog-simple-eyebrow {
    color: #ffcf5a;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-simple-hero h1 {
    color: #fff;
    font-size: 46px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.blog-simple-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 650px;
}

.blog-simple-count {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
}

.blog-simple-list {
    background: #f7f9fb;
    padding: 58px 0 70px;
}

.blog-simple-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-simple-card {
    background: #fff;
    border: 1px solid #e5ebf0;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-simple-card:hover {
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.11);
    transform: translateY(-4px);
}

.blog-simple-card__image {
    background: #dfe6ed;
    display: block;
    height: 220px;
}

.blog-simple-card__image img,
.blog-detail-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blog-simple-card__body {
    padding: 22px;
}

.blog-simple-card time,
.blog-detail-header time {
    color: #687684;
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-simple-card h2 {
    color: #17212b;
    font-size: 21px;
    line-height: 1.32;
    margin-bottom: 10px;
}

.blog-simple-card h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-simple-card p {
    color: #52606d;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-simple-read,
.blog-detail-back {
    color: #d7352a;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.blog-empty-state {
    background: #fff;
    border: 1px dashed #cbd5df;
    border-radius: 8px;
    padding: 48px 28px;
    text-align: center;
}

.blog-empty-state h2 {
    color: #17212b;
    font-size: 26px;
    margin-bottom: 10px;
}

.blog-empty-state p {
    color: #52606d;
    font-size: 15px;
    margin: 0 auto;
    max-width: 520px;
}

.blog-detail-simple {
    background: #fff;
    padding: 48px 0 72px;
}

.blog-detail-simple .container {
    max-width: 940px;
}

.blog-detail-back {
    margin-bottom: 26px;
}

.blog-detail-header {
    margin-bottom: 28px;
}

.blog-detail-header h1 {
    color: #17212b;
    font-size: 44px;
    line-height: 1.14;
    margin-bottom: 16px;
}

.blog-detail-header p {
    color: #52606d;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.blog-detail-image {
    background: #dfe6ed;
    border-radius: 8px;
    height: 440px;
    margin-bottom: 34px;
    overflow: hidden;
}

.blog-detail-content {
    color: #2f3a45;
    font-size: 17px;
    line-height: 1.85;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: #17212b;
    margin: 28px 0 12px;
}

.blog-detail-content p {
    margin-bottom: 18px;
}

.blog-detail-content img {
    border-radius: 8px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 991px) {
    .blog-simple-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .blog-simple-hero {
        padding: 44px 0 36px;
    }

    .blog-simple-hero h1,
    .blog-detail-header h1 {
        font-size: 34px;
    }

    .blog-simple-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-image {
        height: 280px;
    }
}
