/* Layout */
.slide-header {
    /* text-align: left; - Removed for global centering */
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; - Removed for global centering */
    margin-bottom: 2vh;
    padding-top: 2vh;
    width: 100%;
    /* padding-left removed for center alignment */
}

/* Ensure footer text is not centered if it inherits */
.global-footer {
    text-align: left;
}

.header-content {
    width: 100%;
    text-align: left;
}

.header-content h1 {
    font-size: 32px;
    margin-bottom: 0.5vh;
}

/* Replacing eyebrow with context text style */
.context-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
    margin-top: 12px;
    width: 100%;
    /* Full width */
    line-height: 1.5;
    text-align: left;
}

.header-content .subtitle {
    font-size: 18px;
    /* Slight bump */
    color: var(--text-secondary);
    width: 100%;
    /* Full width */
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    padding: 3vh 5vw;
    /* Slightly increased top padding */
    flex: 1;
    height: 100%;
    /* Revert to natural flow, Banner handles bottom anchor */
    justify-content: flex-start;
    align-items: center;
}

/* Ensure grid takes full width up to max */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    /* Horizontal gap */
    row-gap: 2vh;
    /* Vertical gap */
    flex: 0 0 auto;
    margin-bottom: 2vh;
    width: 100%;
    max-width: 1200px;
}

/* Insight Cards */
.insight-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3vh 3vw;
    /* More breathing room */
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: auto;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    /* More gap */
    margin-bottom: 2vh;
}

.insight-card h2 {
    font-size: 22px;
    /* Increased from 20px */
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Icon Boxes */
.icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.icon-box.blue {
    background: rgba(1, 186, 239, 0.1);
    color: var(--accent-light);
}

.icon-box.violet {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

/* Descriptions & Lists */
.card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2vh;
}

.takeaways {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.takeaways li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.takeaways li i {
    margin-top: 4px;
    font-size: 13px;
    flex-shrink: 0;
}

.text-red {
    color: #ef4444;
    /* Keeping distinct red for errors/warnings if needed, or use orange? keeping red for now */
}

.text-yellow {
    color: var(--accent-secondary);
}

.text-blue {
    color: var(--accent-light);
}

.takeaways li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

/* Mission Banner */
.mission-banner {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: var(--radius-lg);
    padding: 2.5vh 3vw;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(1, 186, 239, 0.2);
    margin-top: auto;
    margin-bottom: 4vh;
    /* Balanced spacer */
    width: 100%;
    max-width: 1200px;
    /* Match grid width */
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.mission-text {
    color: #fff;
}

.mission-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.mission-text p {
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.95;
    opacity: 0.95;
}

.mission-text strong {
    color: #fff;
    font-weight: 700;
}