:root {
    --nb-blue: #0b3d91;
    --nb-blue-dark: #082b67;
    --nb-white: #ffffff;
    --nb-text: #12305f;
    --nb-muted: #60708f;
    --nb-bg: #ffffff;
    --nb-soft: #f3f6fb;
    --nb-border: #e3e9f2;
    --nb-yellow: #f2a900;
}
.single-post-hero {
    padding: 56px 0 34px;
    background: #f5f8fc;
}

.single-post-breadcrumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--nb-blue);
}

.single-post-breadcrumbs a {
    color: var(--nb-blue);
    text-decoration: none;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.single-post-meta span {
    color: var(--nb-yellow);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.single-post-title {
    max-width: 900px;
    margin: 0;
    color: var(--nb-blue-dark);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 900;
}

.single-post-image {
    margin-top: 34px;
    border-radius: 18px;
    overflow: hidden;
}

.single-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content-wrap {
    padding: 56px 0 80px;
}

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

.single-post-content {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.9;
}

.single-post-content p {
    margin-bottom: 1.7em;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.single-post-sidebar {
    position: sticky;
    top: 30px;
}

.single-widget {
    padding: 26px;
    border: 1px solid #e6edf5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(18, 48, 107, 0.06);
}

.single-widget h3 {
    margin: 0 0 24px;
    color: #12306b;
    font-size: 20px;
}

.sidebar-post {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    margin-bottom: 18px;
    text-decoration: none;
}

.sidebar-post:last-child {
    margin-bottom: 0;
}

.sidebar-post-image {
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-post-image img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.sidebar-post-content h4 {
    margin: 0 0 8px;
    color: #12306b;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-post-content span {
    color: #6c7c91;
    font-size: 12px;
}
@media (max-width: 1024px) {

    .single-post-layout {
        grid-template-columns: 1fr;
    }

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

}

@media (max-width: 768px) {

    .single-post-hero {
        padding: 42px 0 28px;
    }

    .single-post-content-wrap {
        padding: 40px 0 60px;
    }

    .single-widget {
        padding: 20px;
    }

}