@charset "utf-8";
.support-page {
    background: #fff;
    padding-bottom: 140px;
}

.support-page .hero {
    position: relative;
    min-height: clamp(250px, 40vw, 420px);
    overflow: hidden;
    background: url("/images/support/intv-10.jpg") no-repeat center;
    background-size: cover;
}

.support-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 52%, rgba(48, 83, 132, .22), transparent 16%),
        radial-gradient(circle at 18% 72%, rgba(218, 192, 135, .09), transparent 18%);
    pointer-events: none;
}

.support-page .hero__inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.support-page .hero__title {
    margin: 0;
    width: min(88vw, 820px);
    height: auto;
}

.support-page .hero__subtitle {
    margin-top: 10px;
    font-size: clamp(13px, 1.5vw, 18px);
    font-weight: 700;
    letter-spacing: .12em;
}

.support-page .support-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.support-page .breadcrumb-wrap {
    padding: 12px 0 6px;
    background: #fff;
}

.support-page .intro-box {
    margin: 50px 0 34px;
    padding: 35px 24px;
    border: 4px solid #efefef;
    text-align: center;
    background: #fff;
}

.support-page .intro-box h2 {
    margin: 0 auto 20px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.75;
    color: #123e78;
    width: fit-content;
}

.support-page .intro-box p {
    margin: 0;
    line-height: 1.95;
    font-size: 15px;
}

.support-page .section {
    margin-top: 50px;
}

.support-page .section__heading {
    margin: 0 0 16px;
    border-top: none;
    padding-bottom: 15px;
    border-bottom: 3px solid #5a8ecc;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.35;
    font-weight: 700;
}

.support-page .section p {
    margin: 0 0 20px;
    line-height: 1.75;
    font-size: 15px;
}

.support-page .story__wrap {
    display: flex;
    gap: 24px;
    flex-direction: row-reverse;
}

.support-page .story-image {
    width: 100%;
    max-width: min(320px, 34%);
}

.support-page .story-image img {
    width: 100%;
    display: block;
}

.support-page .story-text {
    width: 100%;
}

.support-page .career-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 18px;
}

.support-page .career-card {
    display: block;
    border-bottom: 1px solid #d7e1eb;
    padding-bottom: 18px;
    color: inherit;
    text-decoration: none;
}

.support-page .career-card figure {
    margin: 0 0 10px;
}

.support-page .career-card img {
    width: 100%;
    /* aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #f5f5f5; */
}

.support-page .career-card h4 {
    margin: 0 0 8px;
    color: #123e78;
    font-size: 16px;
}

.support-page .career-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

/* 3col grid */
.support-page .career-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 18px;
    margin-top: 40px;
}
.support-page .career-grid-3col .career-card {
    border: none;
}
.support-page .career-grid-3col .career-card h4 {
    font-size: 18px;
}
.support-page .career-grid-3col .career-card p:first-of-type {
    font-size: 15px;
    font-weight: bold;
    line-height: 2;
}

.support-page .promise {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e8edf2;
    text-align: center;
}

.support-page .promise h3 {
    margin: 0 0 40px;
    padding: 0;
    color: #123e78;
    font-size: clamp(18px, 2.4vw, 30px);
    line-height: 1.4;
    border: none;
}
.support-page .promise h3::before {
    content: none;
}

.support-page .promise__group {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.support-page .promise__item {
    padding-top: 60px;
    position: relative;
}

.support-page .promise__circle {
    width: 200px;
    height: 200px;
    max-width: 100%;
    margin: 0 auto 12px;
    border: 1px solid #e0e5ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 12px 22px rgba(18, 35, 52, .04);
    position: relative;
}

.support-page .promise__circle img {
    display: block;
    position: absolute;
    top: -25%;
}

.support-page .promise__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #666;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 150px;
    width: 100%;
}

.support-page .page-end {
    margin: 42px 0 10px;
    padding-top: 18px;
}

.support-page .page-end a {
    color: #123e78;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .support-page {
        padding-bottom: 80px;
    }
    .support-page .career-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .support-page .promise__group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .support-page {
        padding-bottom: 50px;
    }
    .support-page .support-inner {
        width: min(100% - 22px, 1120px);
    }
    .support-page .intro-box {
        padding: 20px;
    }
    .support-page .intro-box p {
        font-size: 14px;
        letter-spacing: normal;
    }
    .support-page .section p {
        font-size: 14px;
    }
    .support-page .story__wrap {
        flex-wrap: wrap;
    }
    .support-page .story-image {
        max-width: 100%;
    }
    .support-page .career-grid,
    .support-page .career-grid-3col,
    .support-page .promise__group {
        grid-template-columns: 1fr;
    }
    .support-page .promise__group {
        gap: 0;
    }
    .support-page .promise {
        padding: 40px 0;
        margin-top: 50px;
    }
    .support-page .promise h3 {
        margin: 0 0 30px;
    }
    .support-page .promise__item {
        position: static;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #d9d9d9;
        padding: 0;
        gap: 10px;
        padding: 10px 0;
    }
    .support-page .promise__circle {
        position: static;
        border: none;
        box-shadow: none;
        width: 100px;
        height: auto;
        margin: 0 auto;
    }
    .support-page .promise__circle img {
        position: static;
        height: 60px;
        width: auto;
    }
    .support-page .promise__item p {
        position: static;
        transform: none;
        max-width: 100%;
        width: 100%;
        text-align: left;
        font-size: 14px;
    }
}
