/* ── Page Hero ── */
.page-hero {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #191919;
}

/* Shared media layer */
.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* ── Layout: Split (black left, image right) ── */
.page-hero--split .page-hero__media {
    left: 50%;
    right: 0;
    width: 50%;
}

.page-hero--split .page-hero__gradient {
    position: absolute;
    top: 0;
    left: 40%;
    width: 25%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to right,
        #191919 0%,
        rgba(31, 31, 31, 0.92) 32%,
        rgba(101, 101, 101, 0.01) 100%
    );
}

/* ── Layout: Full (image covers all, dark overlay on left) ── */
.page-hero--full .page-hero__media {
    inset: 0;
    width: 100%;
}

.page-hero--full .page-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(25, 25, 25, 0.95) 0%,
        rgba(25, 25, 25, 0.8) 50%,
        rgba(25, 25, 25, 0) 100%
    );
}

/* Content (left side) */
.page-hero__content {
    position: relative;
    z-index: 3;
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 55%;
}

.page-hero__breadcrumbs {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    margin: 0 0 20px;
}

.page-hero__heading {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.page-hero__description {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 23px;
    color: #fff;
    max-width: 461px;
    margin: 0 0 32px;
}

.page-hero__cta {
    align-self: flex-start;
}

/* Logos (bottom-right) */
.page-hero__logos {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-hero__logo-img {
    max-height: 52px;
    width: auto;
    display: block;
}

.page-hero__trustpilot {
    display: flex;
    align-items: center;
}

.page-hero__trustpilot-link {
    display: flex;
}

.page-hero__trustpilot-img {
    max-height: 66px;
    width: auto;
    display: block;
}

/* Responsive: Tablet */
@media (max-width: 1200px) {
    .page-hero__content {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
        max-width: 60%;
    }

    .page-hero__heading {
        font-size: 44px;
    }

    .page-hero__description {
        font-size: 20px;
        line-height: 26px;
    }

    .page-hero__logos {
        bottom: 16px;
        right: 24px;
        gap: 12px;
    }

    .page-hero__logo-img {
        max-height: 40px;
    }

    .page-hero__trustpilot-img {
        max-height: 50px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .page-hero__content {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
        max-width: 80%;
    }

    .page-hero__heading {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .page-hero__description {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .page-hero--split .page-hero__gradient {
        left: 30%;
        width: 35%;
    }

    .page-hero--full .page-hero__gradient {
        width: 80%;
    }

    .page-hero__logos {
        bottom: 12px;
        right: 16px;
        gap: 8px;
    }

    .page-hero__logo-img {
        max-height: 32px;
    }

    .page-hero__trustpilot-img {
        max-height: 40px;
    }
}

/* ── Hero Banner ── */
.hero-banner {
    position: relative;
    width: 100%;
    height: 556px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #707070;
    font-family: 'Archivo', sans-serif;
}

.hero-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-banner__bg-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.5;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hero-banner__headings {
    display: flex;
    justify-content: center;
    gap: 280px;
    padding-top: 93px;
}

.hero-banner__heading {
    font-size: 75px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
}

.hero-banner__heading--left {
    text-align: right;
}

.hero-banner__heading--right {
    text-align: left;
}

.hero-banner__actions {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 40px;
    gap: 0;
}

.hero-banner__cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    padding: 0 32px;
    background: #d5fb7b;
    color: #191919;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 36px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hero-banner__cta-primary:hover {
    background: #c5eb6b;
}

.hero-banner__description {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.55;
    max-width: 523px;
    margin: 0;
    margin-left: auto;
}

.hero-banner__trustpilot {
    flex-shrink: 0;
    margin-left: 40px;
}

.hero-banner__trustpilot-img {
    width: 144px;
    height: 66px;
    object-fit: contain;
}

.hero-banner__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 38px;
    padding: 0 24px;
    background: #191919;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 36px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-left: 24px;
}

.hero-banner__cta-secondary:hover {
    background: #333;
}

.hero-banner__play-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Hero Banner responsive */
@media (max-width: 1200px) {
    .hero-banner {
        height: auto;
        min-height: 400px;
        border-radius: 12px;
    }

    .hero-banner__headings {
        gap: 80px;
        padding-top: var(--space-lg);
    }

    .hero-banner__heading {
        font-size: 48px;
    }

    .hero-banner__actions {
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 0;
        padding-bottom: var(--space-md);
    }

    .hero-banner__description {
        margin-left: 0;
        order: -1;
        flex-basis: 100%;
        max-width: 100%;
    }

    .hero-banner__trustpilot {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
        border-radius: 8px;
    }

    .hero-banner__headings {
        flex-direction: column;
        gap: 16px;
        padding: var(--space-md) var(--space-sm) 0;
        align-items: flex-start;
    }

    .hero-banner__heading {
        font-size: 36px;
        text-align: left;
    }

    .hero-banner__actions {
        flex-direction: column;
        align-items: flex-start;
        padding-top: var(--space-sm);
        padding-bottom: var(--space-sm);
        gap: 16px;
    }

    .hero-banner__description {
        font-size: 16px;
    }

    .hero-banner__cta-primary {
        font-size: 16px;
        height: 46px;
        padding: 0 24px;
    }

    .hero-banner__cta-secondary {
        font-size: 16px;
        margin-left: 0;
    }

    .hero-banner__trustpilot {
        margin-left: 0;
    }
}

/* ── Pathways ── */
.pathways {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: 'Archivo', sans-serif;
}

.pathways__intro {
    flex-shrink: 0;
    max-width: 498px;
    padding-top: 51px;
}

.pathways__label {
    font-size: 26px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 32px;
    margin: 0 0 12px;
}

.pathways__title {
    font-size: 48px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 40px;
    margin: 0 0 16px;
}

.pathways__description {
    font-size: 24px;
    font-weight: 400;
    color: #191919;
    line-height: 22px;
    margin: 0 0 40px;
    max-width: 468px;
}

.pathways__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    padding: 0 40px;
    background: #191919;
    color: #d5fb7b;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 36px;
    transition: background 0.2s;
}

.pathways__cta:hover {
    background: #333;
}

.pathways__nav {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.pathways__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #191919;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191919;
    transition: background 0.2s, color 0.2s;
}

.pathways__nav-btn:hover {
    background: #191919;
    color: #fff;
}

.pathways__carousel {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.pathways__carousel .swiper-slide.pathways__card {
    height: 517px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.pathways__card-overlay {
    position: absolute;
    inset: 0;
    background: #191919;
    opacity: 0.5;
    border: 1px solid #707070;
    border-radius: 19px;
}

.pathways__card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 0 40px 20px;
    text-align: center;
}

.pathways__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 32px;
    margin: 0 0 16px;
}

.pathways__card-text {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 18px;
    margin: 0 0 20px;
    max-width: 327px;
}

.pathways__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    padding: 0 24px;
    background: #d6d6d6;
    color: #191919;
    font-family: 'Archivo', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #707070;
    border-radius: 19px;
    transition: background 0.2s;
}

.pathways__card-btn:hover {
    background: #c6c6c6;
}

@media (max-width: 1200px) {
    .pathways {
        flex-direction: column;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pathways__carousel .swiper-slide.pathways__card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .pathways__title {
        font-size: 36px;
        line-height: 36px;
    }

    .pathways__description {
        font-size: 18px;
    }

    .pathways__carousel .swiper-slide.pathways__card {
        height: 350px;
    }
}

/* ── CTA Banner ── */
.cta-banner {
    display: flex;
    align-items: stretch;
    background: #191919;
    border: 1px solid #707070;
    border-radius: 20px;
    overflow: hidden;
    min-height: 650px;
    font-family: 'Archivo', sans-serif;
}

.cta-banner__text {
    flex: 0 0 50%;
    padding: 140px var(--space-xl) var(--space-xl) 107px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cta-banner__title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 53px;
    margin: 0 0 24px;
}

.cta-banner__accent {
    color: #d5fb7b;
}

.cta-banner__description {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 26px;
    margin: 0 0 32px;
    max-width: 486px;
}

.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    padding: 0 40px;
    background: #d5fb7b;
    color: #191919;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 36px;
    align-self: flex-start;
    transition: background 0.2s;
}

.cta-banner__btn:hover {
    background: #c5eb6b;
}

.cta-banner__media {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    border-radius: 20px;
    border: 1px solid #707070;
}

.cta-banner__play {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-banner__play:hover {
    transform: scale(1.1);
}

.cta-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid #707070;
    z-index: 2;
}

.cta-banner__media--playing .cta-banner__play,
.cta-banner__media--playing .cta-banner__img {
    display: none;
}

/* Editorial layout */
.cta-banner--editorial {
    display: block;
    border: none;
    border-radius: 0;
    min-height: auto;
    overflow: visible;
}

.cta-banner__inner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.cta-banner--editorial .cta-banner__text {
    flex: 1 1 55%;
    padding: 0;
}

.cta-banner--editorial .cta-banner__title {
    font-size: 42px;
    line-height: 53px;
    margin: 0 0 16px;
}

.cta-banner--editorial .cta-banner__description {
    font-size: 22px;
    line-height: 26px;
    max-width: 740px;
    margin: 0;
}

.cta-banner--editorial .cta-banner__description p {
    margin: 0 0 23px;
}

.cta-banner--editorial .cta-banner__description p:last-child {
    margin-bottom: 0;
}

.cta-banner__aside {
    flex: 0 1 45%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-banner__caption {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 22px;
    margin: 0;
    max-width: 342px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-banner--editorial .cta-banner__media {
    flex: none;
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .cta-banner:not(.cta-banner--editorial) {
        flex-direction: column;
        min-height: auto;
    }

    .cta-banner:not(.cta-banner--editorial) .cta-banner__text {
        flex: none;
        padding: 60px var(--space-md);
    }

    .cta-banner:not(.cta-banner--editorial) .cta-banner__title {
        font-size: 42px;
        line-height: 42px;
    }

    .cta-banner:not(.cta-banner--editorial) .cta-banner__media {
        flex: none;
        height: 400px;
    }

    .cta-banner__inner {
        flex-direction: column;
    }

    .cta-banner--editorial .cta-banner__text {
        flex: none;
    }

    .cta-banner__aside {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-banner:not(.cta-banner--editorial) .cta-banner__text {
        padding: 40px var(--space-sm);
    }

    .cta-banner:not(.cta-banner--editorial) .cta-banner__title {
        font-size: 32px;
        line-height: 34px;
    }

    .cta-banner:not(.cta-banner--editorial) .cta-banner__description {
        font-size: 18px;
    }

    .cta-banner:not(.cta-banner--editorial) .cta-banner__media {
        height: 300px;
    }

    .cta-banner--editorial .cta-banner__title {
        font-size: 32px;
        line-height: 34px;
    }

    .cta-banner--editorial .cta-banner__description {
        font-size: 18px;
        line-height: 22px;
    }

    .cta-banner--editorial .cta-banner__media {
        height: 240px;
    }
}

/* ── Page Links Banner ── */
.page-links-banner {
    position: relative;
    overflow: hidden;
    background-color: #d6d6d6;
}

.page-links-banner__bg {
    position: absolute;
    top: 50%;
    left: max(0px, calc((100% - 1822px) / 2));
    width: 900px;
    height: 900px;
    transform: translateY(-50%);
    background: url('../assets/brand/logomark-white.svg') no-repeat center / contain;
    opacity: 0.15;
    filter: grayscale(1);
    pointer-events: none;
}

.page-links-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    padding-top: 140px;
    padding-bottom: 140px;
}

.page-links-banner__text {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.page-links-banner__title {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #191919;
}

.page-links-banner__description {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
}

.page-links-banner__description p + p {
    margin-top: var(--space-xs);
}

.page-links-banner__grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.page-links-banner__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
    background: #fff;
    border-radius: 32px;
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #191919;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.page-links-banner__link:hover {
    background: #191919;
    color: #fff;
}

.page-links-banner__link svg {
    flex-shrink: 0;
    margin-left: 12px;
}

@media (max-width: 1200px) {
    .page-links-banner__inner {
        gap: var(--space-lg);
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }

    .page-links-banner__title {
        font-size: 28px;
    }

    .page-links-banner__description {
        font-size: 18px;
    }

    .page-links-banner__link {
        font-size: 18px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .page-links-banner__bg {
        width: 750px;
        height: 750px;
    }

    .page-links-banner__inner {
        flex-direction: column;
        gap: var(--space-md);
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .page-links-banner__text {
        flex: none;
        max-width: 100%;
    }

    .page-links-banner__title {
        font-size: 24px;
    }

    .page-links-banner__description {
        font-size: 16px;
    }

    .page-links-banner__grid {
        grid-template-columns: 1fr;
    }

    .page-links-banner__link {
        font-size: 16px;
        height: 52px;
        padding: 0 20px;
    }
}

/* ── Page Links Banner: Alt (Dark) ── */

.page-links-banner--alt {
    background-color: #191919;
}

.page-links-banner--alt .page-links-banner__inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-links-banner--alt .page-links-banner__title {
    color: #fff;
}

.page-links-banner--alt .page-links-banner__description {
    color: #fff;
}

.page-links-banner--alt .page-links-banner__grid {
    grid-template-columns: 1fr 1fr;
}

.page-links-banner--alt .page-links-banner__link {
    font-size: 20px;
    height: 76px;
    background: #e8e8e8;
}

.page-links-banner--alt .page-links-banner__link:hover {
    background: #fff;
}

/* Badge block (alt layout) */

.page-links-banner__badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 20px;
    padding: 14px 24px;
    margin-top: 16px;
    max-width: 343px;
}

.page-links-banner__badge-label {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #191919;
    text-transform: uppercase;
}

.page-links-banner__badge-images {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-links-banner__badge-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .page-links-banner--alt .page-links-banner__link {
        font-size: 18px;
        height: 64px;
    }
}

@media (max-width: 768px) {
    .page-links-banner--alt .page-links-banner__inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .page-links-banner--alt .page-links-banner__link {
        font-size: 16px;
        height: 56px;
    }

    .page-links-banner__badge {
        max-width: 100%;
    }
}

/* ── Learner Stories ── */
.learner-stories {
    position: relative;
    z-index: 2;
    background: #191919;
    min-height: 1025px;
    font-family: 'Archivo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: clip;
    overflow-y: visible;
}

.learner-stories__center {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl) var(--space-sm);
}

.learner-stories__icon {
    width: 99px;
    height: 99px;
    object-fit: contain;
    margin-bottom: 16px;
}

.learner-stories__title {
    font-size: 139px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-transform: none;
    margin: 0 0 32px;
}

.learner-stories__subtitle {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 48px;
}

.learner-stories__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    padding: 0 40px;
    background: transparent;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #d5fb7b;
    border-radius: 36px;
    transition: background 0.2s, color 0.2s;
}

.learner-stories__cta:hover {
    background: #d5fb7b;
    color: #191919;
}

.learner-stories__card {
    position: absolute;
    width: 315px;
    height: 453px;
    border-radius: 28px;
    border: 1px solid #707070;
    z-index: 1;
    transition: transform 0.5s ease-out;
    will-change: transform;
    transform-origin: center center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.learner-stories__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learner-stories__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 25, 25, 0.44);
}

.learner-stories__card-logomark {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 750px;
    height: 750px;
    object-fit: contain;
    opacity: 0.15;
    transform: translate(40%, 40%);
    pointer-events: none;
}

.learner-stories__card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    padding: 20px;
}

