/* 바이럴 마케팅 성과 섹션 추가 스타일 */
.viral-stats {
    background: white;
    padding: 40px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    position: relative;
    overflow: visible;
}

.viral-stats h5 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

/* 차트 숫자가 차트 바 위에 제대로 표시되도록 조정 */
.viral-stats .chart-container {
    padding-top: 50px;
    min-height: 280px;
}

.viral-stats .chart-item {
    position: relative;
    padding-top: 40px;
}

.viral-stats .chart-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* 성공 노트 스타일 */
.success-note {
    background: #fff5f5;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e94b35;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.success-note i {
    font-size: 20px;
    color: #e94b35;
    flex-shrink: 0;
    margin-top: 2px;
}

.success-note p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
