.single__post {
    padding-top: 199px;
    padding-bottom: 96px;
    position: relative;
}

.single__container {
    position: relative;
    z-index: 2;
}

.single__pseudo--green_right {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 100%;
    background: url(/wp-content/uploads/2026/04/single_elips_green.svg) no-repeat right center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
    filter: blur(5px);
    opacity: .9;
}

.single__post::before {
    content: "";
    position: absolute;
    top: -500px;
    left: -540px;
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/2026/02/ellipse-hero.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.single__post::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 520px;
    background: url(/wp-content/uploads/2026/04/related-articles_vector_in.svg.svg) no-repeat center top;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.breadcrumbs {
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--neutral-white);
}

.single-post__wrapper {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

.single-post__meta-clock {
    margin-left: 6px;
}

.single-post__meta.blog_hero__card-meta {
    gap: 24px;
    flex-wrap: wrap;
}

.single-post__sidebar {
    position: sticky;
    top: 120px;
}

.single-post__sidebar-title {
    text-transform: uppercase;
    color: var(--navy-400);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.single-post__toc a {
    text-decoration: none;
}

.single-post__thumb img {
    width: 100%;
    max-height: 309px;
    border-radius: 20px;
    object-fit: cover;
}

.single-post__title {
    margin-top: 32px;
}

.single-post__meta {
    margin-top: 24px;
}

.single-post__body {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--navy-700);
}

.single-post__body h2 {
    margin-top: 32px;
    margin-bottom: 8px;
    color: var(--navy-50);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0;
}

.single-post__body p {
    line-height: 1.5;
    font-size: 16px;
    color: var(--navy-200)
}

.single-post__toc {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.single-post__toc li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--navy-500);
}

.single-post__toc li {
    position: relative;
    padding: 2px 0 2px 20px;
}

.single-post__toc a {
    font-size: 14px;
    color: var(--navy-200);
    text-decoration: none;
    transition: 0.3s;
}


.single-post__toc li.active a {
    color: var(--neutral-white);
}

.single-post__toc li.active::before {
    background: var(--button-primary-bg);
}

@media screen and (max-width: 991px) {
    .single-post__wrapper {
        grid-template-columns: 1fr;
    }

    .single-post__sidebar {
        position: static;
    }
}


@media screen and (max-width: 768px) {
    .single__post {
        padding: 120px 0;
    }

    .single__pseudo--green_right {
        display: none;
    }
}

