/* 고객현황 섹션 */
.client-section {
    background: #ffffff;
}

.client-container {
}

.client-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 15px;
}

.client-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
}

/* 클라이언트 그리드 */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.client-item:hover {
    border-color: var(--point-color);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.client-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.client-logo img {
    max-width: 60% !important;
    max-height: 70% !important;
    object-fit: contain;
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
    margin: 0;
    line-height: 1.4;
	word-break:keep-all;
}

/* 반응형 스타일 */
@media (max-width: 1200px) {


    .client-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .client-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-item {
        padding: 20px 15px;
    }

    .client-logo {
        height: 80px;
        margin-bottom: 15px;
    }

    .client-logo img {
        max-width: 85% !important;
        max-height: 70% !important;
    }

    .client-name {
        font-size: 0.9rem;
    }
}