.learner-stories__card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}

.learner-stories__card-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.learner-stories__card-info {
    margin-top: auto;
}

.learner-stories__card-name {
    font-size: 39px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 8px;
}

.learner-stories__card-badge {
    display: inline-block;
    background: #d5fb7b;
    color: #191919;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 23px;
    border: 1px solid #707070;
}

.learner-stories__card--tl {
    top: 0;
    left: 5%;
    transform: rotate(13deg);
}

.learner-stories__card--tr {
    top: -80px;
    right: 5%;
    transform: rotate(13deg);
}

.learner-stories__card--bl {
    bottom: -40px;
    left: 5%;
    transform: rotate(-10deg);
}

.learner-stories__card--br {
    bottom: -40px;
    right: 5%;
    transform: rotate(-10deg);
}

@media (max-width: 1200px) {
    .learner-stories {
        min-height: 700px;
    }

    .learner-stories__title {
        font-size: 80px;
    }

    .learner-stories__subtitle {
        font-size: 24px;
    }

    .learner-stories__card {
        width: 220px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .learner-stories {
        min-height: 500px;
    }

    .learner-stories__title {
        font-size: 48px;
    }

    .learner-stories__subtitle {
        font-size: 18px;
    }

    .learner-stories__card {
        width: 140px;
        height: 200px;
        border-radius: 16px;
    }

    .learner-stories__card-name {
        font-size: 18px;
    }

    .learner-stories__card-badge {
        font-size: 7px;
        padding: 4px 10px;
    }

    .learner-stories__card-play svg {
        width: 24px;
        height: 24px;
    }

    .learner-stories__card-logomark {
        width: 120px;
        height: 120px;
    }

    .learner-stories__card-content {
        padding: 10px;
    }

    .learner-stories__icon {
        width: 60px;
        height: 60px;
    }
}

/* ── Ticker ── */
.ticker {
    background: #d6d6d6;
    overflow: hidden;
    height: 93px;
    margin-top: -48px;
    display: flex;
    align-items: center;
    font-family: 'Archivo', sans-serif;
}

.ticker__track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
    will-change: transform;
}

