/* ==========================================================================
   Single Post
   ========================================================================== */

/* ── Wrap ────────────────────────────────────────────────────────────────── */

.sp {
    padding-bottom: 80px;
}

.sp__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 0 0 0;
}
@media(max-width:1340px){
   .sp__wrap{
    max-width: 100%;
  padding-left: 16px;
    padding-right: 16px;

}
}
/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */

.sp__breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    list-style: none;
    margin: 0 0 80px;
    padding: 0;
    min-width: 0;
}

.sp__crumb {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sp__crumb--current {
    flex-shrink: 1;
    min-width: 0;
}

.sp__crumb a {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: 0.01em;
    color: var(--base-black);
    text-decoration: none;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.sp__crumb a:hover {
    opacity: 0.7;
}

.sp__crumb--current span {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: 0.01em;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.sp__crumb-sep {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    color: var(--gray-300);
    margin: 0 6px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.sp__header {
    margin-bottom: 60px;
}

.sp__title {
    font-family: var(--second-family);
    font-weight: 550;
    font-size: 54px;
    line-height: 119%;
    letter-spacing: -0.02em;
    background: linear-gradient(169deg, rgba(0, 5, 25, 0.9) 0%, #000519 50%, rgba(0, 5, 25, 0.9) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
}

.sp__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.sp__meta-cat {
font-family: var(--font-family);
font-weight: 500;
font-size: 14px;
line-height: 157%;
letter-spacing: 0.02em;
color: var(--text-subtle);
}

.sp__meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-500);
    flex-shrink: 0;
}
hr{
    color: var(--base-border-black);
    margin: 40px 0;
    opacity: 0.3;
}
.pb-pw__content p{
color: var(--text-base, #61647A);
font-size: 16px;
font-style: normal;
font-weight: 450;
line-height: 24px; /* 150% */
letter-spacing: 0.16px;
}
.sp__download-wrap{
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.02), 0 4px 22px 0 rgba(0, 0, 0, 0.04), 0 10px 58px 0 rgba(0, 0, 0, 0.05), 0 19px 134px 0 rgba(0, 0, 0, 0.07);
background: var(--brand-blue-500);
border-radius: 8px;
padding: 32px;
margin-bottom: 40px;
}
.sp__download-wrap a{
    display: flex;
    align-items: center;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--text-base);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.02), 0 3px 12px 0 rgba(0, 0, 0, 0.03), 0 7px 27px 0 rgba(0, 0, 0, 0.04), 0 13px 57px 0 rgba(0, 0, 0, 0.05), 0 22px 110px 0 rgba(0, 0, 0, 0.07);
    background: var(--base-white);
    border-radius: 6px;
    padding: 12px 32px 12px 24px;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.sp__download-title{
    font-family: var(--second-family);
font-weight: 550;
font-size: 26px;
line-height: 131%;
letter-spacing: -0.01em;
color: var(--base-white);
margin-bottom: 12px;
}
.sp__download-desc{
    font-family: var(--font-family);
font-weight: 500;
font-size: 16px;
line-height: 150%;
letter-spacing: 0.01em;
color: var(--white-transparent-80);
margin-bottom: 32px;
}
.sp__meta-date,
.sp__meta-read {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 157%;
    letter-spacing: 0.02em;
    color: var(--text-subtle);
}

.sp__cover {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.sp__cover-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 710px;
}

/* ── Body: two-column ────────────────────────────────────────────────────── */

.sp__body {
    display: grid;
    grid-template-columns: 384px 1fr;
    gap: 34px;
    align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */

.sp__sidebar {
    position: sticky;
    top: 0px;
}
.sp__company.-mob{
    display: none;
}
/* ── TOC ─────────────────────────────────────────────────────────────────── */

.sp__toc {
    border: 1px solid var(--base-border-black, #e8eaf0);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.sp__toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 32px 32px 16px 32px;
    background: var(--base-white, #fff);
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-bold);
    text-align: left;
    gap: 8px;
 

    font-family: var(--second-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, rgba(0, 5, 25, 0.7) 0%, #000519 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp__toc-toggle[aria-expanded="false"] {
    border-bottom-color: transparent;
}

.sp__toc-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    transform: rotate(180deg);
}

.sp__toc-toggle[aria-expanded="true"] .sp__toc-arrow {
    transform: rotate(0deg);
}

.sp__toc-nav {
    padding: 0px 32px;
    background: var(--base-white, #fff);
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    max-height: 600px;
}

.sp__toc-nav.is-collapsed {
    max-height: 0;
    padding: 0;
}

.sp__toc-item {
    display: block;
    list-style: none;
    margin-bottom: 4px;
}

.sp__toc-link {
    display: block;
font-family: var(--font-family);
font-weight: 500;
font-size: 16px;
line-height: 150%;
letter-spacing: 0.01em;
color: var(--text-subtle);
padding: 6px;
    text-decoration: none;
    transition: color 0.15s;
    opacity: 0.8;
}

.sp__toc-link:hover {
   
}

.sp__toc-item.is-passed > .sp__toc-link,
.sp__toc-item.is-active > .sp__toc-link {
    opacity: 1;
}

.sp__toc-item.is-active > .sp__toc-link {
    color: var(--text-accent);
    font-weight: 600;
    background: var(--brand-blue-50);
    border-radius: 6px;
}

.sp__toc-link:hover {
    background: var(--gray-25);
 
}

/* Indentation by heading level */
.sp__toc-item[data-level="3"] > .sp__toc-link {
    padding-left: 28px;
}

.sp__toc-item[data-level="4"] > .sp__toc-link {
    padding-left: 40px;
}

/* Single overall progress bar + reading time */
.sp__toc-footer {
    padding: 16px 32px 32px 32px;
}

.sp__toc-bar-wrap {
    height: 3px;
    background: var(--gray-50, #f8f9fa);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.sp__toc-bar {
    height: 100%;
    width: 0%;
    background: var(--brand-blue-500, #1b5df8);
    border-radius: 3px;
    transition: width 0.15s linear;
}

.sp__toc-read {
font-family: var(--font-family);
font-weight: 500;
font-size: 14px;
line-height: 129%;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--text-subtle);
}

/* ── Share ───────────────────────────────────────────────────────────────── */

.sp__share--after-content {
    display: none;
}

.sp__share-label {
font-family: var(--second-family);
font-weight: 600;
font-size: 18px;
line-height: 133%;
letter-spacing: 0.01em;
color: var(--text-subtle);
margin: 0 0 24px 0;
}

.sp__share-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--base-white);
    border: 0.86px solid var(--base-border-black, #e8eaf0);
    border-radius: 5px;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.01), 0 5px 15px 0 rgba(0,0,0,0.01), 0 12px 34px 0 rgba(0,0,0,0.02);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}

.sp__share-btn:hover {
    border-color: var(--gray-300, #c8ccd4);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}

.sp__share-btn--copy {
    position: relative;
}

.sp__share-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--text-bold, #121733);
    color: #fff;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sp__share-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-bold, #121733);
}

.sp__share-btn--copy.is-copied .sp__share-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Content area ────────────────────────────────────────────────────────── */

.sp__content {
    min-width: 0;
    padding-top: 0px;
}

/* ── Related articles ────────────────────────────────────────────────────── */

.sp-related {
    margin-top: 80px;
    padding-top: 48px;
    padding-bottom: 80px;
    overflow: hidden;
}

.sp-related__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 ;
}
@media(max-width:1340px){
  .sp-related__inner{

  padding-left: 16px;
    padding-right: 16px;

}
}

.sp-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sp-related__title {
    font-family: var(--second-family);
    font-size: 54px;
    font-style: normal;
    font-weight: 550;
    line-height: 64px;
    letter-spacing: -1.08px;
    margin: 0;
}

.sp-related__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sp-related__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--base-border-black);
    border-radius: 8px;
    background: var(--base-white);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
    width: 56px;
height: 56px;
    border-radius: var(--6, 6px);
border: 1px solid var(--base-border-black, rgba(18, 23, 51, 0.04));
background: var(--base-white, #FFF);
box-shadow: 0 14.515px 39.902px 0 rgba(0, 0, 0, 0.02), 0 5.837px 17.474px 0 rgba(0, 0, 0, 0.01), 0 1.306px 7.563px 0 rgba(0, 0, 0, 0.01);
}

.sp-related__btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.sp-related__btn.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.sp-related__pagination {
    display: none;
}

.sp-related__swiper {
    overflow: visible;
}
.sp-related__card-meta span[aria-hidden="true"]{
    font-size: 30px;
}
.sp-related__swiper .swiper-wrapper {
    align-items: stretch;
}

.sp-related__swiper .swiper-slide {
    height: auto;
}

.sp-related__card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--base-border-black, rgba(18, 23, 51, 0.04));
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.18s;
    padding: 16px 16px 0 16px;
    background: var(--base-white, #FFF);
    box-shadow: 0 14.515px 39.902px 0 rgba(0, 0, 0, 0.02), 0 5.837px 17.474px 0 rgba(0, 0, 0, 0.01), 0 1.306px 7.563px 0 rgba(0, 0, 0, 0.01);
}

.sp-related__card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.sp-related__card-img-wrap {
    display: block;
    overflow: hidden;
border-radius: var(--8, 8px);
height: 342px;
background: var(--Illustration-BG, linear-gradient(180deg, #F3F5FD 0%, var(--brand-blue-50, #E6EFFF) 114.38%));
}

.sp-related__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sp-related__card:hover .sp-related__card-img {
    transform: scale(1.03);
}

.sp-related__card-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex: 1;
}

.sp-related__card-cat {
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-base);
    margin-bottom: 24px;
    font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 160% */
letter-spacing: 0.75px;
text-transform: uppercase;
}

.sp-related__card-title {
    font-family: var(--second-family);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-bold);
    margin: 0 0 10px;
}

.sp-related__card-title a {
    color: inherit;
    text-decoration: none;
    font-size: 26px;
font-style: normal;
font-weight: 550;
line-height: 34px; /* 130.769% */
letter-spacing: -0.26px;
}

.sp-related__card-title a:hover {
    color: var(--brand-blue-500, #1b5df8);
}

.sp-related__card-excerpt {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-base);
    margin: 0 0 16px;
    flex: 1;
    font-size: 16px;
font-style: normal;
font-weight: 450;
line-height: 24px; /* 150% */
letter-spacing: 0.16px;
}

.sp-related__card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-family);
    font-size: 12px;
    color: var(--text-base);
    margin-top: auto;
    font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
}

