/* GalleryFeed Styles - для getcourse.ru */

.gallery-feed-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Модификатор для полной ширины экрана - вырывается из родительского контейнера */
.gallery-feed.full-width .gallery-feed-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 40px 0;
}

.gallery-feed.full-width {
    width: calc(100vw - 8px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-feed.full-width .gallery-feed-grid {
        padding: 0 15px;
    }

    .gallery-feed.full-width
    {
        width: calc(100vw);
    }
}

.gallery-feed.full-width .gallery-feed-grid {
    padding: 0 20px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .gallery-feed.full-width .gallery-feed-grid {
        padding: 0 60px;
    }
}

.gallery-feed-header {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.gallery-feed.full-width .gallery-feed-header {
    padding: 0 20px;
}

@media (min-width: 900px) {
    .gallery-feed.full-width .gallery-feed-header {
        padding: 0 60px;
    }
}

.gallery-feed-grid {
    display: grid;
    gap: 15px;
}

/* Грид для 1 элемента - полная ширина */
.gallery-feed-grid.grid-1 {
    grid-template-columns: 1fr;
}

/* Грид для 2 элементов - по 50% */
.gallery-feed-grid.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .gallery-feed-grid.grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Грид для 3 элементов - по 33% */
.gallery-feed-grid.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .gallery-feed-grid.grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .gallery-feed-grid.grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Грид для 4+ элементов - стандартная сетка */
.gallery-feed-grid.grid-4plus {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .gallery-feed-grid.grid-4plus {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .gallery-feed-grid.grid-4plus {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .gallery-feed-grid.grid-4plus {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* Контейнер для каждого изображения */
.gallery-feed-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.gallery-feed-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-feed-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.gallery-feed-item:hover img {
    transform: scale(1.05);
}

.gallery-feed-link:hover img {
    cursor: pointer;
}

/* Опциональные стили для getcourse */
.gallery-feed-wrapper {
    background-color: #fff;
    padding: 20px 0;
}

.skiltopus-footer {
    padding: 100px 20px 40px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: calc(100vw - 8px);
    overflow: hidden;


    background-color: #ffffff;
    background-image: url('https://fs.getcourse.ru/fileservice/file/download/a/925142/sc/198/h/85f311877ab3bebc18bd19dc3a952765.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #231f20;
}

.skiltopus-footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skiltopus-footer-logo {
    width: 100%;
    margin-bottom: 60px;
}

.skiltopus-footer-logo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

.skiltopus-footer-columns {
    width: 100%;
    display: flex;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 120px;
}

.skiltopus-footer-col {
    min-width: 120px;
}

/* Правая группа с меню и соцсетями */
.skiltopus-footer-right-group {
    display: flex;
    gap: 150px;
    flex-wrap: wrap;
}

.skiltopus-footer-brand {
    font-size: 2.3em;
    font-weight: 700;
    letter-spacing: 0.08em;
    max-width: 625px;
    line-height: 60px;
}

.skiltopus-footer-brand-span {
    font-size: 2.0rem;
    color: #231f20;
    font-weight: 400;
}

.skiltopus-footer-title {
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.skiltopus-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skiltopus-footer-links li + li {
    margin-top: 10px;
}

.skiltopus-footer-links a {
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #231f20;
    position: relative;
}

.skiltopus-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #231f20;
    transition: width 0.2s ease;
}

.skiltopus-footer-links a:hover::after {
    width: 100%;
}

.skiltopus-footer-bottom {
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 1.6rem;
    opacity: 0.9;
}

.skiltopus-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.skiltopus-footer-bottom-links a {
    text-decoration: none;
    color: inherit;
}

.skiltopus-footer-bottom-links span.separator {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .skiltopus-footer-columns {
        flex-direction: column;
    }

    .skiltopus-footer-right-group {
        gap: 60px;
        justify-content: flex-end;
    }

    .skiltopus-footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .skiltopus-footer {
        width: calc(100vw);
    }

    .skiltopus-footer-brand
    {
        line-height: 50px;
    }
}

#ltBlock2199949652
{
    background-color: #ffd400;
}

#ltBlock2199949652 .lt-block-wrapper
{
    border-radius: 70px 70px 0px 0px;
}


@media (max-width: 768px) {
    #ltBlock2199949652 .lt-block-wrapper
    {
        border-radius: 40px 40px 0px 0px;
        padding-top:0px !important;
        padding-bottom:0px !important;
    }
}


.lt-column-with-headers hr.separator
{
    border-top: 0px solid #000 !important;
}


/* Стили для навигационного меню курсов */

/* 1) “Прорыв” из контейнера 1250px, но ограничение до 1600px */
.breakout-1800 {
    width: min(1800px, calc(100vw - 32px));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* общий блок */
.courses-nav {
    padding: 28px 0 22px;
}

.courses-title {
    margin: 0 0 30px;
    text-align: center;
    font: 600 36px/1.2 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111;
    letter-spacing: 0.2px;
}

/* 2) Меню: flex + wrap для адаптива */
.courses-menu {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: clamp(14px, 2.2vw, 14px);
}

/* ссылки */
.courses-link {
    display: inline-flex;
    align-items: baseline;
    gap: 20px;

    padding: 14px 50px;
    border-radius: 999px;

    text-decoration: none !important;
    color: #1a1a1a;

    /* крупный текст как на примере */
    font: 700 clamp(34px, 5.3vw, 90px) / 1.05 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    outline: none;
}

/* hover / focus */
.courses-link:hover,
.courses-link:focus-visible {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
}

/* Убрать синий цвет ссылок во всех состояниях */
.courses-link,
.courses-link:visited,
.courses-link:active,
.courses-link:focus,
.courses-link:focus-visible {
    color: #1a1a1a;
    text-decoration: none;
}

/* При hover / active (когда чёрный фон) */
.courses-link:hover,
.courses-link:active:hover,
.courses-link.is-active {
    color: #fff;
}

/* активный элемент (как первый в примере) */
.courses-link.is-active {
    background: #111;
    color: #fff;
}


/* "soon" */
.tag-soon {
    font: 600 18px/1 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    letter-spacing: 0.2px;
    opacity: 0.75;
    position: relative;
    top: -2.75em; /* слегка "суперскрипт" */
}

/* чтобы на hover "soon" тоже был читабельный */
.courses-link:hover .tag-soon,
.courses-link:focus-visible .tag-soon,
.courses-link.is-active .tag-soon {
    opacity: 0.85;
}

/* Неактивные элементы меню (soon-disabled) */
.courses-link.soon-disabled {
    cursor: not-allowed;
}

/* При наведении на неактивные элементы */
.courses-link.soon-disabled:hover,
.courses-link.soon-disabled:focus-visible {
    background: #cccccc;
    color: #f1f1ef;
    opacity: 1;
    transform: none;
}

/* 3) Доп. адаптив: на очень узких экранах меньше паддинги */
@media (max-width: 420px) {
    .courses-link { padding: 10px 18px; }
}

/* Чтобы элементы не становились 100% ширины из-за внешних стилей (часто в CMS) */
.courses-menu > li,
.courses-item {
    flex: 0 1 auto;
    width: auto !important;
}

/* Важно: чтобы слова не переносились внутри себя (Sketch-ing и т.п.) */
.courses-link {
    white-space: nowrap;
    position: relative; /* нужно для absolute "soon" */
}

/* Планшеты и ниже */
@media (max-width: 1024px) {
    .courses-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .courses-menu {
        gap: 10px 14px; /* row-gap / column-gap */
    }

    .courses-link {
        /* меньше, чем на десктопе */
        font-size: clamp(26px, 4.8vw, 44px);
        padding: 10px 18px;
        gap: 10px;
    }

    /* "soon" не влияет на высоту строки */
    .tag-soon {
        position: absolute;
        top: 6px;
        right: 10px;
        transform: translateY(-50%);
        font-size: 12px;
        line-height: 1;
        opacity: 0.75;
        letter-spacing: 0.2px;
    }
}

/* Мобилки */
@media (max-width: 520px) {
    .courses-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .courses-menu {
        gap: 8px 12px;
    }

    .courses-link {
        font-size: clamp(22px, 7.2vw, 34px);
        padding: 9px 14px;
    }

    .tag-soon {
        top: 5px;
        right: 8px;
        font-size: 11px;
    }
}


/* Divider базовый */
.divider {
    border: 0;
    height: var(--d-thickness, 1px);
    background: var(--d-color, rgba(0,0,0,.25));
    border-radius: 999px; /* чтобы красиво на толстой линии */
    margin: 0px;
}

/* Режим: по ширине родителя (по умолчанию) */
.divider--container {
    width: 100%;
}

/* Режим: на всю страницу, независимо от родителя */
.divider--full {
    width: calc(100vw - 20px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}




/* Floating section navigator — FULL REPLACEMENT */

.section-nav{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    z-index: 9999;

    width: min(1200px, calc(100vw - 24px));
    pointer-events: none;
}

/* pill container */
.section-nav__inner{
    pointer-events: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 14px;
    border-radius: 999px;

    background: rgba(255,255,255,.70);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(0,0,0,.15);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

/* menu items */
.section-nav__link{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;

    padding: 12px 18px;
    border-radius: 999px;

    font: 700 22px/1 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111;

    text-decoration: none;
    transition: background-color .16s ease, color .16s ease, transform .16s ease;
}

/* remove default link states (blue/purple) */
.section-nav__link:visited,
.section-nav__link:active,
.section-nav__link:focus{
    color: #111;
    text-decoration: none;
}

.section-nav__link:hover{
    background: rgba(0,0,0,.06);
    transform: translateY(-1px);
    color: #111;
    text-decoration: none !important;
}

.section-nav__link.is-active{
    background: rgba(0,0,0,.08);
    color: #111; /* можно оставить #111, чтобы было как на макете */
}

/* spacer */
.section-nav__spacer{
}

/* CTA Join — как на референсе (градиент мягкий, не “заливает” кнопку) */
.section-nav__cta{
    position: relative;
    overflow: hidden;
    min-width: 280px;
    justify-content: center;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 12px 12px 12px 18px;
    border-radius: 999px;

    border: 2px solid #111;        /* чёткая обводка */

    color: #111;
    text-decoration: none;
    font: 900 26px/1 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Мягкий градиент как “подложка” внутри кнопки */
.section-nav__cta::before{
    content: "";
    position: absolute;
    inset: 6px;                    /* чтобы градиент не упирался в бордер */
    border-radius: inherit;

    background: linear-gradient(135deg,
    #5886eb 0%,
    #f1f1ef 60%,
    #ee7024 100%
    );

    opacity: .65;                  /* КЛЮЧ: делает эффект как на макете */
    filter: saturate(1.05);
    z-index: 0;
}

/* Контент поверх градиента */
.section-nav__cta > *{
    position: relative;
    z-index: 1;
}

.section-nav__cta:visited,
.section-nav__cta:active,
.section-nav__cta:focus{
    color: #111;
    text-decoration: none;
}

.section-nav__cta:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
    filter: brightness(1.01);
    text-decoration: none;
    color: #111;
}

/* Кружок со стрелкой — белый, как на референсе */
.section-nav__cta-icon{
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    /* GLASS */
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px) saturate(1.4);
    -webkit-backdrop-filter: blur(10px) saturate(1.4);

    color: #111;
    font-size: 20px;
    font-weight: 900;

    /* мягкая тень + “подсветка” */
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.65),
            0 6px 14px rgba(0,0,0,.12);
}

/* Mobile: only Join button */
@media (max-width: 1100px){
    .section-nav{
        width: min(520px, calc(100vw - 24px));
    }

    .section-nav__link,
    .section-nav__spacer{
        display: none;
    }

    .section-nav__inner{
        justify-content: center;
        padding: 10px;
    }

    .section-nav__cta{
        width: 100%;
        justify-content: center;

        font-size: 22px;
        padding: 14px 16px 14px 22px;
    }

    .section-nav__cta-icon{
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

/* Minimal style for GetCourse buy button */
.buybutton .btn,
.buybutton button.btn,
.buybutton .button .btn{
    background-color: #ee7024 !important;
    border-radius: 50px !important;
}






