/* Blog detail — Figma node 1687:15196 */

.page--single-blog {
    scroll-behavior: smooth;
}

.page--single-blog main {
    background: #fff;
}

.blog-detail-scroll-target {
    scroll-margin-top: 96px;
}

/* Article body */
.blog-detail-body {
    padding: 60px 0;
}

.blog-detail-body__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-detail-body__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-detail-body__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.blog-detail-body__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    min-width: 0;
    padding: 10px 14px;
    background: #055e98;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.48;
    text-transform: uppercase;
}

.blog-detail-body__read-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    white-space: nowrap;
}

.blog-detail-body__meta-dot {
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #545455;
}

.blog-detail-body__read-time {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.48;
    color: #545455;
    text-transform: uppercase;
}

.blog-detail-body__title {
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 3.1vw, 40px);
    font-weight: 800;
    line-height: 1.3;
    color: #150f2d;
}

.blog-detail-body__layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.blog-detail-body__main {
    flex: 0 0 820px;
    width: 100%;
    max-width: 820px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-detail-body__intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-detail-body__intro p,
.blog-detail-body__quote {
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
    color: #544f69;
}

.blog-detail-body__intro a,
.blog-detail-section a,
.blog-detail-role a,
.blog-detail-faq__answer a {
    color: #0066e5;
    text-decoration: underline;
}

/* Table of contents */
.blog-detail-toc {
    background: #f3f4f5;
    border-radius: 4px;
    padding: 20px;
}

.blog-detail-toc__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 14px 4px 4px;
    list-style: none;
    cursor: pointer;
}

.blog-detail-toc__summary::-webkit-details-marker {
    display: none;
}

.blog-detail-toc__title {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.28;
    color: #150f2d;
}

.blog-detail-toc__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.blog-detail-toc__chevron img {
    display: block;
    width: 16px;
    height: 16px;
}

.blog-detail-toc[open] .blog-detail-toc__chevron {
    transform: rotate(-180deg);
}

.blog-detail-toc__list {
    margin: 8px 0 0;
    padding: 0 0 0 21px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-detail-toc__list li {
    line-height: 1.48;
    color: #055e98;
}

.blog-detail-toc__list a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.48;
    color: #055e98;
    text-decoration: none;
}

.blog-detail-toc__list a:hover {
    text-decoration: underline;
}

.blog-detail-toc__list a .blog-detail-toc__text-link {
    color: #0066e5;
    text-decoration: underline;
}

/* Content sections */
.blog-detail-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-detail-section--bordered {
    padding-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
}

.blog-detail-section__title,
.blog-detail-role__title {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.28;
    color: #150f2d;
}

.blog-detail-section__title a {
    color: #0066e5;
    text-decoration: underline;
}

.blog-detail-section__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
    color: #544f69;
}

.blog-detail-section__groups {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-detail-section__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-detail-section__group-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.48;
    color: #150f2d;
}

.blog-detail-section__group-title a {
    color: #0066e5;
    text-decoration: underline;
}

.blog-detail-section__group-suffix {
    color: #150f2d;
    font-weight: 700;
}

.blog-detail-section__list {
    margin: 0;
    padding: 0 0 0 24px;
    list-style: disc;
}

.blog-detail-section__list li {
    font-size: 16px;
    line-height: 1.48;
    color: #544f69;
}

.blog-detail-section__list li + li {
    margin-top: 8px;
}

.blog-detail-section__list strong {
    font-weight: 600;
    color: #150f2d;
}

.blog-detail-section__bullets {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-detail-section__bullet {
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
    color: #544f69;
}

.blog-detail-section__bullet strong {
    font-weight: 600;
    color: #150f2d;
}

.blog-detail-section__bullet strong::before {
    content: "• ";
}

/* Role box */
.blog-detail-role {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border: 1px solid #d9d9d9;
}

.blog-detail-role__items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-detail-role__item {
    padding: 14px 24px;
    background: #f3f4f5;
}

.blog-detail-role__item-title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.48;
    color: #033f62;
}

