.cpt-text-block {
    background-color: #D1D1D6;
    padding: 40px clamp(30px, 8vw, 100px);
}
.cpt-text-block h1 {
    font-size: 42px;
    line-height: 42px;
    max-width: 27ch;
    margin-bottom: 43px;
}
.cpt-text-block h2 {
    font-size: 32px;
    line-height: 42px;
    max-width: 27ch;
    margin-bottom: 23px;
}
.cpt-text-block h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 23px;
}
.cpt-text-block h4 {
    margin-bottom: 15px;
}

.cpt-text-block h1[style="text-align: center;"],
.cpt-text-block h2[style="text-align: center;"],
.cpt-text-block h3[style="text-align: center;"],
.cpt-text-block p[style="text-align: center;"] {
    margin-right: auto;
    margin-left: auto;
}

.cpt-text-block p {
    margin-bottom: 1em;
    max-width: 110ch;
    line-height: 25px;
}
.cpt-text-block ul,
.cpt-text-block ol {
    margin-left: 2em;
    margin-bottom: 1em;
}
.cpt-text-block ul {
    list-style-type: initial;
}
.cpt-text-block ol {
    list-style-type: decimal;
}
.cpt-text-block table {
    height: auto !important;
}
.cpt-text-block tr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    column-gap: 7vw;
    row-gap: 4vw;
}
.cpt-text-block tr:has(> :last-child:nth-child(4)) {
    column-gap: 4vw;
}
.cpt-text-block td {
    width: auto !important;
}
.cpt-text-block a:not(.cta) {
    font-weight: 700;
    color: inherit;
    text-decoration: underline;
}

.cpt-text-block a.cta {
    display: inline-flex;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    border-radius: 50px;
    height: 60px;
    background: black;
    color: white;
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    line-height: 22px;
    border: 1px solid black;
    transition: background 400ms ease-in-out, color 400ms ease-in-out;
    margin-top: 36px;
}
.cpt-text-block a.cta:hover {
    background: transparent;
    color: black;
}

@media screen and (min-width: 768px) {
    .cpt-text-block {
        padding-top: 80px;
        paddding-bottom: 80px;
    }
    .cpt-text-block h1 {
        font-size: 56px;
        line-height: 56px;
        margin-bottom: 48px;
    }
    .cpt-text-block h2 {
        font-size: 48px;
        line-height: 53px;
        margin-bottom: 21px;
    }
    .cpt-text-block h3 {
        font-size: 32px;
        line-height: initial;
        margin-bottom: 23px;
    }
}

.cpt-text-block a.cta {
    min-width: 18ch;
}