/* =========================
   FULL SCHEDULE PAGE
========================= */

.full-schedule-page {
    width: 100%;
    min-height: calc(100vh - 96px);
    background: #f3f2ee;
    color: #050505;
}

.full-schedule-page__inner {
    width: min(100% - 32px, 1540px);
    margin: 0 auto;
    padding: clamp(22px, 2.2vw, 38px) 0 clamp(58px, 5vw, 86px);
}

/* =========================
   TOP
========================= */

.full-schedule-top {
    display: grid;
    grid-template-columns: minmax(380px, 0.74fr) minmax(700px, 1.26fr);
    gap: clamp(44px, 5vw, 86px);
    align-items: start;
    margin-bottom: clamp(22px, 2.2vw, 34px);
}

/* =========================
   HEAD
========================= */

.full-schedule-head {
    min-width: 0;
    padding-top: clamp(4px, 0.6vw, 10px);
}

.full-schedule-head h1 {
    display: inline-block;
    margin: 0;
    color: #050505;
    font-family: var(--font-display);
    font-size: clamp(66px, 6.2vw, 116px);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.085em;
    text-transform: uppercase;
    transform: translateY(32px) scaleX(0.96) scaleY(1.12);
    transform-origin: left bottom;
}

.full-schedule-head p {
    max-width: 690px;
    margin: clamp(20px, 1.45vw, 24px) 0 0;
    color: rgba(5, 5, 5, 0.58);
    font-size: clamp(14px, 0.95vw, 17px);
    font-weight: 800;
    line-height: 1.34;
    transform: translateY(28px);
}

/* =========================
   BANNER
========================= */

.full-schedule-banner {
    position: relative;
    width: 100%;
    height: clamp(150px, 10.5vw, 195px);
    margin-top: clamp(22px, 2.2vw, 34px);
    overflow: hidden;
    background: #050505;
    color: #ffffff;
}

.full-schedule-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.82) 0%,
            rgba(5, 5, 5, 0.46) 42%,
            rgba(5, 5, 5, 0.14) 100%
        );
    pointer-events: none;
}

.full-schedule-banner img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1) contrast(1.08) brightness(0.68);
    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

.full-schedule-banner:hover img {
    filter: grayscale(0.38) contrast(1.04) brightness(0.78);
    transform: scale(1.03);
}

.full-schedule-banner__content {
    position: absolute;
    left: clamp(20px, 1.8vw, 30px);
    bottom: clamp(18px, 1.7vw, 28px);
    z-index: 3;
    max-width: 360px;
}

.full-schedule-banner__content span {
    display: block;
    margin-bottom: 8px;
    color: #ff2118;
    font-family: var(--font-display);
    font-size: clamp(15px, 1vw, 20px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.16em;
}

.full-schedule-banner__content strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(18px, 1.25vw, 25px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

/* =========================
   FILTERS
========================= */

.full-schedule-filters {
    width: 100%;
    margin: 0 0 clamp(24px, 2.2vw, 32px);
    padding: 0;
    border: 0;
    background: transparent;
}

.full-schedule-filters__layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 1.15vw, 17px);
    align-items: start;
}

.full-schedule-filters__row {
    min-width: 0;
    display: grid;
    gap: clamp(14px, 1.2vw, 20px);
    align-items: end;
}

.full-schedule-filters__row--main {
    grid-template-columns: minmax(320px, 1.36fr) minmax(210px, 0.82fr) minmax(230px, 0.88fr) minmax(96px, auto);
}

.full-schedule-filters__row--secondary {
    grid-template-columns: minmax(300px, 0.36fr) minmax(220px, 0.28fr) minmax(240px, 0.28fr);
}

/* =========================
   SELECTS
========================= */

.full-schedule-select-field {
    min-width: 0;
    display: block;
}

.full-schedule-select-field__label {
    display: block;
    margin-bottom: 7px;
    color: rgba(5, 5, 5, 0.52);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.012em;
    text-transform: uppercase;
}

.full-schedule-select-field__control {
    position: relative;
    min-height: 39px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(5, 5, 5, 0.38);
    background: transparent;
    transition: border-color 0.18s ease;
}

