.blog-page {
    padding: 34px 0 72px;
    background:
        radial-gradient(circle at 18% 8%, rgba(37, 99, 235, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.blog-hero {
    max-width: 860px;
    margin-bottom: 26px;
    padding: 18px 0 4px;
}

.blog-hero .blog-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 14px;
    padding: 0 12px;
    border-radius: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
}

.blog-hero h1 {
    max-width: 720px;
    margin: 0 0 12px;
    color: #0f172a;
    font-size: clamp(1.78rem, 2.7vw, 2.45rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.blog-hero p {
    max-width: 650px;
    margin: 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
}

.blog-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 24px 58px rgba(15,23,42,0.09);
}

.blog-featured-media {
    min-height: 320px;
    background:
        linear-gradient(135deg, rgba(15,23,42,0.08), rgba(37,99,235,0.08)),
        #e2e8f0;
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.blog-featured-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 10px;
    border: 1px solid rgba(37,99,235,0.18);
    border-radius: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-featured h2 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.blog-featured p {
    margin: 0 0 18px;
    color: #475569;
    line-height: 1.72;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 12px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 14px 34px rgba(15,23,42,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,0.22);
    box-shadow: 0 20px 42px rgba(15,23,42,0.09);
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    background: #e2e8f0;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 17px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 0.84rem;
    font-weight: 750;
}

.blog-card h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.35;
}

.blog-card p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.65;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: #1d4ed8;
    font-weight: 850;
}

.blog-article {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(15,23,42,0.08);
}

.blog-article-head {
    padding: 38px 42px 30px;
    border-bottom: 1px solid rgba(148,163,184,0.16);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.blog-article-head h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.blog-article-image img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 36px 42px 44px;
    color: #334155;
    line-height: 1.8;
}

.blog-content h2,
.blog-content h3 {
    color: #0f172a;
    line-height: 1.3;
}

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

.blog-cta {
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(22,163,74,0.22);
    border-radius: 14px;
    background: #ecfdf5;
}

@media (max-width: 920px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-media {
        min-height: 220px;
    }

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

    .blog-article-head,
    .blog-content {
        padding: 24px;
    }
}
