/* ==========================================================
   CTA BLOCK
   ========================================================== */

.cta-block {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-block__inner {
    box-sizing: border-box;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ----------------------------------------------------------
   ALIGN
   ---------------------------------------------------------- */

.cta-block--align-left .cta-block__inner {
    text-align: left;
}

.cta-block--align-center .cta-block__inner {
    text-align: center;
}

/* ----------------------------------------------------------
   TITLE
   ---------------------------------------------------------- */

.cta-block__title {
    margin: 0 0 20px 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
}

/* ----------------------------------------------------------
   TEXT
   ---------------------------------------------------------- */

.cta-block__text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-block__text > *:first-child {
    margin-top: 0;
}

.cta-block__text > *:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   BUTTON
   ---------------------------------------------------------- */

.cta-block__action {
    margin-top: 28px;
}

.cta-block__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
}

/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 768px) {
    .cta-block__inner {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}