/* ==========================================
   MANIFESTO
========================================== */

.manifesto {
    background: #ffffff;
    padding: 120px 0;

    background:
        radial-gradient(circle at top center,
            #ffffff 0%,
            #e0e0e0 55%,
            #f3f3f3 100%);
}

.manifesto .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HEADER */

.manifesto-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-header h2 {
    margin-top: 15px;

    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;

    color: #0d1b3d;
}

.manifesto-header h2 span {
    color: #d62828;
}

.manifesto-subtitle {
    max-width: 700px;

    margin: 25px auto 0;

    font-size: 1.125rem;
    line-height: 1.8;

    color: #666;
}

/* VIDEO */

.manifesto-video {
    margin-top: 70px;
}

.manifesto-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;

    border: 0;
    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
}

/* CONTENT */

.manifesto-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 60px;

    margin-top: 70px;
}


.manifesto-block h3 {
    margin-bottom: 18px;

    font-size: 1.5rem;
    font-weight: 600;

    color: #0d1b3d;
}

.manifesto-block p {
    font-size: 1rem;
    line-height: 1.9;

    color: #666;
}


@media (max-width: 991px) {

    .manifesto-header h2 {
        font-size: 2.8rem;
    }

    .manifesto-content {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .manifesto {
        padding: 80px 0;
    }

    .manifesto-header h2 {
        font-size: 2.2rem;
    }

    .manifesto-block {
        padding: 30px;
    }

}