.full-schedule-select-field__control::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(5, 5, 5, 0.74);
    border-bottom: 2px solid rgba(5, 5, 5, 0.74);
    pointer-events: none;
    transform: translateY(-72%) rotate(45deg);
    transition: border-color 0.18s ease;
}

.full-schedule-select-field:hover .full-schedule-select-field__control {
    border-bottom-color: #050505;
}

.full-schedule-select-field:hover .full-schedule-select-field__control::after {
    border-color: #050505;
}

.full-schedule-select-field:focus-within .full-schedule-select-field__control {
    border-bottom-color: #ff2118;
}

.full-schedule-select-field:focus-within .full-schedule-select-field__control::after {
    border-color: #ff2118;
}

.full-schedule-select-field select {
    width: 100% !important;
    height: 39px !important;
    padding: 0 28px 0 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #050505 !important;
    font-family: inherit !important;
    font-size: clamp(14px, 0.92vw, 16px) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.full-schedule-select-field select::-ms-expand {
    display: none;
}

.full-schedule-select-field option {
    background: #f3f2ee;
    color: #050505;
    font-size: 14px;
    font-weight: 800;
}

/* =========================
   RESET
========================= */

.full-schedule-reset-wrap {
    min-width: 0;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    padding-bottom: 11px;
}

.full-schedule-reset {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(5, 5, 5, 0.62);
    font-family: var(--font-display);
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.full-schedule-reset span {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.full-schedule-reset:hover {
    color: #ff2118;
}

/* =========================
   BOARD
========================= */

.full-schedule-board {
    width: 100%;
    background: #050505;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================
   ROW
========================= */

.full-schedule-row {
    display: grid;
    grid-template-columns: 178px minmax(340px, 1fr) minmax(380px, 1fr) 270px;
    min-height: 264px;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.full-schedule-row:last-child {
    border-bottom: 0;
}

/* =========================
   POSTER
========================= */

.full-schedule-row__poster {
    position: relative;
    display: block;
    width: 100%;
    min-height: 264px;
    overflow: hidden;
    background: #050505;
    color: inherit;
    text-decoration: none;
}

.full-schedule-row__poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1) contrast(1.08) brightness(0.78);
    opacity: 0.92;
    transition:
        filter 0.35s ease,
        transform 0.35s ease,
        opacity 0.35s ease;
}

.full-schedule-row:not(.full-schedule-row--selected):hover .full-schedule-row__poster img {
    filter: grayscale(0) contrast(1.03) brightness(0.98);
    transform: scale(1.035);
    opacity: 1;
}

.full-schedule-row--selected .full-schedule-row__poster img {
    filter: grayscale(0) contrast(1.03) brightness(0.98);
    transform: scale(1.02);
    opacity: 1;
}

.full-schedule-row__poster span {
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 12px;
    color: rgba(255, 255, 255, 0.18);
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 0.9;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

/* =========================
   INFO
========================= */

.full-schedule-row__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px clamp(24px, 2.2vw, 42px);
}

.full-schedule-row__info h2 {
    margin: 0;
}

.full-schedule-row__info h2 a {
    display: inline-block;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(30px, 2.35vw, 44px);
    font-weight: 400;
    line-height: 0.84;
    letter-spacing: -0.078em;
    text-decoration: none;
    text-transform: uppercase;
}

.full-schedule-row__meta {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(11px, 0.8vw, 13px);
    font-weight: 800;
    line-height: 1.25;
}

.full-schedule-row__description {
    max-width: 430px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 800;
    line-height: 1.38;
}

/* =========================
   SESSIONS
========================= */

.full-schedule-row__sessions {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 24px clamp(18px, 1.6vw, 28px);
}

.full-schedule-hall-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.full-schedule-hall-row__name {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.full-schedule-hall-row__times {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.full-schedule-time {
    min-width: 86px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.full-schedule-time strong {
    color: currentColor;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
}

.full-schedule-time em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.full-schedule-time:hover {
    border-color: rgba(255, 33, 24, 0.72);
    color: #ffffff;
}

.full-schedule-time--active,
.full-schedule-time--active:hover {
    border-color: #ff2118;
    background: #ff2118;
    color: #ffffff;
}

.full-schedule-time--active em,
.full-schedule-time--active:hover em {
    color: rgba(255, 255, 255, 0.9);
}

/* =========================
   ACTION
========================= */

.full-schedule-row__action {
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 24px 28px 24px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.full-schedule-row__action-main {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff2118;
    border-radius: 0;
    background: #ff2118;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        opacity 0.18s ease;
}

.full-schedule-row__action-main--disabled {
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    opacity: 1;
    cursor: default;
}

.full-schedule-row__action-main:not(.full-schedule-row__action-main--disabled):hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #050505;
}

/* =========================
   EMPTY
========================= */

.full-schedule-empty {
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid rgba(5, 5, 5, 0.14);
    background: rgba(255, 255, 255, 0.22);
}

.full-schedule-empty h2 {
    margin: 0;
    color: #050505;
    font-family: var(--font-display);
    font-size: clamp(38px, 3vw, 58px);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.full-schedule-empty p {
    margin: 14px 0 22px;
    color: rgba(5, 5, 5, 0.58);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.full-schedule-empty a {
    width: fit-content;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 22px;
    border: 1px solid #050505;
    border-radius: 0;
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.full-schedule-empty a:hover {
    border-color: #ff2118;
    background: #ff2118;
    color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1420px) {
    .full-schedule-top {
        grid-template-columns: minmax(330px, 0.68fr) minmax(660px, 1.32fr);
        gap: 40px;
    }

    .full-schedule-filters__row--main {
        grid-template-columns: minmax(260px, 1.25fr) minmax(190px, 0.88fr) minmax(210px, 0.95fr) minmax(92px, auto);
    }

    .full-schedule-filters__row--secondary {
        grid-template-columns: minmax(280px, 0.36fr) minmax(200px, 0.28fr) minmax(220px, 0.28fr);
    }

    .full-schedule-row {
        grid-template-columns: 166px minmax(280px, 1fr) minmax(320px, 1fr) 230px;
        min-height: 246px;
    }

    .full-schedule-row__poster {
        min-height: 246px;
    }

    .full-schedule-row__action {
        padding-right: 20px;
    }
}

@media (max-width: 1180px) {
    .full-schedule-page__inner {
        padding-top: 24px;
    }

    .full-schedule-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .full-schedule-head {
        padding-top: 0;
    }

    .full-schedule-head p {
        max-width: 620px;
    }

    .full-schedule-banner {
        height: 180px;
        margin-top: 0;
    }

    .full-schedule-filters__row--main,
    .full-schedule-filters__row--secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .full-schedule-reset-wrap {
        justify-content: flex-start;
        padding-bottom: 0;
    }
}

@media (max-width: 1080px) {
    .full-schedule-row {
        grid-template-columns: 160px minmax(0, 1fr);
        min-height: 238px;
    }

    .full-schedule-row__poster {
        min-height: 238px;
    }

    .full-schedule-row__sessions,
    .full-schedule-row__action {
        grid-column: 1 / -1;
    }

    .full-schedule-row__sessions {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .full-schedule-row__action {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }
}

@media (max-width: 860px) {
    .full-schedule-page {
        min-height: calc(100vh - 72px);
    }

    .full-schedule-page__inner {
        width: min(100% - 18px, 1540px);
        padding-top: 18px;
        padding-bottom: 52px;
    }

    .full-schedule-top {
        gap: 18px;
        margin-bottom: 22px;
    }

    .full-schedule-head h1 {
        font-size: clamp(46px, 16vw, 74px);
        line-height: 0.82;
        letter-spacing: -0.075em;
        transform: scaleX(0.98) scaleY(1.08);
    }

    .full-schedule-head p {
        max-width: 380px;
        margin-top: 16px;
        font-size: 13px;
    }

    .full-schedule-banner {
        height: 155px;
    }

    .full-schedule-banner__content {
        left: 20px;
        bottom: 20px;
    }

    .full-schedule-banner__content strong {
        font-size: 20px;
    }

    .full-schedule-filters {
        margin-bottom: 22px;
    }

    .full-schedule-filters__layout {
        gap: 15px;
    }

    .full-schedule-filters__row--main,
    .full-schedule-filters__row--secondary {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .full-schedule-select-field__control {
        min-height: 42px;
    }

    .full-schedule-select-field select {
        height: 42px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 680px) {
    .full-schedule-page__inner {
        width: min(100% - 16px, 1540px);
        padding-top: 16px;
    }

    .full-schedule-head h1 {
        font-size: clamp(42px, 15vw, 62px);
    }

    .full-schedule-banner {
        height: 138px;
    }

    .full-schedule-banner__content span {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .full-schedule-banner__content strong {
        font-size: 18px;
    }

    .full-schedule-row {
        grid-template-columns: 108px minmax(0, 1fr);
        min-height: 156px;
    }

    .full-schedule-row__poster {
        min-height: 156px;
    }

    .full-schedule-row__info {
        padding: 13px 12px;
    }

    .full-schedule-row__info h2 a {
        font-size: clamp(20px, 6.4vw, 30px);
    }

    .full-schedule-row__meta {
        margin-top: 8px;
        font-size: 9px;
    }

    .full-schedule-row__description {
        display: none;
    }

    .full-schedule-row__sessions {
        padding: 13px 12px;
    }

    .full-schedule-hall-row {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 9px;
    }

    .full-schedule-hall-row__name {
        font-size: 9px;
    }

    .full-schedule-time {
        min-width: 66px;
        min-height: 28px;
        padding: 0 8px;
    }

    .full-schedule-time strong {
        font-size: 12px;
    }

    .full-schedule-time em {
        display: none;
    }

    .full-schedule-row__action {
        padding: 12px;
    }

    .full-schedule-row__action-main {
        min-height: 40px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .full-schedule-page__inner {
        width: min(100% - 14px, 1540px);
        padding-top: 14px;
        padding-bottom: 44px;
    }

    .full-schedule-top {
        gap: 16px;
        margin-bottom: 20px;
    }

    .full-schedule-head h1 {
        font-size: clamp(38px, 16vw, 52px);
        line-height: 0.86;
        transform: none;
    }

    .full-schedule-head p {
        margin-top: 12px;
        font-size: 12px;
    }

    .full-schedule-banner {
        height: 126px;
    }

    .full-schedule-banner__content {
        left: 16px;
        bottom: 16px;
    }

    .full-schedule-banner__content span {
        font-size: 13px;
    }

    .full-schedule-banner__content strong {
        font-size: 17px;
    }

    .full-schedule-select-field__label {
        margin-bottom: 6px;
        font-size: 9px;
    }

    .full-schedule-select-field__control {
        min-height: 39px;
    }

    .full-schedule-select-field select {
        height: 39px !important;
        font-size: 12px !important;
    }

    .full-schedule-row {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 136px;
    }

    .full-schedule-row__poster {
        min-height: 136px;
    }

    .full-schedule-row__info h2 a {
        font-size: 20px;
    }

    .full-schedule-row__sessions {
        gap: 9px;
    }

    .full-schedule-hall-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .full-schedule-time {
        min-width: 60px;
        min-height: 28px;
    }
}

@media (max-width: 360px) {
    .full-schedule-page__inner {
        width: min(100% - 12px, 1540px);
        padding-top: 12px;
    }

    .full-schedule-head h1 {
        font-size: 36px;
    }

    .full-schedule-banner {
        height: 112px;
    }

    .full-schedule-banner__content strong {
        font-size: 15px;
    }

    .full-schedule-row {
        grid-template-columns: 84px minmax(0, 1fr);
        min-height: 128px;
    }

    .full-schedule-row__poster {
        min-height: 128px;
    }

    .full-schedule-row__info {
        padding: 11px 10px;
    }

    .full-schedule-row__info h2 a {
        font-size: 18px;
    }

    .full-schedule-row__meta {
        font-size: 8px;
    }
}