.ticker__item {
    font-size: 48px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 40px;
    padding: 0 var(--space-md);
}

.ticker__icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: color;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ticker {
        height: 60px;
        margin-top: -32px;
    }

    .ticker__item {
        font-size: 28px;
        padding: 0 20px;
    }

    .ticker__icon {
        width: 30px;
        height: 30px;
    }
}

/* ── Support ── */
.support {
    background: #191919;
    font-family: 'Archivo', sans-serif;
}

.support__content {
    padding-top: 88px;
    padding-bottom: 60px;
}

.support__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.support__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support__title {
    font-size: 48px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    line-height: 1;
}

.support__title-regular {
    font-weight: 400;
    color: #fff;
}

.support__title-accent {
    font-weight: 600;
    color: #d5fb7b;
}

.support__cards {
    display: flex;
    gap: 18px;
    margin-bottom: 60px;
}

.support__card {
    flex: 1;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 20px;
    padding: 30px 38px;
    min-height: 247px;
}

.support__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.support__card-stat {
    font-size: 45px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1;
}

.support__card-subtitle {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    margin: 4px 0 0;
    line-height: 1;
}

.support__card-icon {
    width: 70px;
    height: 69px;
    background: #d5fb7b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support__card-text {
    font-size: 20px;
    font-weight: 400;
    color: #191919;
    line-height: 1.3;
    margin: 0;
}

.support__partners {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
}