/* ── Company info block ──────────────────────────────────────────────────── */

.sp__company {
    border: 1px solid var(--base-border-black, #e8eaf0);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.sp__company-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 32px 24px;
}

.sp__company-logo-img {
    max-height: 48px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.sp__company-fields {
    margin: 0;
    padding: 4px 32px;
}

.sp__company-field {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.sp__company-field:last-child {
    border-bottom: none;
}

.sp__company-field dt {
    font-family: var(--font-family);
color: var(--gray-700, #6C7680);
/* 2.0/body-s */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
    flex-shrink: 0;
}

.sp__company-field dd {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 157%;
    color: var(--text-bold);
    margin: 0;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    word-break: break-all;
    color: var(--base-black, #121733);

/* 2.0/body-s */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
}

.sp__company-link {
    color: var(--brand-blue-500, #1b5df8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.15s;
    color: var(--brand-blue-500, #1B5DF8);


font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}

.sp__company-link:hover {
    opacity: 0.75;
}

.sp__company-star {
    color: #f5a623;
    width: 18px;
height: 18px;
}

.sp__company-features {
    padding: 12px 32px 24px;
    
}

.sp__company-features-label {
font-family: var(--font-family);
font-weight: 450;
font-size: 14px;
line-height: 129%;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--v2-black-transparent--50);
    margin: 0 0 16px;
}

.sp__company-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp__company-feature a{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sp__company-feature-icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 6px var(--6, 6px) 6px 6px;
    border: 1px solid var(--base-border-black, rgba(18, 23, 51, 0.04));
    background: var(--base-border-black, rgba(18, 23, 51, 0.04));
}

.sp__company-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sp__company-feature-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    width: calc(100% - 60px);
}

.sp__company-feature-title {
font-family: var(--second-family);
font-weight: 600;
font-size: 16px;
line-height: 150%;
letter-spacing: 0.01em;
color: var(--base-black);
}

.sp__company-feature-desc {
    font-family: var(--font-family);
font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
color: var(--text-base, #61647A);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .sp__body {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .sp{
        padding: 0;
    }
    .sp__wrap {
        padding: 96px 16px 40px 16px;
    }

.sp__breadcrumbs ol{
    margin-bottom: 24px;
}
.sp__header{
    margin-bottom: 24px;
}
    .sp__title {
        font-size: 32px;
    }

    .sp__body {
        grid-template-columns: 1fr;
    }

    .sp__sidebar {
        position: static;
        order: 1;
        display: block;
    }

    .sp__content {
        order: 0;
    }

    .sp-related__inner {
        padding: 0 16px;
    }

    .sp-related__title {
        font-size: 32px;
        line-height: 1.25;
        letter-spacing: -0.02em;
    }

    .sp-related__nav {
        display: none;
    }

    .sp-related__pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        bottom: -30px !important;
    }

    .sp-related__pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: var(--base-border-black, #e0e2ea);
        border-radius: 50%;
        opacity: 1;
        margin: 0;
        flex-shrink: 0;
        transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
    }

    .sp-related__pagination .swiper-pagination-bullet-active {
        width: 24px;
        height: 8px;
        background: var(--brand-blue-500, #1B5DF8);
        border-radius: 8px;
    }

    .sp__cover-img {
        max-height: 280px;
    }
    .sp__share {
        display: none;
    }

    .sp__share--after-content {
        display: block;
        margin-top: 32px;
    }

    .sp__toc {
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        z-index: 100;
        border-radius: 8px;
        border: 1px solid var(--base-border-black);
        background: var(--base-white);
        box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.01), 0 6px 17px 0 rgba(0, 0, 0, 0.01), 0 -15px 40px 0 rgba(0, 0, 0, 0.07);
        padding: 0;
        margin-bottom: 0;
        overflow: visible;
    }

    .sp__toc-toggle {
        padding: 20px 24px 12px;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.01em;
    }

    .sp__toc-nav {
        padding: 0 24px;
        overflow: auto;
    }

    .sp__toc-footer {
        padding: 12px 24px 20px;
    }
    .sp__title{
        font-weight: 550;
font-size: 28px;
line-height: 129%;
letter-spacing: -0.02em;
    }
    .sp__toc-footer{
        padding-top: 0;
    }
    .sp__toc-read{
        font-size: 12px;
line-height: 133%;
letter-spacing: 0.05em;
    }
    .sp__toc-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    transform: rotate(0);
}

.sp__toc-toggle[aria-expanded="true"] .sp__toc-arrow {
    transform: rotate(180deg);
}
.sp__share--after-content{
    margin: 0;
}
.sp__share-label{
    font-size: 16px;
line-height: 150%;
letter-spacing: 0.01em;
margin-bottom: 16px;
}
}


/* ── TOC backdrop (mobile only) ──────────────────────────────────────────── */

#sp-toc-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

@media (max-width: 768px) {
    #sp-toc-backdrop {
        display: block;
    }

    #sp-toc-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ── Other events slider ─────────────────────────────────────────────────── */

.sp-events-slider {
    margin-top: 0;
    padding-top: 64px;
    padding-bottom: 80px;
    overflow: hidden;
}

.sp-events-slider__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.sp-events-slider__swiper-wrap {
    padding: 0 32px;
    max-width: 1240px;
    margin: 0 auto;
    overflow: visible;
}

.sp-events-slider__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sp-events-slider__title {
font-family: var(--second-family);
font-weight: 550;
font-size: 54px;
line-height: 119%;
letter-spacing: -0.02em;
background: linear-gradient(169deg, rgba(0, 5, 25, 0.9) 0%, #000519 50%, rgba(0, 5, 25, 0.9) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin: 0;
}

.sp-events-slider__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sp-events-slider__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--base-border-black);
    border-radius: 8px;
    background: var(--base-white);
    color: var(--text-bold);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
}

.sp-events-slider__btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.sp-events-slider__btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ── Event card inside slider ── */

.sp-evt-card {
    height: 100%;
}

.sp-evt-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.18s ease;
    padding: 16px;
}

.sp-evt-card__link:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.sp-evt-card__link:hover .sp-evt-card__name {
    color: var(--brand-blue-500);
}

.sp-evt-card__thumb {
    width: 100%;
    height: 326px;
    overflow: hidden;
    flex-shrink: 0;
border-radius: 8px;
}

.sp-evt-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sp-evt-card__link:hover .sp-evt-card__thumb img {
    transform: scale(1.03);
}

.sp-evt-card__body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex: 1;
}

