/* ProgramPresent */
.ProgramPresent-Header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.ProgramPresent-Title {
    margin-bottom: 0;
}
.ProgramPresent-Navigation {
    display: none;
    align-items: center;
    gap: 12px;
}
.ProgramPresent-Arrow {
    width: 49px;
    height: 49px;
    border-radius: 12px;
    border: none;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    padding: 0;
}
.ProgramPresent-Arrow img {
    width: 14px;
    height: 14px;
}
.ProgramPresent-Arrow_next img {
    transform: rotate(180deg);
}
.ProgramPresent-Arrow:hover {
    background-color: #03557A;
}
.ProgramPresent-Arrow:hover img {
    filter: brightness(0) invert(1);
}
.ProgramPresent-Arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.ProgramPresent-Arrow:disabled:hover {
    background-color: white;
}
.ProgramPresent-Arrow:disabled:hover img {
    filter: none;
}
.ProgramPresent-List {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
    overflow-x: hidden;
}
.ProgramPresent-Item {
    flex: 0 0 auto;
    width: calc((100% - 1 * 30px) / 2);
    min-width: 500px;
    padding: 32px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 0;
}
.ProgramPresent-ItemContent {
    width: 50%;
    flex-shrink: 0;
    z-index: 2;
}
.ProgramPresent-Image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.ProgramPresent-Image::before {
    cursor: none;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(91.92deg, #FFFFFF 10%, rgba(255, 255, 255, 0.59) 25%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 2;
}
.ProgramPresent-Item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(91.92deg, #FFFFFF 10%, rgba(255, 255, 255, 0.59) 25%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 2;
}
.ProgramPresent-ItemName {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}
.ProgramPresent-ItemText {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
}

@media(min-width: 992px) {
    .ProgramPresent-Navigation {
        display: flex;
    }
    .ProgramPresent-List {
        flex-wrap: nowrap;
        overflow-x: hidden;
    }
}
@media(max-width: 1199px) {
    .ProgramPresent-ItemText {
        margin-top: 10px;
    }
    .ProgramPresent-List {
        flex-wrap: nowrap;
        gap: 12px;
        margin-right: calc((48px + 16px) * -1);
        margin-left: calc((48px + 16px) * -1);
        padding-right: calc(48px + 16px);
        padding-left: calc(48px + 16px);
        padding-bottom: 4px;
    }
    .ProgramPresent-List::-webkit-scrollbar {
        display: none;
    }
    .ProgramPresent-Navigation {
        display: none !important;
    }
    .ProgramPresent-Header {
        margin-bottom: 30px;
    }
    .ProgramPresent-Item {
        min-width: 290px;
        max-width: 290px;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
        min-height: 400px;
        position: relative;
    }
    .ProgramPresent-ItemContent {
        width: 100%;
        padding-bottom: 50%;
        position: relative;
        z-index: 3;
    }
    .ProgramPresent-ItemContent::after {
        display: none;
    }
    .ProgramPresent-Image {
        display: none;
    }
    .ProgramPresent-Item::after {
        content: '';
        position: absolute;
        top: calc(50% - 60px);
        left: 0;
        width: 100%;
        height: 160px;
        background: linear-gradient(180deg, #FFFFFF 50%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
        z-index: 2;
    }
}
/* //ProgramPresent */