.sk-home {
    --sk-home-text: #10192f;
    --sk-home-muted: #66728a;
    --sk-home-border: #e8edf5;
    --sk-home-purple: #7b5cff;
    --sk-home-green: #cfff2e;
    --sk-home-teal: #12aaa5;
    --sk-home-pink: #f263a6;
    --sk-home-yellow: #ffd76b;
    --sk-home-container: 1160px;
    background: #f7f9fc;
    color: var(--sk-home-text);
    min-height: 100vh;
    padding: 20px clamp(14px, 3vw, 44px) 56px;
}

.sk-home a {
    color: inherit;
    text-decoration: none;
}

.sk-home .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sk-home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 48px;
    align-items: start;
    max-width: var(--sk-home-container);
    margin: 0 auto;
    padding: 48px 0 34px;
}

.sk-home-hero-bg {
    position: relative;
    order: 2;
    min-height: 500px;
    overflow: hidden;
    border-radius: 34px;
    background: #efe9ff;
    box-shadow: 0 34px 80px rgba(80, 69, 122, 0.18);
    isolation: isolate;
}

.sk-home-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(115deg, rgba(222, 243, 125, 0.48), rgba(123, 92, 255, 0.22) 54%, rgba(18, 170, 165, 0.26)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0 18px, rgba(255, 255, 255, 0.05) 18px 36px);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.sk-home-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(16, 25, 47, 0.02) 0%, rgba(16, 25, 47, 0.18) 100%);
    pointer-events: none;
}

.sk-home-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
    filter: saturate(1.05);
}

.sk-home-hero-content {
    position: relative;
    z-index: 4;
    order: 1;
    min-width: 0;
    padding: 20px 0 0;
}

.sk-home-kicker,
.sk-home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(222, 243, 125, 0.58);
    color: var(--sk-home-purple);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.sk-home-kicker::before,
.sk-home-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(123, 92, 255, 0.1);
}

.sk-home-hero h1 {
    max-width: 700px;
    margin: 26px 0 0;
    color: #171522;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 900;
}

.sk-home-hero p {
    max-width: 660px;
    margin: 24px 0 0;
    color: #686779;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 500;
}

.sk-home-search {
    width: min(640px, 100%);
    margin-top: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 9px;
    border: 1px solid rgba(23, 21, 34, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(36, 34, 55, 0.1);
}

.sk-home-search input {
    min-width: 0;
    height: 58px;
    border: 0;
    background: transparent;
    padding: 0 18px;
    color: #171522;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.sk-home-search input::placeholder {
    color: #8a8995;
    opacity: 1;
}

.sk-home-search button,
.sk-home-btn,
.sk-home-instructor-cta em {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 0;
    padding: 0 28px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
}

.sk-home-search button {
    background: linear-gradient(135deg, #def37d 0%, #b9ef39 100%);
    color: #171522;
    box-shadow: 0 14px 28px rgba(185, 239, 57, 0.32);
    cursor: pointer;
}

.sk-home-btn.primary,
.sk-home-instructor-cta em {
    background: #171522;
    color: #fff !important;
    box-shadow: 0 18px 38px rgba(23, 21, 34, 0.16);
}

.sk-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.sk-home-btn.secondary {
    background: rgba(255, 255, 255, 0.88);
    color: var(--sk-home-text);
    border: 1px solid var(--sk-home-border);
}

.sk-home-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 44px 0 0;
    width: min(640px, 100%);
}

.sk-home-stats span {
    min-width: 0;
    padding-right: 34px;
    margin-right: 34px;
    border-right: 1px solid #e1dff0;
}

.sk-home-stats span:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.sk-home-stats strong {
    display: block;
    color: #171522;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.sk-home-stats small {
    display: block;
    margin-top: 8px;
    color: #818091;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.sk-home-section {
    margin-top: 30px;
    max-width: var(--sk-home-container);
    margin-left: auto;
    margin-right: auto;
}

.sk-home-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.sk-home-section-head.compact {
    align-items: start;
}

.sk-home-section-head h2 {
    margin: 12px 0 8px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
}

.sk-home-section-head p {
    max-width: 620px;
    margin: 0;
    color: var(--sk-home-muted);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}

.sk-home-section-head > a {
    flex: 0 0 auto;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--sk-home-border);
    border-radius: 12px;
    background: #fff;
    color: var(--sk-home-purple);
    font-weight: 900;
}

