.blog-hub-section,
.blog-post-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(23, 92, 230, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.blog-hub-hero,
.blog-section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2457d6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.blog-eyebrow::before {
    content: "";
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #2457d6, rgba(36, 87, 214, 0.15));
}

.blog-hub-hero h2,
.blog-section-heading h3,
.blog-post-main h2 {
    margin: 16px 0 18px;
    color: #15244d;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.blog-hub-hero p,
.blog-empty-state p,
.blog-card p,
.blog-post-content,
.blog-post-sidebar p {
    color: #5f6f91;
    font-size: 18px;
    line-height: 1.75;
}

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

.blog-card,
.blog-empty-state,
.blog-sidebar-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(21, 36, 77, 0.08);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(20, 42, 102, 0.08);
}

.blog-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(20, 42, 102, 0.15);
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-media img,
.blog-post-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.blog-card-meta,
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    color: #7685a4;
    font-size: 14px;
    font-weight: 600;
}

.blog-card h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
}

.blog-card h3 a,
.blog-post-main h2,
.blog-sidebar-card h3 {
    color: #15244d;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2457d6, #37a0ec);
    color: #ffffff;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-read-more:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(36, 87, 214, 0.22);
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.blog-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(21, 36, 77, 0.1);
    border-radius: 50%;
    color: #15244d;
    font-weight: 700;
    background: #ffffff;
}

.blog-pagination a.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #2457d6, #37a0ec);
    color: #ffffff;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

.blog-post-main {
    padding: 42px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(21, 36, 77, 0.08);
    border-radius: 32px;
    box-shadow: 0 25px 70px rgba(20, 42, 102, 0.08);
}

.blog-post-figure {
    overflow: hidden;
    margin: 0 0 32px;
    border-radius: 24px;
    aspect-ratio: 16 / 9;
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol,
.blog-post-content blockquote,
.blog-post-content table {
    margin-bottom: 22px;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin: 34px 0 16px;
    color: #15244d;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.blog-post-content a {
    color: #2457d6;
    text-decoration: underline;
}

.blog-post-content blockquote {
    padding: 24px 28px;
    border-left: 4px solid #2457d6;
    border-radius: 18px;
    background: #f3f7ff;
    color: #15244d;
}

.blog-share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(21, 36, 77, 0.1);
}

.blog-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-share-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(21, 36, 77, 0.12);
    border-radius: 999px;
    color: #15244d;
    font-weight: 600;
}

.blog-post-sidebar {
    position: sticky;
    top: 130px;
}

.blog-sidebar-card,
.blog-empty-state {
    padding: 32px;
}

.blog-related-block {
    margin-top: 44px;
}

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

    .blog-post-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-post-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-hub-section,
    .blog-post-section {
        padding: 70px 0;
    }

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

    .blog-card-body,
    .blog-sidebar-card,
    .blog-empty-state,
    .blog-post-main {
        padding: 24px;
    }

    .blog-card h3 {
        font-size: 24px;
    }

    .blog-hub-hero p,
    .blog-empty-state p,
    .blog-card p,
    .blog-post-content,
    .blog-post-sidebar p {
        font-size: 16px;
    }

    .blog-share-bar {
        align-items: flex-start;
    }
}