.support__partners-label {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.support__partners-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.support__partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .support__content {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .support__title {
        font-size: 36px;
    }

    .support__cards {
        flex-direction: column;
    }

    .support__card-stat {
        font-size: 36px;
    }

    .support__card-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .support__header {
        gap: 16px;
    }

    .support__title {
        font-size: 28px;
    }

    .support__partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .support__partners-logos {
        gap: 20px;
    }
}

/* ── Career Framework ── */
/* Scroll wrapper: creates enough height for 4 scroll "pages" */
.career-framework-scroll {
    height: 280vh;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.career-framework-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.career-framework {
    display: flex;
    width: 100%;
    height: 100%;
    font-family: 'Archivo', sans-serif;
    overflow: hidden;
}

.career-framework__left {
    width: 50%;
    flex-shrink: 0;
    background: #d5fb7b;
    border-right: 1px solid #707070;
    display: flex;
    justify-content: flex-end;
}

.career-framework__left-content {
    max-width: calc(1822px / 2);
    width: 100%;
    padding: 159px var(--space-xl) var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
}

.career-framework__intro {
    font-size: 30px;
    font-weight: 400;
    color: #191919;
    line-height: 1.1;
    margin: 0 0 60px;
    max-width: 497px;
}

.career-framework__steps {
    margin-bottom: 60px;
}

.career-framework__step {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 24px;
}

.career-framework__step-title {
    font-size: 96px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    position: relative;
    display: block;
}

.career-framework__step-title-base {
    opacity: 0.3;
}

.career-framework__step-title-reveal {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
}

.career-framework__step-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 22px;
    font-weight: 400;
    color: #191919;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;
}

.career-framework__step-desc--visible {
    opacity: 1;
}

.career-framework__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    padding: 0 40px;
    background: transparent;
    color: #191919;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #191919;
    border-radius: 36px;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.career-framework__cta:hover {
    background: #191919;
    color: #d5fb7b;
}

.career-framework__right {
    flex: 1;
    position: relative;
}

.career-framework__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.career-framework__img--active {
    opacity: 1;
}

.career-framework__img-overlay {
    position: absolute;
    inset: 0;
    background: #191919;
    opacity: 0.54;
}

@media (max-width: 1200px) {
    .career-framework-scroll {
        height: auto;
    }

    .career-framework-scroll__sticky {
        position: relative;
        height: auto;
    }

    .career-framework {
        flex-direction: column;
        height: auto;
    }

    .career-framework__left {
        width: 100%;
    }

    .career-framework__left-content {
        max-width: 100%;
        padding: 60px var(--space-md);
    }

    .career-framework__step-title {
        font-size: 64px;
    }

    .career-framework__step-title--faded {
        opacity: 1;
    }

    .career-framework__step-desc {
        max-height: 200px !important;
        opacity: 1 !important;
    }

    .career-framework__right {
        height: 500px;
    }

    .career-framework__img {
        opacity: 0;
    }

    .career-framework__img:first-of-type {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .career-framework__left-content {
        padding: 40px var(--space-sm);
    }

    .career-framework__step-title {
        font-size: 48px;
    }

    .career-framework__intro {
        font-size: 24px;
    }

    .career-framework__right {
        height: 350px;
    }
}

/* ── Split Thin Banner ── */
.split-thin-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    border: 1px solid #707070;
    border-radius: 20px;
    padding-top: 29px;
    padding-bottom: var(--space-sm);
    font-family: 'Archivo', sans-serif;
}

.split-thin-banner__body {
    flex: 1;
    min-width: 0;
}

.split-thin-banner__title {
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 28px;
    margin: 0 0 10px;
}

.split-thin-banner__text {
    font-size: 15px;
    font-weight: 400;
    color: #191919;
    line-height: 22px;
    margin: 0;
}

.split-thin-banner__logos {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.split-thin-banner__logo-img {
    height: 53px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .split-thin-banner {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .split-thin-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .split-thin-banner__logos {
        gap: 16px;
    }

    .split-thin-banner__logo-img {
        height: 40px;
    }
}

/* ── FAQ Accordion ── */

.faq-accordion {
    background: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq-accordion__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-accordion__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-accordion__title {
    font-family: 'Archivo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #191919;
    margin: 0 0 16px;
    line-height: 1.2;
}

.faq-accordion__description {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.6;
    max-width: 512px;
    margin: 0 auto;
}

.faq-accordion__list {
    width: 100%;
    max-width: 871px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-accordion__item {
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    overflow: hidden;
}

.faq-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: 'Archivo', sans-serif;
}

.faq-accordion__trigger:focus-visible {
    outline: 2px solid #191919;
    outline-offset: -2px;
    border-radius: 24px;
}

.faq-accordion__question {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #191919;
    line-height: 1.4;
}

.faq-accordion__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191919;
    transition: transform 0.25s ease;
}

.faq-accordion__trigger--open .faq-accordion__icon {
    transform: rotate(90deg);
}

.faq-accordion__panel[hidden] {
    display: none;
}

.faq-accordion__divider {
    border-top: 1px solid #e5e5e5;
    margin: 0 24px;
}

.faq-accordion__answer {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.7;
    padding: 16px 24px 20px;
    margin: 0;
}

.faq-accordion__empty {
    text-align: center;
    color: #999;
    padding: 20px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .faq-accordion__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .faq-accordion {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .faq-accordion__header {
        margin-bottom: 32px;
    }

    .faq-accordion__title {
        font-size: 22px;
    }

    .faq-accordion__trigger {
        padding: 16px 20px;
    }

    .faq-accordion__divider {
        margin: 0 20px;
    }

    .faq-accordion__answer {
        padding: 12px 20px 16px;
    }
}

/* ── Price Cards ──────────────────────────────────── */

.price-cards {
    padding: 80px 40px;
    max-width: 1502px;
    margin: 0 auto;
}

.price-cards__header {
    text-align: center;
    margin-bottom: 48px;
}

.price-cards__title {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #191919;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.price-cards__title span {
    text-transform: none;
}

.price-cards__description {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: #191919;
    max-width: 520px;
    margin: 0 auto;
}

.price-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-cards__card {
    background: #191919;
    border: 1px solid #707070;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.price-cards__card-body {
    padding: 32px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-cards__card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.27;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.price-cards__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.price-cards__tag {
    display: inline-flex;
    align-items: center;
    height: 27px;
    padding: 0 16px;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 15px;
    color: #d5fb7b;
}

.price-cards__card-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.57;
    color: #fff;
    margin-bottom: 24px;
}

.price-cards__card-desc p {
    margin: 0 0 8px;
}

.price-cards__card-desc p:last-child {
    margin-bottom: 0;
}

.price-cards__card-desc strong {
    font-weight: 700;
}

.price-cards__items-label {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.57;
    color: #fff;
    margin: 0 0 8px;
}

.price-cards__items {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.price-cards__item {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 30px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.price-cards__item--included {
    color: #fff;
}

.price-cards__item--excluded {
    color: #d6d6d6;
    font-weight: 400;
}

.price-cards__item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.price-cards__item--excluded .price-cards__item-icon {
    width: 16px;
    height: 16px;
}

.price-cards__item-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.price-cards__requirements {
    background: rgba(39, 39, 44, 0.97);
    border: 1px solid #27272a;
    border-radius: 20px;
    padding: 14px 24px;
    margin-top: auto;
}

.price-cards__requirements p {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.83;
    color: #fff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-cards__requirements strong {
    font-weight: 700;
}

.price-cards__card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 16px 24px;
    background: #d5fb7b;
    border-top: 1px solid #707070;
    text-decoration: none;
    transition: background 0.2s ease;
}

.price-cards__card-footer:hover {
    background: #c5eb6b;
}

.price-cards__footer-text {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.33;
    color: #191919;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .price-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .price-cards {
        padding: 48px 20px;
    }

    .price-cards__title {
        font-size: 28px;
    }

    .price-cards__description {
        font-size: 18px;
    }

    .price-cards__grid {
        grid-template-columns: 1fr;
    }

    .price-cards__card-body {
        padding: 24px 20px;
    }
}

/* ── Price Cards: Alt (Grey BG) ── */

.price-cards--alt {
    position: relative;
    overflow: hidden;
    background-color: #d6d6d6;
    padding: 0;
    max-width: none;
}

.price-cards--alt > .container {
    max-width: 1502px;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.price-cards__bg {
    position: absolute;
    top: 50%;
    left: max(0px, calc((100% - 1822px) / 2));
    width: 900px;
    height: 900px;
    transform: translateY(-50%);
    background: url('../assets/brand/logomark-white.svg') no-repeat center / contain;
    opacity: 0.15;
    filter: grayscale(1);
    pointer-events: none;
}

@media (max-width: 768px) {
    .price-cards--alt > .container {
        padding: 48px 20px;
    }
}

/* ── Course Hero ─────────────────────────────────── */

.course-hero {
    padding: 48px 40px 60px;
    max-width: 1502px;
    margin: 0 auto;
}

.course-hero__breadcrumbs {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.31;
    color: #191919;
    margin-bottom: 12px;
}

.course-hero__layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.course-hero__content {
    flex: 1;
    min-width: 0;
}

.course-hero__title {
    font-family: 'Archivo', sans-serif;
    font-size: 63px;
    font-weight: 700;
    line-height: 1;
    color: #191919;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.course-hero__title span {
    text-transform: none;
}

.course-hero__description {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #191919;
    margin: 0 0 32px;
    max-width: 648px;
}

/* Info bar: Price / Duration / Format + Stats */

.course-hero__info-bar {
    background: #000;
    border: 1px solid #707070;
    border-radius: 20px;
    padding: 20px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.course-hero__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.course-hero__info-label {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #d5fb7b;
    line-height: 1;
}

.course-hero__info-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    min-width: 127px;
    padding: 0 20px;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 36px;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #191919;
    line-height: 1;
}

/* Stats (sits between info bar and buttons on white bg) */

.course-hero__stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.course-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.course-hero__stat-value {
    font-family: 'Archivo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 1.3;
}

.course-hero__stat-label {
    font-family: 'Archivo', sans-serif;
    font-size: 7px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 1.3;
}

.course-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: #707070;
    flex-shrink: 0;
}

/* Buttons */

.course-hero__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.course-hero__btn.cew-btn {
    height: 46px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 600;
}

/* Media column */

.course-hero__media {
    position: relative;
    width: 713px;
    flex-shrink: 0;
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 713 / 431;
}

.course-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-hero__media-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 114px;
    background: linear-gradient(to top, #191919, rgba(31, 31, 31, 0.92) 41%, rgba(101, 101, 101, 0.01));
    border-radius: 0 0 25px 25px;
    pointer-events: none;
}

.course-hero__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: transform 0.2s ease;
}

.course-hero__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.course-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    z-index: 3;
}

.course-hero__media--playing .course-hero__play,
.course-hero__media--playing .course-hero__img,
.course-hero__media--playing .course-hero__media-overlay {
    display: none;
}

@media (max-width: 1200px) {
    .course-hero__media {
        width: 50%;
    }

    .course-hero__title {
        font-size: 48px;
    }

    .course-hero__stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .course-hero {
        padding: 32px 20px 40px;
    }

    .course-hero__layout {
        flex-direction: column;
    }

    .course-hero__media {
        width: 100%;
    }

    .course-hero__title {
        font-size: 36px;
    }

    .course-hero__description {
        font-size: 20px;
    }

    .course-hero__info-bar {
        padding: 16px;
        gap: 12px;
    }

    .course-hero__info-value {
        min-width: 100px;
        font-size: 16px;
    }
}

/* ── Grid Cards ──────────────────────────────────── */

.grid-cards {
    padding: 80px 40px;
    max-width: 1502px;
    margin: 0 auto;
}

.grid-cards__header {
    text-align: center;
    margin-bottom: 48px;
}

.grid-cards__title {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #191919;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.grid-cards__title span {
    text-transform: none;
}

.grid-cards__description {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: #191919;
    max-width: 589px;
    margin: 0 auto;
}

.grid-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.grid-cards__card {
    background: #191919;
    border: 1px solid #707070;
    border-radius: 20px;
    padding: 30px 33px;
    display: flex;
    flex-direction: column;
}

.grid-cards__card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.14;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.grid-cards__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.grid-cards__tag {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    font-family: 'Archivo', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 14px;
    color: #d5fb7b;
}

.grid-cards__card-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.56;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.grid-cards__card-desc p {
    margin: 0;
}

.grid-cards__card-desc strong {
    font-weight: 700;
}

@media (max-width: 1200px) {
    .grid-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cards {
        padding: 48px 20px;
    }

    .grid-cards__title {
        font-size: 28px;
    }

    .grid-cards__description {
        font-size: 18px;
    }

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

/* ── Icon Cards ──────────────────────────────────── */

.icon-cards {
    position: relative;
    overflow: hidden;
    background-color: #191919;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon-cards__overlay {
    position: absolute;
    inset: 0;
    background: #191919;
    opacity: 0.88;
    pointer-events: none;
}

.icon-cards__inner {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-cards__title {
    font-family: 'Archivo', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 32px;
}

.icon-cards__title span {
    color: #d5fb7b;
}

.icon-cards__grid {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.icon-cards__card {
    flex: 1;
    max-width: 252px;
    background: rgba(213, 251, 123, 0.18);
    border: 1px solid #d5fb7b;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.icon-cards__icon {
    width: 36px;
    height: 34px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.icon-cards__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-cards__icon [data-lucide] {
    width: 22px;
    height: 22px;
    color: #d5fb7b;
}

.icon-cards__card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 6px;
}

.icon-cards__card-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
    color: #fff;
    margin: 0 0 10px;
}

.icon-cards__card-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.58;
    color: #fff;
    margin: 0;
}

.icon-cards__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.icon-cards__footer-label {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.icon-cards__footer-img {
    max-width: 578px;
    height: 79px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .icon-cards__grid {
        flex-wrap: wrap;
    }

    .icon-cards__card {
        max-width: calc(33.333% - 12px);
        flex: 0 0 calc(33.333% - 12px);
    }
}

@media (max-width: 768px) {
    .icon-cards__inner {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .icon-cards__grid {
        flex-direction: column;
        align-items: center;
    }

    .icon-cards__card {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    .icon-cards__footer-img {
        max-width: 100%;
        height: auto;
    }
}

/* ── Experts Grid ────────────────────────────────── */

.experts-grid {
    background: #191919;
}

.experts-grid__inner {
    padding-top: 44px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experts-grid__title {
    font-family: 'Archivo', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 12px;
}

.experts-grid__title span {
    color: #d5fb7b;
}

.experts-grid__description {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    max-width: 492px;
    margin: 0 0 40px;
}

.experts-grid__grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.experts-grid__expert {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.experts-grid__photo {
    width: 206px;
    height: 206px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
}

.experts-grid__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experts-grid__name {
    font-family: 'Archivo', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px;
}

.experts-grid__role {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 6px;
}

.experts-grid__bio-link {
    font-family: 'Archivo', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #d5fb7b;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
}

.experts-grid__bio-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .experts-grid__inner {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .experts-grid__grid {
        gap: 32px;
    }

    .experts-grid__photo {
        width: 160px;
        height: 160px;
    }
}

/* ── Payment Options ─────────────────────────────── */

.payment-options {
    padding: 80px 40px;
    max-width: 1502px;
    margin: 0 auto;
}

.payment-options__layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.payment-options__left {
    flex: 0 0 526px;
    max-width: 526px;
    display: flex;
    flex-direction: column;
}

.payment-options__title {
    font-family: 'Archivo', sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.29;
    color: #191919;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.payment-options__description {
    font-family: 'Archivo', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.57;
    color: #191919;
    margin: 0 0 28px;
}

/* Plan block (hardcoded) */

.payment-options__plan {
    background: #191919;
    border: 1px solid #707070;
    border-radius: 28px;
    padding: 28px 36px 32px;
    margin-bottom: 24px;
}

.payment-options__plan-select {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #191919;
    border-radius: 36px;
    padding: 0 20px;
    height: 48px;
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #000;
    margin-bottom: 24px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12L3 6h12L9 12z' fill='%23191919'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    padding-right: 48px;
}

.payment-options__plan-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.payment-options__plan-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.payment-options__plan-label {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #d6d6d6;
    line-height: 1.57;
}

.payment-options__plan-value {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.59;
}

.payment-options__plan-bar {
    display: flex;
    height: 39px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4px;
}

.payment-options__plan-bar-fill {
    width: 28%;
    background: #d5fb7b;
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #191919;
}

.payment-options__plan-bar-rest {
    flex: 1;
    background: #d6d6d6;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #191919;
}

.payment-options__plan-bar-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
}

.payment-options__plan-bar-labels span {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #d6d6d6;
}

.payment-options__plan-cta {
    margin-top: 20px;
}

/* Buttons */

.payment-options__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

/* Right: cards grid */

.payment-options__right {
    flex: 1;
    min-width: 0;
}

.payment-options__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.payment-options__grid .payment-options__col:last-child {
    padding-top: 63px;
}

.payment-options__grid .payment-options__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-options__card {
    background: #191919;
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-options__card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.payment-options__card-icon span {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #191919;
    line-height: 1;
}

.payment-options__card-icon [data-lucide] {
    width: 24px;
    height: 24px;
    color: #191919;
}

.payment-options__card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #d5fb7b;
    margin: 0 0 4px;
}

.payment-options__card-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #d6d6d6;
    margin: 0 0 8px;
}

.payment-options__card-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #d6d6d6;
    margin: 0;
}

.payment-options__card-provider {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-top: 12px;
}

@media (max-width: 1200px) {
    .payment-options__left {
        flex: 0 0 420px;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .payment-options {
        padding: 48px 20px;
    }

    .payment-options__layout {
        flex-direction: column;
    }

    .payment-options__left {
        flex: none;
        max-width: 100%;
    }

    .payment-options__grid {
        grid-template-columns: 1fr;
    }

    .payment-options__card-title {
        font-size: 24px;
    }
}

/* ── Find Location ───────────────────────────────── */

.find-location {
    position: relative;
    overflow: hidden;
    background: #d6d6d6;
}

.find-location__bg {
    position: absolute;
    top: 50%;
    left: max(0px, calc((100% - 1822px) / 2));
    width: 900px;
    height: 900px;
    transform: translateY(-50%);
    background: url('../assets/brand/logomark-white.svg') no-repeat center / contain;
    opacity: 0.15;
    filter: grayscale(1);
    pointer-events: none;
}

.find-location > .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.find-location__header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
}

.find-location__title {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: #191919;
    text-transform: uppercase;
    margin: 0;
    flex: 0 0 auto;
    max-width: 340px;
}

.find-location__description {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    color: #191919;
    margin: 0;
    flex: 0 1 400px;
}

.find-location__search-wrap {
    flex: 0 0 340px;
    margin-left: auto;
}

.find-location__search {
    position: relative;
}

.find-location__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
}

.find-location__search-input {
    width: 100%;
    height: 47px;
    padding: 0 100px 0 36px;
    border: 1px solid #707070;
    border-radius: 10px;
    background: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    color: #191919;
    outline: none;
}

.find-location__search-input::placeholder {
    color: #999;
}

.find-location__search-input:focus {
    border-color: #191919;
}

.find-location__search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    height: 39px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    background: #191919;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.15s;
}

.find-location__search-btn:hover {
    background: #333;
}

.find-location__search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.find-location__search-status {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 8px 0 0;
    color: #707070;
    text-align: right;
}

/* Format toggle */

.find-location__format-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.find-location__format-label {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #707070;
}

.find-location__format-toggle {
    display: flex;
    gap: 4px;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    padding: 3px;
}

.find-location__format-btn {
    height: 32px;
    padding: 0 16px;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #707070;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.find-location__format-btn:hover {
    color: #191919;
}

.find-location__format-btn.active {
    background: #191919;
    color: #d5fb7b;
}

/* Loader */

.find-location__loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 0;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #707070;
}

.find-location__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #d6d6d6;
    border-top-color: #191919;
    border-radius: 50%;
    animation: fl-spin 0.7s linear infinite;
}

.find-location__spinner--sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

@keyframes fl-spin {
    to { transform: rotate(360deg); }
}

.find-location__dates-loader {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

/* Results count */

.find-location__results-count {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #191919;
    margin: 0 0 20px;
}

/* Carousel */

.find-location__carousel-wrap {
    position: relative;
    margin-bottom: 48px;
}

.find-location__swiper {
    overflow: hidden;
}

.find-location__swiper .swiper-wrapper {
    display: flex;
}

.find-location__slide {
    width: 380px !important;
    flex-shrink: 0;
}

.find-location__nav {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.find-location__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #191919;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #191919;
    transition: background 0.2s, color 0.2s;
}

.find-location__nav-btn:hover {
    background: #191919;
    color: #fff;
}

.find-location__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Card */

.find-location__card {
    border: 1px solid #333;
    border-radius: 17px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.find-location__card:hover,
.find-location__card--open {
    border-color: #d5fb7b;
}

.find-location__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #191919;
    padding: 16px 20px;
}

.find-location__card-header-left {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.find-location__card-header-left svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.find-location__card-name {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

.find-location__card-ref {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    display: block;
    margin-top: 2px;
}

.find-location__card-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.find-location__card-dist {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    white-space: nowrap;
}

.find-location__card-toggle {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s;
}

.find-location__card--open .find-location__card-toggle {
    transform: rotate(180deg);
}

/* Badge */

.find-location__badge {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.find-location__badge--format {
    background: #d5fb7b;
    color: #191919;
}

.find-location__badge--available {
    background: #d5fb7b;
    color: #191919;
}

.find-location__badge--full {
    background: #333;
    color: #999;
}

/* Card summary (venue + spaces) */

.find-location__card-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: #fff;
}

.find-location__card-facility {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #191919;
}

/* Expandable details */

.find-location__card-details {
    background: #fff;
    padding: 0 20px 20px;
    border-top: 1px solid #eee;
}

.find-location__detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.find-location__detail-row:last-child {
    border-bottom: none;
}

.find-location__detail-row svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #707070;
}

.find-location__detail-label {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #707070;
    display: block;
    margin-bottom: 2px;
}

.find-location__detail-value {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #191919;
    display: block;
}

/* Workshop/Assessment dates */

.find-location__dates-section {
    padding: 10px 0 0;
}

.find-location__dates-section + .find-location__dates-section {
    margin-top: 8px;
}

.find-location__date-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #191919;
}

.find-location__date-item svg {
    color: #707070;
    flex-shrink: 0;
}

.find-location__no-results {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #191919;
    text-align: center;
    padding: 40px 0;
    margin: 0;
}

/* Footer */

.find-location__footer {
    text-align: center;
}

.find-location__footer-text {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    color: #191919;
    max-width: 520px;
    margin: 0 auto 24px;
}

@media (max-width: 1024px) {
    .find-location__header {
        flex-wrap: wrap;
    }

    .find-location__search-wrap {
        flex: 1 1 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .find-location > .container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .find-location__header {
        flex-direction: column;
        gap: 16px;
    }

    .find-location__title {
        font-size: 28px;
        max-width: none;
    }

    .find-location__description {
        font-size: 18px;
        flex: none;
    }

    .find-location__search-wrap {
        flex: none;
        width: 100%;
    }

    .find-location__slide {
        width: 300px !important;
    }
}

/* ── Intro Points ── */
.intro-points {
    width: 100%;
}

.intro-points__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}

.intro-points__subheading {
    font-family: 'Archivo', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: #191919;
    margin: 0 0 16px;
}

.intro-points__heading {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #191919;
    margin: 0 0 20px;
}

.intro-points__description {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #191919;
    margin: 0;
}

.intro-points__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.intro-points__point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.intro-points__circle {
    flex-shrink: 0;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-points__number {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 41px;
    color: #d5fb7b;
}

.intro-points__content {
    padding-top: 2px;
}

.intro-points__point-title {
    font-family: 'Archivo', sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: #191919;
    margin: 0 0 4px;
}

.intro-points__point-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #191919;
    margin: 0;
}

/* ── Intro Points: Responsive ── */
@media (max-width: 1024px) {
    .intro-points__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-points__heading {
        font-size: 36px;
        line-height: 38px;
    }

    .intro-points__description {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .intro-points__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-points__heading {
        font-size: 30px;
        line-height: 34px;
    }

    .intro-points__circle {
        width: 56px;
        height: 56px;
    }

    .intro-points__number {
        font-size: 24px;
    }

    .intro-points__circle svg {
        width: 28px;
        height: 28px;
    }
}

/* ── Blog Page ── */

/* Pills (shared) */
.blog-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 20px;
    border-radius: 20px;
    font-family: 'Archivo', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-decoration: none;
}

.blog-pill--green {
    background: #d5fb7b;
    color: #191919;
    border: 1px solid #d6d6d6;
}

.blog-pill--outline-light {
    background: transparent;
    color: #d5fb7b;
    border: 1px solid #d6d6d6;
}

.blog-pill--outline-dark {
    background: transparent;
    color: #191919;
    border: 1px solid #d6d6d6;
}

.blog-pill--filter {
    background: transparent;
    color: #191919;
    border: 1px solid #d6d6d6;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.blog-pill--filter:hover {
    border-color: #191919;
}

.blog-pill--active {
    background: #d5fb7b;
    color: #191919;
    border-color: #d6d6d6;
}

/* Featured section */
.blog-featured__mobile {
    display: none;
}

.blog-featured {
    padding-top: 0;
}

.blog-featured .container {
    max-width: 1822px;
}

.blog-featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.blog-featured__primary {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 725px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-featured__primary-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured__primary-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    border-radius: 20px;
    background: linear-gradient(
        to top,
        #191919 0%,
        rgba(31, 31, 31, 0.92) 41%,
        rgba(101, 101, 101, 0.01) 100%
    );
}

.blog-featured__primary-content {
    position: relative;
    z-index: 1;
    padding: 48px;
}

.blog-featured__pills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-featured__primary-title {
    font-family: 'Archivo', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 24px;
    max-width: 750px;
}

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

.blog-featured__card {
    flex: 1;
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.blog-featured__card--green {
    background: #d5fb7b;
}

.blog-featured__card--dark {
    background: #191919;
}

.blog-featured__card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.blog-featured__card--green .blog-featured__card-title {
    color: #191919;
}

.blog-featured__card--dark .blog-featured__card-title {
    color: #fff;
}

.blog-featured__card .cew-btn,
.blog-featured__primary .cew-btn {
    align-self: flex-start;
}

.blog-featured__card-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

/* Intro */
.blog-intro {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-md);
}

.blog-intro .container {
    max-width: 1822px;
}

.blog-intro__breadcrumbs {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #191919;
    margin: 0 0 8px;
}

.blog-intro__title {
    font-family: 'Archivo', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #191919;
    margin: 0 0 16px;
}

.blog-intro__description {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #191919;
    margin: 0;
    max-width: 912px;
}

/* Filters */
.blog-filters {
    padding-bottom: var(--space-md);
}

.blog-filters .container {
    max-width: 1822px;
}

.blog-filters__bar {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.blog-filters__list-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    min-height: 50px;
}

.blog-filters__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 75%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px;
}

/* Hide categories beyond the 5th (All + 5 cats = 6 <a> tags) */
.blog-filters__list > a:nth-child(n+7) {
    display: none;
}

.blog-filters__list-wrap--expanded .blog-filters__list > a:nth-child(n+7) {
    display: inline-flex;
}

.blog-filters__toggle {
    cursor: pointer;
    flex-shrink: 0;
}

.blog-filters__mobile-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border: 1px solid #d6d6d6;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-filters__search {
    position: relative;
    flex: 0 0 280px;
    margin-left: auto;
}

