/* ================================================
   SINGLE POST Styles
   Styles for individual blog post pages
   ================================================ */

/* ── BLOG POST HERO ── */
.blog-post-hero {
    padding: 160px 56px 60px;
    position: relative;
    z-index: 1;
}

.blog-post-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

/* ── BLOG POST META ── */
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.blog-post-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a5aaf;
    background: rgba(26, 90, 175, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
}

.blog-post-date {
    font-size: 12px;
    font-weight: 400;
    color: #8a9bb5;
}

/* ── BLOG POST TITLE & SUBTITLE ── */
.blog-post-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.2;
    color: #0a1e3d;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-post-subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: #5a6d85;
}

/* ── BLOG POST COVER ── */
.blog-post-cover {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 48px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.blog-post-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── BLOG POST CONTENT ── */
.blog-post-content {
    position: relative;
    z-index: 1;
    padding: 0 56px 120px;
}

.blog-post-body {
    max-width: 760px;
    margin: 0 auto;
}

.blog-post-body h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #0a1e3d;
    margin: 48px 0 16px;
}

.blog-post-body h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.4;
    color: #0a1e3d;
    margin: 36px 0 12px;
}

.blog-post-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: #3d4f63;
    margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 0 0 20px 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: #3d4f63;
}

.blog-post-body li {
    margin-bottom: 8px;
}

.blog-post-body strong {
    font-weight: 600;
    color: #0a1e3d;
}

.blog-post-body blockquote {
    border-left: 3px solid #1a5aaf;
    padding: 16px 24px;
    margin: 32px 0;
    background: rgba(26, 90, 175, 0.04);
    border-radius: 0 8px 8px 0;
}

.blog-post-body blockquote p {
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    color: #1a5aaf;
    margin-bottom: 0;
}

/* ── BLOG POST CTA ── */
.blog-post-cta {
    margin-top: 64px;
    padding: 48px;
    background: #f0f4f8;
    border-radius: 12px;
    text-align: center;
}

.blog-post-cta h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #0a1e3d;
    margin: 0 0 12px;
}

.blog-post-cta p {
    font-size: 15px;
    font-weight: 400;
    color: #5a6d85;
    margin-bottom: 24px;
}

.blog-post-cta a {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #0a1e3d, #1a5aaf);
    padding: 14px 32px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 90, 175, 0.2);
}

/* ── BACK LINK ── */
.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a5aaf;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.blog-back:hover {
    color: #38b6e6;
}

.blog-back svg {
    width: 14px;
    height: 14px;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
    font-size: 12px;
    font-weight: 400;
    color: #8a9bb5;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: #8a9bb5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #1a5aaf;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #c5d0dc;
}

.breadcrumb-current {
    color: #5a6d85;
}

/* ── RELATED POSTS ── */
.related-posts {
    margin-top: 72px;
    padding-top: 72px;
    border-top: 1px solid rgba(10, 30, 61, 0.07);
}

.related-posts-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #0a1e3d;
    margin-bottom: 32px;
}

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

.related-post-card {
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 30, 61, 0.06);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 30, 61, 0.08);
}

.related-post-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-post-body {
    padding: 16px 20px 20px;
}

.related-post-body .blog-tag {
    font-size: 9px;
    margin-bottom: 8px;
    display: inline-block;
}

.related-post-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    color: #0a1e3d;
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1140px) {
    .blog-post-hero {
        padding: 120px 24px 40px;
    }

    .blog-post-content {
        padding: 0 24px 80px;
    }

    .blog-post-cta {
        padding: 32px 24px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}