.sp-evt-card__type {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-invisible);
    margin-bottom: 10px;
}

.sp-evt-card__name {
    font-family: var(--second-family);
    font-weight: 550;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text-bold);
    margin: 0 0 10px;
    transition: color 0.15s ease;
}

.sp-evt-card__excerpt {
    font-family: var(--font-family);
    font-weight: 450;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-base);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.sp-evt-card__info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.sp-evt-card__location,
.sp-evt-card__time {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-subtle);
}

.sp-evt-card__dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-500);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .sp-events-slider__inner,
    .sp-events-slider__swiper-wrap {
        padding: 0 16px;
    }

    .sp-events-slider__title {
        font-size: 24px;
    }

    .sp-events-slider__nav {
        display: none;
    }

    .sp-events-slider__pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .sp-events-slider__pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: var(--base-border-black, #e0e2ea);
        border-radius: 50%;
        opacity: 1;
        margin: 0;
        flex-shrink: 0;
        transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
    }

    .sp-events-slider__pagination .swiper-pagination-bullet-active {
        width: 24px;
        height: 8px;
        background: var(--brand-blue-500, #1B5DF8);
        border-radius: 8px;
    }
    .sp-related__card-title a{
        font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 133.333% */
letter-spacing: 0.18px;
    }
    .sp-related__card{
        padding: 8px;
    }
    .sp-related__card-cat{
        margin-bottom: 12px;
        font-size: 12px;
    }
    .sp-related{
        margin-top: 0;
    }
    .sp-related__card-meta{
        font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
    }
    .sp-related__card-body{
        padding: 16px;
    }
    .sp-evt-card__thumb{
        height: 190px;
    }
    .sp-evt-card__link{
        padding: 8px
    }
    .sp__company.-mob{
    display: block;
}
    .sp__company.-desk{
    display: none;
}
.sp__company-logo{
    padding: 24px 24px 10px 24px;
    
}
.sp__company-logo img{
height: 32px;
}
.sp__company-field{
        padding: 4px 0;
}
.sp__company-fields {
    margin: 0;
    padding: 4px 24px;
}
.sp__company-features {
    padding: 12px 24px 24px;
}
.sp__company-feature-title{
    font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;


}
.sp__company-feature-desc{
    font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
}
.pb-pw__content p{
    font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.28px;
}
.sp-related{
    padding-top: 0;
}
.sp-related__head{
    margin-bottom: 24px;
}
.res-case__cat, .res-case__company{
    font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 16px; /* 133.333% */
letter-spacing: 0.6px;
text-transform: uppercase;
}
.res-card--case .res-case__quote{
    font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 133.333% */
letter-spacing: 0.18px;
}
.res-case__quote-mark {
    display: inline;
    flex-shrink: 0;
    position: relative;
    top: -1px;
    margin-right: 3px;
    width: 13px;
}
.sp-related__card-img-wrap{
    height: 198px;
}
}
