@charset "utf-8";

.contact-section {
    width: 100%;
    box-sizing: border-box;
    aspect-ratio: 2.4;

    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 20px;

    background-image: url("../../../images/main/home/contact_section_bg_desktop.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-section .title-text {
    color: var(--ref-base-black, #151818);
    text-align: center;

    /* Display/Medium */
    font-family: Pretendard;
    font-size: var(--ref-font-size-10-fluent, 45px);
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 63px */
}

.contact-section .button {
    display: flex;

    height: 68px;
    width: fit-content;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 160px;
    background: var(--ref-primary-200, #3cd0d0);
    backdrop-filter: blur(2px);
}

.contact-section .button:hover {
    display: flex;

    height: 68px;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 160px;
    background: var(--sys-surface-hover, #fafbfc);
    backdrop-filter: blur(2px);
}

.contact-section .button .button-text {
    word-break: keep-all;
    color: var(--ref-base-black, #151818);
    text-align: center;

    /* Title/Large */
    font-family: Pretendard;
    font-size: var(--ref-font-size-5-static, 20px);
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 32px */
}

@media screen and (max-width: 1023px) {
    .contact-section {
        width: 100%;
        box-sizing: border-box;
        aspect-ratio: 0.6;

        padding: 50px 28px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 16px;

        background-image: url("../../../images/main/home/contact_section_bg_mobile.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .contact-section .title-text {
        color: var(--ref-base-black, #151818);
        text-align: center;

        /* Headline/Medium */
        font-family: Pretendard;
        font-size: var(--ref-font-size-7-fluent, 28px);
        font-style: normal;
        font-weight: 700;
        line-height: 140%; /* 39.2px */
    }

    .contact-section .button {
        display: flex;

        min-height: 68px;
        height: fit-content;

        padding: 16px 48px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        border-radius: 160px;
        background: var(--ref-primary-200, #3cd0d0);
        backdrop-filter: blur(2px);
    }

    .contact-section .button:hover {
        display: flex;

        min-height: 68px;
        height: fit-content;

        padding: 16px 48px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        border-radius: 160px;
        background: var(--sys-surface-hover, #fafbfc);
        backdrop-filter: blur(2px);
    }

    .contact-section .button .button-text {
        word-break: keep-all;
        color: var(--ref-base-black, #151818);
        text-align: center;
        /* Component/Large/Accent */
        font-family: Pretendard;
        font-size: var(--ref-font-size-3-static, 16px);
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 16px */
    }
}
