.header-login {
    font-size: var(--fs-14);
    color: var(--color-text-gray3);
}
.home-select {
    font-size: var(--fs-24);
    font-weight: var(--fw-700);
    line-height: 1.4;
    img {
        display: none;
    }
}

.experience-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experience-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-12);
    color: var(--color-text-white);
    aspect-ratio: 320 / 320;
}

.experience-card.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.experience-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-info {
    position: absolute;
    inset: 0;
    padding: 18px 16px 14px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.55) 100%
    );
}

.experience-info strong {
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    line-height: 1.3;
}

.experience-info p {
    margin-top: 8px;
    font-size: var(--fs-14);
    line-height: 1.45;
    white-space: pre-line;
}

.experience-info span {
    margin-top: auto;
    font-size: var(--fs-14);
    line-height: 1.3;
}

.form-group  {
    label {
        margin-bottom: 8px;
        font-size: var(--fs-16);
        font-weight: var(--fw-500);
        display: block;
    }
    label.agreement-check {
        display: flex;
        margin-top: 8px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    input {
        margin-bottom: 18px;
        width: 100%;
        height: 48px;
        border: 1px solid var(--color-border-gray-light1);
        border-radius: var(--radius-8);
        padding: 0 16px;
        font-size: var(--fs-14);
        &::placeholder {
            color: var(--color-text-gray8);
        }
    }
    .agree-box {
        border: 1px solid var(--color-border-gray-light1);
        padding: 16px;
        border-radius: var(--radius-8);
        p {
            font-size: var(--fs-14);
            font-weight: var(--fw-400);
            &:first-child {
                color:var(--color-text-secondary2);
            }
            &:last-child {
                color: var(--color-text-gray5);
            }
        }
    }
}

.form-group .agree-box p:last-child {
    white-space: pre-line;
    line-height: 1.5;
}

.modal-content p {
    font-size: var(--fs-14);
    color: var(--color-text-secondary4);
    &:first-child {
        margin-bottom: 20px;
    }
}

/* pc */
@media (min-width: 768px) {
    .home-page {
        padding-top: 0;
    }

    .home-container {
        max-width: 1780px;
        margin: 0 auto;
        padding: 96px 60px 80px;
    }

    .home-select {
        font-size: var(--fs-30);
        font-weight: var(--fw-500);
        text-align: center;
        img {
            margin: 0 auto 40px;
            display: block;
        }
    }
    .header-login {
        font-size: var(--fs-18);
    }

    .experience-list {
        margin-top: 48px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
    }

    .experience-card {
        aspect-ratio: 1 / 1;
        border-radius: var(--radius-12);
    }

    .experience-info {
        padding: 20px 18px 16px;
    }

    .experience-info strong {
        font-size: var(--fs-14);
    }

    .experience-info p,
    .experience-info span {
        font-size: var(--fs-12);
    }
}