.sk-home-destination-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(244px, 300px);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    padding: 4px 4px 16px;
}

.sk-home-destination-track::-webkit-scrollbar {
    height: 8px;
}

.sk-home-destination-track::-webkit-scrollbar-thumb {
    background: #d9e0ed;
    border-radius: 999px;
}

.sk-home-destination-card {
    position: relative;
    min-height: 360px;
    display: grid;
    grid-template-rows: 168px 1fr;
    overflow: hidden;
    border: 1px solid var(--sk-home-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(17, 25, 46, 0.08);
    scroll-snap-align: start;
}

.sk-home-card-image {
    display: block;
    overflow: hidden;
    background: #edf2f7;
}

.sk-home-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.sk-home-destination-card:hover .sk-home-card-image img {
    transform: scale(1.04);
}

.sk-home-category-pill {
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 32px);
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--sk-home-purple);
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}

.sk-home-category-pill::before {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
}

.sk-home-destination-card:nth-child(2n) .sk-home-category-pill,
.sk-home-destination-card:nth-child(2n) .sk-home-card-body em {
    color: var(--sk-home-teal);
}

.sk-home-destination-card:nth-child(3n) .sk-home-category-pill,
.sk-home-destination-card:nth-child(3n) .sk-home-card-body em {
    color: var(--sk-home-pink);
}

.sk-home-card-body {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 190px;
    padding: 22px 20px;
}

.sk-home-card-body strong {
    min-height: 58px;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 900;
}

.sk-home-card-body small {
    color: var(--sk-home-muted);
    font-size: 15px;
    font-weight: 800;
}

.sk-home-card-body em {
    margin-top: auto;
    color: var(--sk-home-purple);
    font-style: normal;
    font-weight: 900;
}

.sk-home-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.sk-home-category-card {
    min-height: 156px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--sk-home-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(17, 25, 46, 0.06);
}

.sk-home-category-card span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f2f5fb;
}

.sk-home-category-card img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.sk-home-category-card strong {
    font-size: 17px;
    line-height: 1.22;
    font-weight: 900;
}

.sk-home-category-card small {
    color: var(--sk-home-muted);
    font-weight: 800;
}

.sk-home-split,
.sk-home-lower {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    gap: 18px;
}

.sk-home-panel,
.sk-home-blog,
.sk-home-instructor-cta {
    border: 1px solid var(--sk-home-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(17, 25, 46, 0.07);
}

.sk-home-panel,
.sk-home-blog {
    padding: 28px;
}

.sk-home-panel h2,
.sk-home-blog h2 {
    margin: 14px 0 18px;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 900;
}

.sk-home-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sk-home-steps article {
    min-height: 210px;
    padding: 20px;
    border: 1px solid var(--sk-home-border);
    border-radius: 18px;
    background: #fbfcff;
}

.sk-home-steps span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--sk-home-green);
    color: #486d00;
    font-weight: 900;
}

.sk-home-steps h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 900;
}