.blog-filters__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.blog-filters__search-input {
    width: 100%;
    height: 40px;
    padding: 0 16px 0 38px;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    background: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #191919;
    outline: none;
    transition: border-color 0.15s;
}

.blog-filters__search-input::placeholder {
    color: #999;
}

.blog-filters__search-input:focus {
    border-color: #191919;
}

/* Results bar */
.blog-results-bar {
    padding-bottom: 20px;
}

.blog-results-bar .container {
    max-width: 1822px;
}

.blog-results-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    background: #f5f5f5;
    border-radius: 10px;
}

.blog-results-bar__count {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #191919;
    margin: 0;
}

.blog-results-bar__count strong {
    font-weight: 700;
}

.blog-results-bar__reset {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #707070;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

.blog-results-bar__reset:hover {
    color: #191919;
}

/* Post Grid */
.blog-grid .container {
    max-width: 1822px;
}

.blog-grid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: var(--space-xl);
}

.blog-grid__empty {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    color: #707070;
    text-align: center;
    padding: var(--space-xl) 0;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card__image-wrap {
    position: relative;
    height: 319px;
    margin: 14px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__image-overlay {
    position: absolute;
    inset: 0;
    background: #191919;
    opacity: 0.67;
    mix-blend-mode: darken;
    border-radius: 19px;
}

.blog-card__image-pills {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 24px 24px;
}

.blog-card__title {
    font-family: 'Archivo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    color: #191919;
    margin: 0 0 8px;
}

.blog-card__excerpt {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #191919;
    margin: 0 0 auto;
    padding-bottom: 20px;
}

.blog-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    border-radius: 36px;
    background: #d5fb7b;
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #191919;
    text-decoration: none;
    transition: background 0.15s;
}

.blog-card__cta:hover {
    background: #c5eb6b;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    padding-bottom: var(--space-xl);
}

.blog-pagination .page-numbers {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d6d6d6;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #707070;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.blog-pagination .page-numbers li a:hover {
    border-color: #191919;
    color: #191919;
}

.blog-pagination .page-numbers li span.current {
    background: #d5fb7b;
    border-color: #d5fb7b;
    color: #191919;
    font-weight: 700;
}

.blog-pagination .page-numbers li a.prev,
.blog-pagination .page-numbers li a.next {
    border-color: #d6d6d6;
    color: #707070;
}

.blog-pagination .page-numbers li a.prev:hover,
.blog-pagination .page-numbers li a.next:hover {
    border-color: #191919;
    color: #191919;
}

.blog-pagination .page-numbers li span.dots {
    border: none;
    color: #707070;
}

/* Blog Responsive */
@media (max-width: 1200px) {
    .blog-featured__primary-title {
        font-size: 40px;
    }

    .blog-featured__card-title {
        font-size: 32px;
    }

    .blog-intro__title {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .blog-featured__grid {
        grid-template-columns: 1fr;
    }

    .blog-featured__primary {
        min-height: 500px;
    }

    .blog-featured__side {
        flex-direction: row;
    }

    .blog-grid__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-featured__desktop {
        display: none;
    }

    .blog-featured__mobile {
        display: block;
    }

    .blog-featured__mobile .blog-featured__primary {
        min-height: 400px;
    }

    .blog-featured__mobile .blog-featured__card {
        min-height: 300px;
    }

    .blog-featured__pagination {
        margin-top: 16px;
        text-align: center;
    }

    .blog-featured__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #d6d6d6;
        opacity: 1;
    }

    .blog-featured__pagination .swiper-pagination-bullet-active {
        background: #d5fb7b;
    }

    .blog-filters__bar {
        flex-direction: row;
        align-items: center;
    }

    .blog-filters__list-wrap {
        min-height: 34px;
        flex: 0 0 auto;
        position: static;
    }

    .blog-filters__bar {
        position: relative;
    }

    .blog-filters__list {
        position: static;
        max-width: 100%;
    }

    .blog-filters__mobile-toggle {
        display: inline-flex;
    }

    /* Hide all cat pills and desktop toggle on mobile collapsed */
    .blog-filters__list > a {
        display: none;
    }

    .blog-filters__toggle {
        display: none;
    }

    /* Show all when expanded — absolute overlay relative to bar */
    .blog-filters__list-wrap--expanded .blog-filters__list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 10;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        padding: 8px;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .blog-filters__list-wrap--expanded .blog-filters__list > a {
        display: inline-flex;
    }

    .blog-filters__list-wrap--expanded .blog-filters__mobile-toggle svg {
        transform: rotate(180deg);
    }

    .blog-filters__search {
        flex: 1;
    }

    .blog-featured__primary {
        min-height: 400px;
    }

    .blog-featured__primary-title,
    .blog-featured__card-title {
        font-size: 30px;
    }

    .blog-featured__primary-content {
        padding: 24px;
    }

    .blog-featured__card {
        padding: 24px;
    }

    .blog-featured__side {
        flex-direction: column;
    }

    .blog-intro__title {
        font-size: 32px;
    }

    .blog-intro__description {
        font-size: 18px;
    }

    .blog-grid__list {
        grid-template-columns: 1fr;
    }

    .blog-card__title {
        font-size: 24px;
    }
}


/* ═══════════════════════════════════════════════════
   Single Post
   ═══════════════════════════════════════════════════ */

/* Hero */
.single-post__hero .container {
    max-width: 1822px;
}

.single-post__hero-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 725px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.single-post__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #191919 0%, rgba(31,31,31,0.92) 41%, rgba(101,101,101,0.01) 100%);
    border-radius: 20px;
}