.blog-detail-role__item-title a {
    color: #0066e5;
    text-decoration: underline;
}

.blog-detail-role__item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
    color: #544f69;
}

/* Sidebar */
.blog-detail-body__sidebar {
    flex: 1 1 0;
    min-width: 0;
    position: sticky;
    top: 96px;
    align-self: flex-start;
}

.blog-detail-faq-nav__title {
    margin: 0 0 14px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
    color: #150f2d;
}

.blog-detail-faq-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-detail-faq-nav__list a {
    display: block;
    font-size: 16px;
    line-height: 1.48;
    color: #544f69;
    text-decoration: none;
    cursor: pointer;
}

.blog-detail-faq-nav__list a:hover {
    color: #055e98;
    text-decoration: underline;
}

/* CTA band */
.blog-detail-cta {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
    background: #11273f;
    text-align: center;
}

.blog-detail-cta__glow {
    position: absolute;
    width: 626px;
    height: 570px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 184, 232, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.blog-detail-cta__glow--tr {
    top: -96px;
    right: -193px;
}

.blog-detail-cta__glow--bl {
    bottom: -96px;
    left: -193px;
}

.blog-detail-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.blog-detail-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 900px;
}

.blog-detail-cta__title {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.34;
    color: #fff;
}

.blog-detail-cta__description {
    margin: 0;
    max-width: 712px;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.blog-detail-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 40px;
    background: #fff;
    color: #11273f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.48;
    text-decoration: none;
    border: 0;
}

.blog-detail-cta__btn:hover {
    background: #f3f4f5;
}

/* FAQ section */
.blog-detail-faq {
    padding: 80px 0 20px;
    background: #fff;
}

.blog-detail-faq__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.blog-detail-faq__title {
    margin: 0;
    max-width: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    color: #150f2d;
}

.blog-detail-faq__list {
    width: 100%;
    max-width: 900px;
    margin: 0;
}

.blog-detail-faq .service-faq__question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #150f2d;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.48;
    cursor: pointer;
    padding: 0;
}

.blog-detail-faq .service-faq__toggle {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px;
}

.blog-detail-faq .service-faq__icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.blog-detail-faq .service-faq__icon--minus {
    opacity: 0;
}

.blog-detail-faq .service-faq__item.is-open .service-faq__icon--minus {
    opacity: 1;
}

.blog-detail-faq .service-faq__item.is-open .service-faq__icon--plus {
    opacity: 0;
}

.blog-detail-faq__item {
    border-bottom: 1px solid #d9d9d9;
    padding: 0 0 30px;
    margin-bottom: 20px;
}

.blog-detail-faq__item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 30px;
}

.blog-detail-faq__answer {
    margin-top: 20px;
}

.blog-detail-faq__answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
    color: #544f69;
}

/* Related posts */
.blog-detail-related {
    padding: 60px 0;
    background: #fff;
}

.blog-detail-related__title {
    margin: 0 0 40px;
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    color: #150f2d;
}

.blog-detail-related__grid {
    margin: 0 auto;
    gap: 24px;
}

.blog-detail-related .blog-card {
    border-radius: 20px;
}

.blog-detail-related .blog-card__media {
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .blog-detail-body__layout {
        flex-direction: column;
        gap: 40px;
    }

    .blog-detail-body__main {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .blog-detail-body__sidebar {
        position: static;
        width: 100%;
    }

    .blog-detail-cta__title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .blog-detail-body {
        padding: 40px 0;
    }

    .blog-detail-body__title {
        font-size: clamp(1.75rem, 5.5vw, 32px);
    }

    .blog-detail-body__category {
        font-size: 14px;
        padding: 8px 12px;
    }

    .blog-detail-body__read-time {
        font-size: 13px;
    }

    .blog-detail-cta {
        padding: 40px 0;
    }

    .blog-detail-faq {
        padding-top: 60px;
    }

    .blog-detail-related {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .blog-detail-cta__title,
    .blog-detail-faq__title,
    .blog-detail-related__title {
        font-size: 24px;
    }
}
