@charset "UTF-8";

/* ===== Sub page layout ===== */
main {
    flex: 1 0 auto;
    width: 100%;
}
.sub-section {
    width: 100%;
    /* padding: 0 0 64px; */
    background: #fff;
}
.sub-section .inner {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}
.sub-section img {
    width: 100%;
    height: auto;
    display: block;
}
.sub-title {
    margin-bottom: 24px;
}
.sub-section h2,
.sub-section > h2,
.sub-title > h2 {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: -0.02em;
    color: #111;
    line-height: 1.3;
}
.sub-con {
    width: 100%;
}

/* ===== FAQ ===== */
.faq-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 22px;
    padding: 4px 20px 4px 20px;
    border: 1px solid #eff2f4;
    height: 100px;
}
.faq-search-input {
    flex: 1;
    height: 100%;
    border: 0;
    background: transparent;
    font-size: 26px;
    color: #B2BAC2;
}
.faq-search-input::placeholder {
    color: #9aa3ad;
}
.faq-search-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.faq-search-icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 3px solid #6b7480;
    border-radius: 50%;
    position: relative;
}
.faq-search-icon::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -4px;
    width: 12px;
    height: 3px;
    background: #6b7480;
    transform: rotate(45deg);
    border-radius: 2px;
}

.faq-accordion {
    width: calc(100% + 9.6dvw);
    margin: 0 -4.8dvw;
    /* border: 1px solid red; */
}
.acc-wrap {
    border-bottom: 1px solid #e3e8ec;
}
.acc-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 30px 4.8dvw;
    background: transparent;
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
}
.acc-q-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #2E3338;
    flex: 1;
    font-size: 24px;
    font-weight: 600;
}
.acc-q-mark {
    flex: 0 0 auto;
    font-size: 35px;
    color: #EC008C;
    font-weight: 700;
}
.acc-arrow {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px;
    transition: transform 0.25s ease;
}
.acc-wrap.is-open .acc-arrow {
    transform: rotate(180deg);
}
.acc-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
    background: #f8fafc;
}
.acc-answer-inner {
    padding: 40px 4.8dvw;
    font-size: 24px;
    line-height: 1.6;
    color: #606a74;
    white-space: normal;
    position: relative;
    background: #FFEAF6;
    font-weight: 400;
}
.is-open .acc-q-text {
    color: #ec008c
}
.faq-empty {
    padding: 40px 0;
    text-align: center;
    font-size: 20px;
    color: #6b7480;
}

/* ===== insu_info hub buttons ===== */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-list a {
    display: block;
    padding: 24px;
    background: #f5f7fa;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 600;
    color: #111;
}

/* ===== dispatch buttons ===== */
.dispatch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.dispatch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 12px;
    background: #f5f7fa;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    text-align: center;
    min-height: 160px;
}
.dispatch-btn img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* ===== Modal ===== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    display: none;
}
.modal-backdrop.is-open {
    display: block;
}
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal.is-open {
    display: flex;
}
.modal-dialog {
    width: 100%;
    max-width: 640px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.modal-header {
    position: relative;
    padding: 20px 56px;
    text-align: center;
}
.modal-header .modal-title {
    font-size: 36px;
    font-weight: 600;
    color: #060B11;
}
.modal-header .modal-close {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    color: #333;
    background: transparent;
}
.modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-body img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}
.modal-footer {
    padding: 24px 40px;
    font-size: 24px;
    line-height: 1.5;
    color: #2E3338;
    font-weight: 300;
}

.faq-section .inner {
    padding: 7dvw 4.8dvw 0
}