.call-to-action {
	--title-color: var(--sw-text-color-light);
	--subtitle-color: var(--sw-text-color-light);
    --icon-color: var(--orange-e9);
    --title-font-family: var(--font-delight);
    --subtitle-font-family: var(--font-display);

    position: relative;
    z-index: 1;
}

.call-to-action .inner {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: var(--space-5);
    padding: 36px 0 32px;
}

.call-to-action .icon {
    color: var(--icon-color);
    font-size: var(--text-2xl);
}

.call-to-action .content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.call-to-action .title {
    font-family: var(--title-font-family);
    color: var(--title-color);
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}

.call-to-action .subtitle {
    display: inline-flex;
    gap: 12px;
    align-items: baseline;
    font-family: var(--subtitle-font-family);
    color: var(--subtitle-color);
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing:  var(--sw-letter-spacing-lg);
    text-transform: uppercase;
    font-weight: 700;
 }

.call-to-action .read-more {
    font-size: 1rem;
    color: var(--icon-color);
}

@media screen and (min-width: 64em) {
    .call-to-action .content {
        gap: 2px;
    }

    .call-to-action .title {
        text-align: left;
        font-size: 3.75rem;
    }

    .call-to-action .subtitle {
        font-size: 1.5rem;
    }

    .call-to-action .read-more {
        font-size: 1.375rem;
    }
}