/* Blog system */

.blog-hero {
    background: linear-gradient(135deg, #0f2f4f 0%, #1e4d7a 62%, #2d6f7f 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.blog-hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, transparent 42%),
        linear-gradient(180deg, transparent 0, rgba(11, 31, 51, 0.2) 100%);
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.blog-hero > .container {
    position: relative;
    z-index: 1;
}

.blog-kicker {
    color: #d8f2f2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(15, 47, 79, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 47, 79, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
    border-color: rgba(45, 111, 127, 0.34);
    box-shadow: 0 18px 42px rgba(15, 47, 79, 0.13);
    transform: translateY(-2px);
}

.blog-chip {
    align-items: center;
    background: #eef7f7;
    border: 1px solid rgba(45, 111, 127, 0.18);
    border-radius: 999px;
    color: #1e4d5d;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
}

.blog-card-thumb {
    aspect-ratio: 16 / 9;
    background: #edf3f7;
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.blog-card-thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
    width: 100%;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.025);
}

.blog-side-panel {
    background: linear-gradient(180deg, #ffffff 0%, #eef7f7 100%);
}

.blog-side-list {
    color: #334155;
    display: grid;
    gap: 0.75rem;
    margin: 1.1rem 0 1.35rem;
}

.blog-side-list li {
    border-left: 3px solid #2d6f7f;
    padding-left: 0.85rem;
}

.blog-side-panel .cta-primary {
    background: #102f4e;
    color: #ffffff;
}

.blog-side-panel .cta-primary:hover {
    background: #1e4d7a;
}

.blog-article {
    background: #ffffff;
    border: 1px solid rgba(15, 47, 79, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(15, 47, 79, 0.08);
}

.blog-image-figure {
    margin: 2.25rem 0;
}

.blog-image-figure img {
    border: 1px solid rgba(15, 47, 79, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 47, 79, 0.12);
    display: block;
    height: auto;
    width: 100%;
}

.blog-image-figure figcaption {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.75rem;
    text-align: center;
}

.blog-article-content {
    color: #2f3a45;
    font-size: 1.06rem;
    line-height: 1.78;
    max-width: 73ch;
    margin: 0 auto;
}

.blog-article-content h2 {
    color: var(--brand-navy);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 2.75rem 0 1rem;
}

.blog-article-content h3 {
    color: var(--brand-navy);
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 1.1rem;
}

.blog-article-content ul,
.blog-article-content ol {
    padding-left: 1.35rem;
}

.blog-article-content li {
    margin-bottom: 0.55rem;
}

.blog-callout {
    background: #f2f8f8;
    border: 1px solid rgba(45, 111, 127, 0.2);
    border-radius: 8px;
    color: #233947;
    margin: 2rem 0;
    padding: 1.35rem;
}

.blog-note {
    background: #f8fafc;
    border-left: 4px solid #2d6f7f;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    padding: 1.35rem;
}

.blog-disclaimer {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.65;
    padding: 1rem;
}

.blog-cta-panel {
    background: linear-gradient(135deg, #102f4e 0%, #1e4d7a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
}

.blog-cta-panel .cta-primary {
    background: #ffffff;
    color: var(--brand-navy);
}

.blog-cta-panel .cta-primary:hover {
    background: #eaf5f5;
}

.blog-post-meta {
    color: #64748b;
    font-size: 0.92rem;
}

@media (max-width: 640px) {
    .blog-article-content {
        font-size: 1rem;
        line-height: 1.72;
    }
}
