/* ===================================
   Information Sections Enhanced Styling
   정보 섹션 가독성 중심 스타일
   =================================== */

.info-section {
    position: relative;
}

.info-section h2,
.info-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.3;
}

.info-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-color-light);
}

.info-section h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.info-section p {
    font-size: var(--font-size-base);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.info-section strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.info-section ul,
.info-section ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
    color: var(--text-secondary);
    line-height: 1.75;
}

.info-section li {
    margin-bottom: var(--space-sm);
}

.info-section li::marker {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

/* Responsive */
@media (max-width: 768px) {
    .info-section h2 {
        font-size: var(--font-size-xl);
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    
    .info-section h3 {
        font-size: var(--font-size-lg);
    }
    
    .info-section p {
        font-size: var(--font-size-base);
        line-height: 1.65;
    }
}