.single-post__breadcrumbs {
    position: absolute;
    top: 20px;
    left: 35px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.58);
    z-index: 2;
}

.single-post__breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.single-post__breadcrumbs a:hover {
    text-decoration: underline;
}

.single-post__hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 60px;
}

.single-post__title {
    font-family: 'Archivo', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    max-width: 1005px;
    text-transform: uppercase;
    max-width: 805px;
    margin: 0 0 30px;
}

.single-post__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-post__author-avatar {
    width: 84px;
    height: 84px;
    border-radius: 19px;
    object-fit: cover;
}

.single-post__author-info {
    display: flex;
    flex-direction: column;
}

.single-post__author-name {
    font-family: 'Archivo', sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
}

.single-post__author-role {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
    text-transform: uppercase;
}

/* Meta Bar */
.single-post__meta {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.single-post__meta .container {
    max-width: 1822px;
}

.single-post__meta-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-left: 80px;
}

.single-post__meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-transform: uppercase;
}

.single-post__meta-value {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #191919;
}

.single-post__meta-label {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #191919;
}

.single-post__meta-pills {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

/* Content + Sidebar Layout */
.single-post__body {
    padding-bottom: var(--space-lg);
}

.single-post__body .container {
    max-width: 1822px;
}

.single-post__layout {
    display: flex;
    gap: 60px;
    padding-left: 80px;
    justify-content: space-between;
}

.single-post__content {
    flex: 1;
    min-width: 0;
    max-width: 780px;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #191919;
}

.single-post__content h2 {
    font-size: 29px;
    font-weight: 700;
    line-height: 32px;
    margin: 40px 0 16px;
}

.single-post__content h3 {
    font-size: 23px;
    font-weight: 700;
    line-height: 32px;
    margin: 32px 0 12px;
}

.single-post__content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin: 24px 0 8px;
}

