@media (max-width: 768px) {

    .performance-bg-img {
        content: url("../img/mobile/performance/performance_section1_img.png");
        object-fit: contain; /* 모바일은 원본 비율 유지 */
        height: auto;
        position: static;
    }

    .performance-section1 {
        position: relative;
        height: auto;
    }

    .performance-section1::before {
        background-color: transparent; /* 모바일은 오버레이 제거 */
    }

    .performance-section1-inner {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        box-sizing: border-box;
        padding: 0 30px;
        width: 100%;
    }

    .performance-title {
        font-size: 20px;
    }

    .performance-subtitle {
        font-size: 14px;
    }

    .performance-section2-card {
        /* 기존 불필요한 스타일 제거 */
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        top: 0;
    }

    .performance-section2-title,
    .performance-section3-title,
    .performance-section4-title,
    .performance-section5-title {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 6px;
    }

    .performance-section2-subtitle,
    .performance-section3-subtitle,
    .performance-section4-subtitle,
    .performance-section5-subtitle {
        font-size: 14px;
        text-align: center;
        color: #555;
    }


}

@media (max-width: 768px) {
    .performance-section5 {
        padding: 50px 20px 50px;
    }

    .performance-section5-inner {
        flex-direction: column;
        gap: 40px;
    }

    .section5-image {
        order: -1; /* 이미지를 가장 위로 */
        min-width: auto;
        height: auto;
    }

    .section5-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .section5-content {
        min-width: auto;
    }

    .section5-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .card {
        width: 88%;
        padding: 20px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        border-radius: 13px;
        gap: 16px;
    }

    .icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .icon img {
        width: 24px;
        height: 24px;
    }

    .content .title {
        font-size: 16px;
    }

    .content .value {
        font-size: 20px;
    }

    .content .subtitle {
        font-size: 13px;
        line-height: 1.3;
    }

    .performance-section2 {
        padding: 50px 20px 20px;
    }

    .performance-section3 {
        padding: 50px 20px 50px;
    }

    .performance-section4 {
        padding: 5px 20px;
        text-align: center;
    }

    .performance-section4-inner {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .donut-chart-wrap {
        padding-top: 25px;
    }

    .multi-store-info {
        order: 2; /* ⬆️ 텍스트 블록 먼저 */
    }

    .donut-chart-wrap {
        order: 1; /* ⬇️ 차트는 그다음 */
    }

    .donut-chart-layer {

        position: relative;
        width: 280px;
        height: 280px;
    }

    .donut-label-card {
        top: -15px;
        left: 68%;
        transform: translateX(-18%); /* 👈 X축 이동 안 함 */
        padding: 8px 12px;
        font-size: 12px;
        z-index: 10;
    }

    .multi-store-info {
        width: 100%;
        max-width: 100%;
    }


    .multi-store-list {
        margin-top: 24px;
        gap: 16px;
    }

    .multi-store-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .multi-store-left {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        max-width: 100%;
    }

    .multi-store-right {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 12px;
        font-size: 14px;
        text-align: left;
    }

    .monthly-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
    }

    .stat {
        padding: 20px 10px;
        border-right: 1px solid #eee;
        text-align: center;
        font-size: 14px;
    }

    .stat-title {
        font-size: 14px;
        margin-bottom: 6px;
        color: #000;
        font-weight: 400;
    }

    .stat-value {
        font-size: 22px;
        font-weight: 700;
        color: #000;
    }

    /* 기존 ::after 분할선 제거 */
    .stat:not(:last-child)::after {
        display: none;
    }
}