.text-content {
    background: var(--color-primary-dark);
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.text-content__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 204px 80px 100px;
}

.text-content__body {
    color: var(--color-white);
}

.text-content__body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 28.8px;
    margin-bottom: 32px;
}

.text-content__body p:last-child {
    margin-bottom: 0;
}

.text-content__body h1,
.text-content__body h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.text-content__body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.text-content__body ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.text-content__body ul li {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 28.8px;
    margin-bottom: 8px;
}

.text-content__body a {
    color: var(--color-blue);
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .text-content__container {
        padding: 48px 20px;
    }

    .text-content__body p,
    .text-content__body ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .text-content__body h1,
    .text-content__body h2 {
        font-size: 28px;
    }
}
