/* ==========================================================================
   앱 다운로드 브릿지 페이지 (웹)
   figma : 294:20876
   ========================================================================== */

#section_appdownload {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 640px;
    padding: 60px 20px 100px;
    box-sizing: border-box;
    background: #FFF;
}

.section_appdownload_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1000px;
}

/* ------------------------------ 왼쪽 : 문구 */

.appdownload_text_wrap {
    flex: 0 0 auto;
    width: 414px;
}

.appdownload_text_wrap .appdownload_logo {
    display: block;
    width: 192px;
    height: 35px;
    margin-bottom: 20px;
}

.appdownload_text_wrap .appdownload_title {
    color: #111;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1.1px;
}

.appdownload_text_wrap .appdownload_subtitle {
    margin-top: 12px;
    color: #6E7686;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* ------------------------------ 스토어 버튼 (웹/모바일/위젯 공용 뼈대) */

.appdownload_store_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.appdownload_store_wrap .btn_store {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 8px;
    box-sizing: border-box;

    border-radius: 6px;
    background: #000;
    text-decoration: none;

    transition: opacity .15s ease;
}
.appdownload_store_wrap .btn_store:hover {
    opacity: .85;
}

.appdownload_store_wrap .btn_store .store_icon {
    flex: 0 0 20px;
    width: 20px;
    height: auto;
}

.appdownload_store_wrap .btn_store .store_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    color: #FFF;
    letter-spacing: -0.325px;
    white-space: nowrap;
}
.appdownload_store_wrap .btn_store .store_text em {
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}
.appdownload_store_wrap .btn_store .store_text span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

/* 본문의 버튼은 시안대로 고정폭 */
.appdownload_text_wrap .appdownload_store_wrap {
    width: 308px;
    margin-top: 32px;
}
.appdownload_text_wrap .appdownload_store_wrap .btn_store {
    height: 41px;
}

/* ------------------------------ 오른쪽 : 목업 */

.appdownload_visual_wrap {
    flex: 0 0 auto;
    width: 435px;
}
.appdownload_visual_wrap img {
    display: block;
    width: 100%;
    height: auto;
}

/* ------------------------------ 좁은 화면 */

@media all and (max-width: 1023px) {

    .section_appdownload_inner {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .appdownload_text_wrap {
        width: 100%;
        max-width: 414px;
        text-align: center;
    }
    .appdownload_text_wrap .appdownload_logo {
        margin: 0 auto 20px;
    }
    .appdownload_text_wrap .appdownload_store_wrap {
        margin: 32px auto 0;
    }

    .appdownload_visual_wrap {
        width: 320px;
    }
}
