/* 쇼핑몰 페인포인트 섹션 */
.shopping-pain-point-section {
    background: #f8fafc;
    padding: 100px 0;
}

.pain-point-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pain-point-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #111827;
}

.pain-point-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #dc2626;
}

.story-item p {
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}

.pain-point-message {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

@media (max-width: 768px) {
    .pain-point-stories {
        grid-template-columns: 1fr;
    }
}
