.text-content {
    max-width: 50vw;
    margin: clamp(120px, 10vw, 10vw) auto;
    line-height: 1.4;
    color: #000;
}

.text-content h1 {
    font-size: clamp(24px, 2.5vw, 2.5vw);
    margin-bottom: clamp(48px, 5vw, 5vw);
    text-transform: uppercase;
}

.text-content h2 {
    font-size: clamp(16px, 1vw, 1vw);
    margin-top: clamp(48px, 5vw, 5vw);
    margin-bottom: clamp(24px, 1.25vw, 1.25vw);
}

.text-content h3 {
    font-size: clamp(16px, .8vw, .8vw);
    text-transform: uppercase;
}

.text-content p {
    font-size: clamp(16px, .8vw, .8vw);
    margin-bottom: 1rem;
}

.text-content a {
    color: #7555e7;
    text-decoration: underline;
}

li {
	list-style-type: circle;
	margin-left: 2em;
	margin-bottom: 8px;
}

.text-content section {
    margin: 120px 0;
}
.text-content article {
    margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
    .text-content {
        padding: 2vw var(--master-padding-right) 0vw var(--master-padding-clamp);
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    .footer .content-text {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        width: auto;
        justify-self: start;
    }
}