.single-post__content p {
    margin: 0 0 16px;
}

.single-post__content ul {
    margin: 0 0 16px;
    padding-left: 24px;
    list-style-type: disc;
}

.single-post__content ol {
    margin: 0 0 16px;
    padding-left: 24px;
    list-style-type: decimal;
}

.single-post__content li {
    margin-bottom: 4px;
}

.single-post__content blockquote {
    border-left: 9px solid #d5fb7b;
    margin: 32px 0;
    padding: 16px 0 16px 33px;
    font-size: 25px;
    line-height: 34px;
}

.single-post__content blockquote p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

.single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

/* Sidebar Widget */
.single-post__sidebar {
    flex: 0 0 423px;
}

.single-post__widget {
    background: #191919;
    border: 1px solid #707070;
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.single-post__widget-eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 13px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 8px;
}

.single-post__widget-title {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 21px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.single-post__widget-title span {
    display: block;
    font-size: 17px;
    color: #d5fb7b;
}

.single-post__widget-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #fff;
    text-align: center;
    margin: 0 0 24px;
}

.single-post__widget-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-post__widget-field label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.single-post__widget-field label span {
    color: #d5fb7b;
}

.single-post__widget-field input {
    width: 100%;
    height: 37px;
    border: 1px solid #707070;
    border-radius: 10px;
    background: #fff;
    padding: 0 12px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #191919;
    outline: none;
}

