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

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

/* 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: 1.2vh;
}

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

.legend-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
}

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

.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);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card.brand {
    border-color: var(--accent-light);
    background: #f0f9ff;
}

.step-card.brand h3 {
    color: var(--accent);
}

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

.step-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
    margin: 0;
}

.step-arrow {
    width: 16px;
    height: 2px;
    background: #10b981;
    position: relative;
}

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

/* Solution Cards */
.solution-cards {
    display: flex;
    gap: 1.5vw;
    flex: 1;
}

.solution-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);
}

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

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

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

.solution-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);
}

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

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

.solution-card p.challenge {
    color: #991b1b;
}

.solution-card p.fix {
    color: #059669;
}

.solution-card p.outcome {
    color: #1e40af;
    font-weight: 600;
}

/* Footer Banner */
.punchline-banner.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
    padding: 1.5vh 2.5vw;
    color: #166534;
}

.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: #15803d;
}

.effect-item.gain {
    color: #16a34a;
    font-weight: 700;
    text-transform: uppercase;
}

.effect-sep {
    color: #86efac;
}

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

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