/* Support Page Styles */

.support-wrapper {
    min-height: calc(100vh - 80px - 220px);
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 100px 20px 60px;
}

.support-container {
    width: 100%;
    max-width: 486px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 타이틀 영역 */
.support-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.support-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    color: #3a3a3a;
}

.support-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #4e4e4e;
}

/* 문의 카드 영역 */
.support-cards {
    display: flex;
    gap: 16px;
}

.support-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 12px;
    background-color: #f6f6f6;
    border-radius: 12px;
}

/* 일러스트레이션 */
.card-illustration {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.illustration-phone,
.illustration-email {
    position: absolute;
    width: 282.35%;
    height: 188.24%;
    background-image: url('/static/images/img_support.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.illustration-phone {
    left: -25.37%;
    top: -41.18%;
}

.illustration-email {
    left: -161.26%;
    top: -41.18%;
}

/* 카드 텍스트 */
.card-label {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #3a3a3a;
    text-align: center;
}

.card-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #3a3a3a;
    text-align: center;
}

.card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #3a3a3a;
    text-align: center;
}

/* 안내 배너 */
.support-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    background-color: #f6f6f6;
    border-radius: 12px;
}

.support-notice svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.notice-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #3a3a3a;
}

/* Sidebar Layout */
.support-wrapper--sidebar {
    min-height: auto;
    padding: 60px 20px 40px;
}

/* Responsive */
@media (max-width: 480px) {
    .support-wrapper {
        padding: 60px 16px 40px;
    }

    .support-container {
        gap: 32px;
    }

    .support-title {
        font-size: 24px;
        line-height: 32px;
    }

    .support-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .support-cards {
        flex-direction: column;
    }

    .support-notice {
        padding: 12px 16px;
        height: auto;
    }

    .notice-text {
        font-size: 14px;
    }
}