.blog-hero {
    background: linear-gradient(135deg, #145fb7 0%, #1d7ae6 48%, #73abea 100%);
    color: #fff;
    padding: 56px 0 44px;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 12px;
}

.blog-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    opacity: 0.94;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 13px;
}

.breadcrumbs a,
.breadcrumbs span {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.breadcrumbs-sep {
    opacity: 0.7;
}

.blog-content {
    padding: 56px 0;
    background: #eef3f8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.blog-post {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15, 61, 116, 0.1);
    box-shadow: 0 10px 24px rgba(10, 50, 102, 0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.blog-header {
    margin-bottom: 14px;
}

.blog-header h2 {
    line-height: 1.35;
    margin-bottom: 8px;
}

.blog-title-link {
    color: #0f4f95;
    text-decoration: none;
}

.blog-title-link:hover {
    color: #0a3f78;
}

.blog-date {
    color: #70839a;
    font-size: 13px;
}

.blog-excerpt {
    color: #4f6278;
    margin-bottom: 18px;
    flex: 1;
}

.blog-internal-links {
    margin-top: 34px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15, 61, 116, 0.1);
    box-shadow: 0 8px 22px rgba(10, 50, 102, 0.06);
    padding: 24px;
}

.blog-internal-links h2 {
    color: #114880;
    margin-bottom: 12px;
}

.blog-internal-links ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.blog-internal-links a {
    color: #0e5cb5;
    text-decoration: none;
    font-weight: 600;
}

.blog-internal-links a:hover {
    color: #093f7a;
}

.post-page {
    padding-top: 40px;
}

.post-page .breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 16px;
}

.post-page .breadcrumbs a,
.post-page .breadcrumbs span {
    color: #5e7288;
}

.blog-post-full {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 61, 116, 0.12);
    box-shadow: 0 16px 30px rgba(10, 50, 102, 0.08);
    padding: 30px;
}

.blog-post-top h1 {
    color: #113f72;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.blog-lead {
    color: #4f6278;
    font-size: 18px;
    margin-top: 10px;
}

.post-section {
    margin-top: 24px;
}

.post-section h2 {
    color: #114880;
    margin-bottom: 10px;
    font-size: clamp(22px, 3vw, 30px);
}

.post-section p {
    color: #3d5168;
    margin-bottom: 12px;
}

.post-section ul {
    margin-left: 20px;
    color: #3d5168;
}

.post-section li {
    margin-bottom: 8px;
}

.post-cta-links {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 61, 116, 0.12);
}

.post-cta-links h2 {
    color: #114880;
    margin-bottom: 8px;
}

.post-cta-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 42px 0;
    }

    .blog-post-full {
        padding: 20px;
    }

    .post-cta-actions .btn {
        width: 100%;
    }
}
