/*--------------------------------------------------------------
# Others Section (Leisure, Sitemap, etc.)
--------------------------------------------------------------*/

/* Leisure Page Styles */
.leisure-wrapper {
    padding: 120px 0;
    background-color: #f7f7f7;
    min-height: 80vh;
}

.leisure-header {
    margin-bottom: 60px;
}

.leisure-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.leisure-header h2 span.highlight {
    color: #e91e63;
    /* Pink color from image */
}

.leisure-header p {
    font-size: 18px;
    color: #888;
}

.leisure-stats-container {
    margin-bottom: 80px;
}

.leisure-stats-container.d-flex>div {
    flex: 0 0 calc(33.3333333% - 20px);
}

.leisure-stats-container.d-flex {
    justify-content: space-between;
}

.leisure-card {
    background: #f2f2f2;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* .leisure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
} */

.leisure-card .card-icon-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #666;
    font-size: 18px;
}

.leisure-card .stat-number {
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #282828;
    font-weight: 800;
}

.leisure-card .stat-number .counter {
    font-size: 5rem;
}

/* 카운터가 없는 일반 텍스트(예: 1위) 및 보조 텍스트 공통 스타일 */
.leisure-card .stat-number span {
    font-size: 5rem;
}

.leisure-card .stat-number span:not(.counter):not(:first-child) {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 5px;
}

/* 이미 단위를 포함한 경우(사용자 직접 수정분 대응) */
.leisure-card .stat-number span:only-child {
    font-size: 5rem;
}

.leisure-footer-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .leisure-header h2 {
        font-size: 36px;
    }

    .leisure-card .stat-number {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .leisure-wrapper {
        padding: 60px 0;
    }

    .leisure-stats-container.d-flex {
        flex-direction: column !important;
        gap: 24px;
    }

    .leisure-stats-container.d-flex>div {
        flex: 0 0 100%;
        margin-bottom: 0px;
    }

    .leisure-card {
        padding: 40px 20px;
    }

    .leisure-header h2 {
        font-size: 28px;
    }

    .leisure-card .card-icon-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .leisure-card .stat-number {
        font-size: 40px;
    }

    .leisure-card .stat-number .counter {
        font-size: 4rem;
    }

    .leisure-card .stat-number span {
        font-size: 4rem;
    }

    .leisure-card .stat-number span:not(.counter):not(:first-child) {
        font-size: 1.25rem;
    }

    .leisure-card .stat-number span:only-child {
        font-size: 4rem;
    }

    .leisure-footer-text {
        font-size: 16px;
    }
}

/* =========================================
   큐브리펀드 (Cube Refund) 섹션 스타일
   ========================================= */

.cubrefund-section {
    padding: 80px 0 100px;
    background-color: #fff;
}

.cubrefund-title {
    font-size: 40px;
    font-weight: 800;
    color: #222;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cubrefund-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    word-break: keep-all;
}

.cubrefund-image-wrapper {
    margin-bottom: 30px;
}

.cubrefund-image-wrapper img {
    border-radius: 12px;
}

.cubrefund-law-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 24px 30px;
}

.cubrefund-law-box h6 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.cubrefund-law-box h6 i {
    font-size: 14px;
    color: #666;
}

.cubrefund-law-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
    word-break: keep-all;
}

/* 큐브리펀드 반응형 */
@media (max-width: 991px) {
    .cubrefund-section {
        padding: 60px 0;
    }

    .cubrefund-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cubrefund-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
}