.content-wrapper {
    padding: 2.5vh 4vw 1.5vh;
    flex: 1;
    display: flex;
    flex-direction: column;
}



.problem-layout {
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
    flex: 1;
}

.flow-context {
    padding-top: 1.5vh;
    border-top: 1px dashed var(--border);
    margin-top: 1vh;
}

.flow-context p {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    font-style: italic;
}

/* Journey Flow Box */
.journey-flow-box {
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5vh 2vw;
}

.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5vh;
}

.flow-header .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
}

.dot.pain {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 4px #fee2e2;
}

.flow-steps {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1vh;
}

.step-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5vh 1.4vw;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-muted);
}

.step-arrow {
    width: 16px;
    height: 2px;
    background: var(--border);
    position: relative;
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: var(--border);
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 1.2vh;
    border-top: 1px dashed var(--border);
    justify-content: center;
}

.flow-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1vh;
    width: 100%;
}

.chip {
    padding: 5px 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    border-left: 2px solid var(--accent-light);
}

/* Pain-Point Cards */
.pain-cards {
    display: flex;
    gap: 1.5vw;
    flex: 1;
}

.pain-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2vh 1.5vw;
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
    border-left: 4px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.pain-card.student-card {
    border-left-color: var(--accent-light);
}

.pain-card.institution-card {
    border-left-color: var(--accent-secondary);
}

.pain-card.university-card {
    border-left-color: var(--accent);
}

.pain-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5vh;
}

/* Dot Styles */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot.student {
    background: var(--accent-light);
}

.dot.school {
    background: var(--accent-secondary);
}

.dot.university {
    background: var(--accent);
}

.pain-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.pain-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.pain-card p.want {
    color: #059669;
}

.pain-card p.but {
    color: var(--text-secondary);
}

.pain-card p.result {
    color: #b91c1c;
    font-weight: 600;
}

/* Footer Banner */
.punchline-banner.warning {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: var(--radius-lg);
    padding: 1.5vh 2.5vw;
    color: #991b1b;
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.punchline-banner p {
    font-size: 16px;
    margin: 0;
}

.effects-list {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
}

.effect-item {
    font-weight: 600;
    color: #7f1d1d;
}

.effect-item.zero {
    color: #dc2626;
    font-weight: 700;
    text-transform: uppercase;
}

.effect-sep {
    color: #fca5a5;
}

/* Header spacing overrides */
.slide-header h1 {
    max-width: 100%;
}

.slide-header .subtitle {
    max-width: 100%;
}