.blog-module-page {
    background: linear-gradient(180deg, #061423 0%, #0b2f4a 100%);
    color: #10263c;
}

.blog-main {
    padding: 130px 0 0;
}

.blog-shell {
    padding: 40px 0 80px;
}

.blog-list-hero,
.blog-detail-card,
.blog-empty-state {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(4, 26, 43, 0.16);
    margin-bottom: 28px;
    padding: 38px;
}

.blog-kicker {
    color: #0ec3e8;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-list-hero h1,
.blog-detail-header h1,
.blog-empty-state h1 {
    color: #0c2740;
    font-size: 52px;
    line-height: 1.02;
    margin: 0 0 16px;
}

.blog-list-hero p,
.blog-empty-state p,
.blog-card p,
.blog-home-card p {
    color: #4f657a;
    font-size: 18px;
    line-height: 1.7;
}

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

.blog-card,
.blog-home-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(9, 45, 73, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.blog-card-image img,
.blog-home-card-image img,
.blog-featured-media img {
    display: block;
    width: 100%;
}

.blog-card-image img,
.blog-home-card-image img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-card-body,
.blog-home-card-body {
    padding: 24px;
}

.blog-card h2,
.blog-home-card h3 {
    font-size: 28px;
    line-height: 1.2;
    margin: 12px 0;
}

.blog-card h2 a,
.blog-home-card h3 a,
.blog-read-more,
.blog-breadcrumbs a {
    color: #0c2740;
    text-decoration: none;
}

.blog-read-more,
.blog-cta {
    align-items: center;
    background: linear-gradient(90deg, #0c2941 0%, #12b9de 100%);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    padding: 12px 18px;
}

.blog-cta-secondary {
    background: #eef6fb;
    color: #0c2740;
}

.blog-pill,
.blog-tag-chip {
    background: #e9faff;
    border-radius: 999px;
    color: #0b7792;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 12px;
}

.blog-detail-header,
.blog-home-header {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.blog-breadcrumbs {
    color: #667c91;
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.blog-detail-actions,
.blog-detail-footer {
    display: flex;
    margin-bottom: 24px;
}

.blog-detail-footer {
    margin-top: 28px;
    margin-bottom: 0;
}

.blog-featured-media {
    border-radius: 22px;
    margin-bottom: 28px;
    overflow: hidden;
}

.blog-body-content {
    color: #21384d;
    font-size: 18px;
    line-height: 1.8;
}

.blog-body-content h2,
.blog-body-content h3 {
    color: #0c2740;
    margin-top: 34px;
}

.blog-body-content ul {
    padding-left: 22px;
}

.blog-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.blog-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.blog-pagination a {
    background: #fff;
    border-radius: 12px;
    color: #0c2740;
    display: inline-flex;
    font-weight: 700;
    min-width: 44px;
    justify-content: center;
    padding: 12px 14px;
    text-decoration: none;
}

.blog-pagination a.is-active {
    background: #0c2740;
    color: #fff;
}

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

.blog-home-section .container {
    background: linear-gradient(135deg, #0d2c47 0%, #1c90b7 100%);
    border-radius: 34px;
    box-shadow: 0 22px 50px rgba(7, 30, 50, 0.18);
    padding: 44px;
}

.blog-home-header h2 {
    color: #fff;
    font-size: 44px;
    margin: 8px 0 0;
}

.blog-home-card p,
.blog-home-card h3 a,
.blog-home-card .blog-pill {
    position: relative;
    z-index: 1;
}

.blog-footer {
    background: #071826;
    color: #d7e4ee;
    margin-top: 60px;
    padding: 36px 0;
}

.blog-footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.3fr .7fr;
}

.blog-footer-logo img {
    max-width: 190px;
}

.blog-footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}

.blog-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-footer li + li {
    margin-top: 8px;
}

.blog-footer a {
    color: #d7e4ee;
    text-decoration: none;
}

.blog-footer-copy {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 26px;
    padding-top: 16px;
}

@media (max-width: 991px) {
    .blog-grid,
    .blog-home-grid,
    .blog-footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-header,
    .blog-home-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-list-hero h1,
    .blog-detail-header h1,
    .blog-home-header h2 {
        font-size: 36px;
    }
}