.sk-home-steps p,
.sk-home-why li span {
    margin: 0;
    color: var(--sk-home-muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.sk-home-why ul {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sk-home-why li {
    display: grid;
    gap: 6px;
    padding: 18px 18px 18px 58px;
    border: 1px solid var(--sk-home-border);
    border-radius: 18px;
    background: #fbfcff;
    position: relative;
}

.sk-home-why li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 22px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--sk-home-green);
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.sk-home-why li strong {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.sk-home-lower {
    align-items: stretch;
}

.sk-home-post-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sk-home-post {
    min-height: 244px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 130px 1fr;
    border: 1px solid var(--sk-home-border);
    border-radius: 18px;
    background: #fbfcff;
}

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

.sk-home-post span {
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 14px;
}

.sk-home-post em {
    color: var(--sk-home-purple);
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.sk-home-post strong {
    font-size: 16px;
    line-height: 1.24;
    font-weight: 900;
}

.sk-home-post small {
    color: var(--sk-home-muted);
    font-size: 12px;
    font-weight: 700;
}

.sk-home-instructor-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: end;
    gap: 18px;
    min-height: 360px;
    padding: 34px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.34) 100%),
        url("/img/3eabe2ff-28e4-4c19-b9da-1268748a4921.jpg") center/cover;
}

.sk-home-instructor-cta span {
    font-size: 34px;
    line-height: 1.06;
    font-weight: 900;
}

.sk-home-instructor-cta strong {
    max-width: 420px;
    color: #4f5c75;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.sk-home-instructor-cta em {
    width: fit-content;
    font-style: normal;
    background: var(--sk-home-green);
    color: var(--sk-home-text);
}

@media (max-width: 1180px) {
    .sk-home-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sk-home-split,
    .sk-home-lower {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .sk-home {
        padding: 14px 12px 40px;
    }

    .sk-home-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 14px 0 20px;
    }

    .sk-home-hero-bg {
        order: 2;
        min-height: 300px;
        border-radius: 24px;
    }

    .sk-home-hero-content {
        order: 1;
        padding: 0;
    }

    .sk-home-hero h1 {
        margin-top: 14px;
        font-size: 36px;
        line-height: 1.08;
    }

    .sk-home-hero p {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.45;
    }

    .sk-home-kicker {
        min-height: 30px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .sk-home-search {
        grid-template-columns: 1fr;
        margin-top: 20px;
        margin-bottom: 14px;
        border-radius: 20px;
    }

    .sk-home-search input {
        height: 48px;
        font-size: 16px;
    }

    .sk-home-search button {
        width: 100%;
        padding: 15px 22px;
    }

    .sk-home-actions {
        margin-top: 14px;
    }

    .sk-home-btn {
        flex: 1 1 0;
        min-height: 48px;
        padding: 0 12px;
        border-radius: 16px;
        font-size: 14px;
    }

    .sk-home-stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin: 20px 0 0;
    }

    .sk-home-stats span {
        padding: 0;
        margin: 0;
        border-right: 0;
    }

    .sk-home-stats strong {
        font-size: 24px;
    }

    .sk-home-stats small {
        font-size: 11px;
    }

    .sk-home-section-head {
        align-items: start;
        flex-direction: column;
    }

    .sk-home-section-head h2 {
        font-size: 27px;
    }

    .sk-home-category-grid,
    .sk-home-steps,
    .sk-home-post-list {
        grid-template-columns: 1fr;
    }

    .sk-home-post {
        position: relative;
        display: block;
        min-height: 330px;
        border-radius: 24px;
        background: #10192f;
        box-shadow: 0 18px 42px rgba(16, 25, 47, 0.12);
    }

    .sk-home-post::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(16, 25, 47, 0.02) 34%, rgba(16, 25, 47, 0.44) 100%);
        pointer-events: none;
    }

    .sk-home-post img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sk-home-post span {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 2;
        gap: 6px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.86);
        box-shadow: 0 12px 26px rgba(16, 25, 47, 0.18);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .sk-home-post strong {
        font-size: 17px;
        line-height: 1.18;
    }

    .sk-home-post small {
        color: #66728a;
    }

    .sk-home-category-card,
    .sk-home-steps article {
        min-height: auto;
    }

    .sk-home-instructor-cta {
        min-height: 340px;
        padding: 26px;
    }

    .sk-home-instructor-cta span {
        font-size: 30px;
    }
}