.single-post__widget-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0;
}

.single-post__widget-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 25px;
    height: 22px;
    border: 1px solid #707070;
    border-radius: 7px;
    background: #fff;
    appearance: none;
    cursor: pointer;
    margin: 0;
}

.single-post__widget-consent input[type="checkbox"]:checked {
    background: #d5fb7b;
}

.single-post__widget-consent label {
    font-family: 'Archivo', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    color: #fff;
    cursor: pointer;
}

/* Related Posts */
.single-post__related .container {
    max-width: 1822px;
}

.single-post__related-heading {
    font-family: 'Archivo', sans-serif;
    font-size: 43px;
    font-weight: 700;
    line-height: 1.1;
    color: #191919;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 40px;
}

.single-post__related-heading span {
    text-transform: none;
}

.single-post__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ── Single Post Responsive ── */
@media (max-width: 1024px) {
    .single-post__layout {
        flex-direction: column;
        padding-left: 0;
    }

    .single-post__sidebar {
        flex: none;
        max-width: 100%;
    }

    .single-post__content {
        max-width: 100%;
    }

    .single-post__meta-bar {
        padding-left: 0;
    }

    .single-post__hero-content {
        padding: 0 40px 40px;
    }

    .single-post__title {
        font-size: 42px;
    }

    .single-post__related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-post__hero-inner {
        min-height: 500px;
    }

    .single-post__hero-content {
        padding: 0 24px 30px;
    }

    .single-post__title {
        font-size: 32px;
    }

    .single-post__breadcrumbs {
        left: 20px;
        top: 16px;
        font-size: 13px;
    }

    .single-post__author-avatar {
        width: 56px;
        height: 56px;
    }

    .single-post__author-name {
        font-size: 16px;
    }

    .single-post__meta-bar {
        flex-wrap: wrap;
        gap: 16px;
    }

    .single-post__content {
        font-size: 18px;
        line-height: 28px;
    }

    .single-post__content h2 {
        font-size: 24px;
    }

    .single-post__content h3 {
        font-size: 20px;
    }

    .single-post__content blockquote {
        font-size: 20px;
        line-height: 28px;
        padding-left: 20px;
    }

    .single-post__related-heading {
        font-size: 30px;
    }

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

    .single-post__sidebar {
        order: -1;
    }
}

/* ── Cards Carousel ──────────────────────────────── */

.cards-carousel {
    padding: var(--space-lg) 0;
}

.cards-carousel__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left text column */
.cards-carousel__text {
    flex: 0 0 420px;
    padding-top: 20px;
}

.cards-carousel__eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    margin: 0 0 12px;
    line-height: 1.2;
}

.cards-carousel__title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 24px;
}

.cards-carousel__desc {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #191919;
    line-height: 1.3;
    margin: 0 0 32px;
    max-width: 468px;
}

/* Right card stack */
.cards-carousel__stack {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 440px;
}

.cards-carousel__track {
    position: relative;
    width: 100%;
    height: 393px;
    overflow: hidden;
}

.cards-carousel__card {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -270px;
    width: 541px;
    height: 393px;
    background: #191919;
    border: none;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
    will-change: transform, opacity;
}

/* Vertical label */
.cards-carousel__card-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Archivo', sans-serif;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6e6e6e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    flex-shrink: 0;
    line-height: 1;
}

.cards-carousel__card--active .cards-carousel__card-label {
    color: #d5fb7b;
}

/* Card body */
.cards-carousel__card-body {
    padding: 60px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.cards-carousel__card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
}

.cards-carousel__card-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #d6d6d6;
    line-height: 1.3;
    margin: 0;
}

/* Dots */
.cards-carousel__dots {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 24px;
}

.cards-carousel__dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #707070;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s;
}

.cards-carousel__dot--active {
    background: #d5fb7b;
    border-color: #d5fb7b;
}

/* Responsive */
@media (max-width: 1200px) {
    .cards-carousel__inner {
        flex-direction: column;
        gap: 40px;
    }

    .cards-carousel__text {
        flex: none;
        max-width: 100%;
    }

    .cards-carousel__stack {
        width: 100%;
    }

    .cards-carousel__card {
        width: min(541px, 100%);
    }
}

@media (max-width: 768px) {
    .cards-carousel__title {
        font-size: 36px;
    }

    .cards-carousel__desc {
        font-size: 20px;
    }

    .cards-carousel__card {
        width: 100%;
        height: 340px;
        flex-direction: column;
    }

    .cards-carousel__card-label {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 28px;
        padding: 16px 20px 0;
    }

    .cards-carousel__card-body {
        padding: 16px 20px 24px;
    }

    .cards-carousel__card-title {
        font-size: 22px;
    }

    .cards-carousel__card-desc {
        font-size: 18px;
    }

    .cards-carousel__stack {
        height: 400px;
    }

    .cards-carousel__track {
        height: 340px;
    }
}

/* ── Download Guide ── */
.download-guide {
    background: #191919;
    border: 1px solid #707070;
    border-radius: 20px;
    overflow: hidden;
}

.download-guide__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.download-guide__text {
    flex: 0 0 42%;
    max-width: 42%;
}

.download-guide__eyebrow {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
    padding-left: 8px;
}

.download-guide__title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.download-guide__title-white {
    display: block;
    color: #fff;
}

.download-guide__title-accent {
    display: block;
    color: #d5fb7b;
}

.download-guide__desc {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    margin: 0;
    max-width: 573px;
}

.download-guide__form {
    flex: 1;
    min-width: 0;
}

/* ── Download Guide: Tablet ── */
@media (max-width: 1024px) {
    .download-guide__inner {
        flex-direction: column;
        gap: 32px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .download-guide__text {
        flex: none;
        max-width: 100%;
    }

    .download-guide__title {
        font-size: 36px;
        line-height: 40px;
    }

    .download-guide__desc {
        font-size: 18px;
        line-height: 22px;
    }

}

/* ── Download Guide: Mobile ── */
@media (max-width: 600px) {
    .download-guide__title {
        font-size: 28px;
        line-height: 32px;
    }

    .download-guide__desc {
        font-size: 16px;
        line-height: 20px;
    }

}
