/* Website: src/app/static/css/pages/pitchdeck/slides/slide10.css v1.0 */

#slide-10 {
    box-sizing: border-box;
}

.phased-strategy {
    margin-top: -4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 440px;
}

.phased-strategy h2 {
    font-size: 1.3em;
    color: #000;
    margin-top: 5px;
    margin-bottom: 3px;
}

.phased-strategy h3 {
    font-size: 1.1em;
    margin-top: 2px;
    color: #000;
}

.phased-strategy p {
    font-size: 1em;
    color: #000;
    line-height: 1.4;
    margin-bottom: 3px;
}

.phase {
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 130px;
}

/* Matching gradient backgrounds for each phase */
#slide-10 .phase:nth-child(1) {
    background: linear-gradient(to right, #b2f7ef, #5fa8d3); /* Light Teal to Teal gradient for Phase 1 */
}

#slide-10 .phase:nth-child(2) {
    background: linear-gradient(to right, #5fa8d3, #008080); /* Teal to Dark Teal gradient for Phase 2 */
}

#slide-10 .phase:nth-child(3) {
    background: linear-gradient(to right, #008080, #004d40); /* Dark Teal to Darker Teal gradient for Phase 3 */
}
