.call-to-action {
	--title-color: var(--black);
	--subtitle-color: var(--black);
    --title-font-family: var(--font-display);
    --subtitle-font-family: var(--font-body);
}

.call-to-action a {
    text-decoration: none;
}

.call-to-action a:hover {
    text-decoration: none;
}

.call-to-action .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-5);
}

.call-to-action .inner.reverse {
    flex-direction: column-reverse;
}

.call-to-action .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.call-to-action .title {
    font-family: var(--title-font-family);
    color: var(--title-color);
    font-weight: var(--weight-regular);
    font-size: var(--text-5xl);
    line-height: var(--leading-none);
    max-width: 108px;
}

.call-to-action .subtitle {
    font-family: var(--subtitle-font-family);
    color: var(--subtitle-color);
    font-size: var(--text-lg);
    line-height: var(--leading-tight);
}

.call-to-action .read-more {
    font-size: var(--text-xs);
}

@media screen and (min-width: 64em) {
    .call-to-action .title {
        font-size: var(--text-6xl);
    }

    .call-to-action .subtitle {
        font-size: var(--text-xl);
    }

    .call-to-action .read-more {
        font-size: var(--text-sm);
    }
}

.call-to-action img.wave {
    width: 77px;
}

@media screen and (min-width: 64em) {
    .call-to-action img.wave {
        width: 88px;
    }
}

.call-to-action img.map {
    width: 131px;
}

@media screen and (min-width: 64em) {
    .call-to-action img.map {
        width: 153px;
    }
}