:root {
    --LandingMaxWidth: 1320px;
    --LandingSectionPadding: 52px;
    --LandingCardRadius: 8px;
}

.UI_LandingPage {
    width: 100%;
    color: var(--MainText1);
}

.UI_LandingContainer {
    width: 100%;
    max-width: var(--LandingMaxWidth);
    margin: 0 auto;
    padding: 0 28px;
}

.UI_LandingSection {
    padding: var(--LandingSectionPadding) 0;
}

.UI_LandingSection.UI_LandingSection--soft {
    background-color: #eef0f4;
}

.UI_LandingHero {
    position: relative;
    min-height: min(58vw, 560px);
    background-size: cover;
    background-position: center;
    background-color: #313a4a;
}

.UI_LandingHero.IsPlaceholder {
    background-image: linear-gradient(120deg, #5f6874, #444c58);
}

.UI_LandingHeroInner {
    min-height: inherit;
    display: grid;
    align-items: end;
    justify-items: end;
    padding-top: 72px;
    padding-bottom: 58px;
}

.UI_LandingHeroTextBlock {
    width: min(560px, 90%);
    text-align: right;
    color: #fff;
}

.UI_LandingHeroTitle {
    margin: 0;
    line-height: 1;
    letter-spacing: 0.08em;
    font-size: clamp(2rem, 4.6vw, 4.2rem);
    font-weight: 700;
}

.UI_LandingHeroSubTitle {
    margin-top: 14px;
    font-size: clamp(1rem, 1.8vw, 1.55rem);
    font-weight: 400;
}

.UI_LandingHeroDescription {
    margin: 18px 0 0;
    line-height: 1.9;
    font-size: 1rem;
    font-weight: 300;
}

.UI_LandingCard {
    display: grid;
    gap: 18px;
    padding: 30px;
    border-radius: var(--LandingCardRadius);
    border: 1px solid #dadde3;
    background-color: #fff;
}

.UI_LandingSectionTitle {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.UI_LandingBodyText {
    display: grid;
    gap: 6px;
    color: var(--MainText2);
    line-height: 1.95;
    font-size: 1.03rem;
}

.UI_LandingBodyText p {
    margin: 0;
}

.UI_LandingMediaCard {
    min-height: 280px;
    border-radius: var(--LandingCardRadius);
    overflow: hidden;
    background-color: #424957;
    background-position: center;
    background-size: cover;

    display: grid;
    align-items: end;
    justify-items: center;
}

.UI_LandingMediaCard.IsPlaceholder {
    background-image: linear-gradient(130deg, #798192, #626b7a);
}

.UI_LandingMediaCardContent {
    width: 100%;
    max-width: 640px;
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
    color: #f8fbff;
    padding: 24px 22px;
}

.UI_LandingMediaLead {
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
}

.UI_LandingSectionHeading {
    margin: 0;
    text-align: center;
    font-size: clamp(1.5rem, 2.7vw, 2.1rem);
    line-height: 1.35;
}

.UI_LandingStepRow {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.UI_LandingStep {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    color: var(--MainText2);
}

.UI_LandingStep i {
    color: var(--SubText1);
    font-size: 2.1rem;
}

.UI_LandingStep .Label {
    font-size: 0.98rem;
    font-weight: 500;
}

.UI_LandingStepArrow {
    color: var(--SubText1);
    font-size: 1.55rem;
    line-height: 1;
}

.UI_LandingNoticeList {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #d7dbe2;
}

.UI_LandingNoticeItem {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    padding: 17px 0;
    border-bottom: 1px solid #d7dbe2;
    line-height: 1.7;
}

.UI_LandingNoticeItem .Date {
    color: var(--SubText1);
}

.UI_LandingNoticeItem .Text {
    color: var(--MainText2);
}

.UI_LandingNoticeItem.IsEmpty {
    grid-template-columns: 1fr;
}

.UI_LandingTileGrid {
    width: min(760px, 100%);
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.UI_LandingTileButton {
    display: grid;
    place-items: center;
    min-height: 96px;
    border-radius: 6px;
    border: 1px solid #d4d9e2;
    background-color: #fff;
    text-decoration: none;
    color: var(--MainText1);
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.2s;
}

.UI_LandingTileButton:hover {
    border-color: var(--PrimaryColor);
    color: var(--PrimaryColor);
}

@media screen and (max-width: 900px) {
    .UI_LandingContainer {
        padding: 0 18px;
    }

    .UI_LandingSection {
        padding: 38px 0;
    }

    .UI_LandingCard {
        padding: 24px 18px;
    }

    .UI_LandingStepRow {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .UI_LandingStepArrow {
        transform: rotate(90deg);
    }

    .UI_LandingNoticeItem {
        grid-template-columns: 1fr;
        gap: 4px;
    }

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

    .UI_LandingTileButton {
        min-height: 78px;
        font-size: 1.6rem;
    }
}
