/* styles-tutorial-sections.css
   튜토리얼 섹션/스텝/팁/그림 보강 스타일
   (분할 전 styles.css 의 1142~1226 줄 — 선언 순서 그대로 옮김) */
/* 튜토리얼 섹션 보강 스타일 */
.tutorial-detail-body .tutorial-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.tutorial-detail-body .tutorial-section:first-child {
    padding-top: 0;
}
.tutorial-detail-body .tutorial-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.tutorial-detail-body .tutorial-section > h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand);
    letter-spacing: -0.02em;
}
.tutorial-detail-body .tutorial-section > h2:not(:first-child) {
    margin-top: 8px;
}
.tutorial-detail-body .tutorial-section .tutorial-step {
    margin: 20px 0;
    padding: 16px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    border-left: 4px solid var(--brand);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.tutorial-detail-body .tutorial-step h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.tutorial-detail-body .tutorial-step p {
    margin: 0 0 12px 0;
    line-height: 1.65;
}
.tutorial-detail-body .tutorial-step p:last-of-type {
    margin-bottom: 0;
}
.tutorial-detail-body .tutorial-step .tutorial-figure {
    margin: 14px 0 0 0;
}
.tutorial-detail-body .tutorial-tip {
    margin: 16px 0;
    padding: 14px 18px;
    background: rgba(0, 123, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text);
}
.tutorial-detail-body .tutorial-tip strong {
    color: var(--brand);
}
.tutorial-detail-body .tutorial-figure-row {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 16px 0;
}
.tutorial-detail-body .tutorial-figure-row .tutorial-figure {
    flex: 1;
    min-width: 0;
    margin: 0;
}
.tutorial-detail-body .tutorial-figure-row .tutorial-figure img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 700px) {
    .tutorial-detail-body .tutorial-figure-row {
        flex-direction: column;
    }
}

