.call-to-action {
	--title-color: var(--yellow-alt);
	--subtitle-color: var(--white);
    --icon-color: var(--gray-100);
    --title-font-family: var(--font-display);
    --subtitle-font-family: var(--font-cursive);
}

.call-to-action .inner {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: var(--space-5);
    padding: var(--space-5) 0;
}

.call-to-action .icon {
    color: var(--icon-color);
    font-size: var(--text-2xl);
}

.call-to-action .content {
    display: flex;
    flex-direction: column;
}

.call-to-action .title {
    font-family: var(--title-font-family);
    color: var(--title-color);
    font-size: 12px;
    line-height: normal
}

.call-to-action .subtitle {
    display: flex;
    align-items: center;
}

.call-to-action .subtitle span {
    font-family: var(--subtitle-font-family);
    color: var(--subtitle-color);
    font-size: 28px;
    line-height: normal;
    font-weight: 400;
}

.call-to-action .subtitle svg {
    width: 12px;
    margin-left: 8px;
}

.call-to-action .read-more {
    font-size: var(--text-xs);
}

.call-to-action a:hover{
    color: var(--sw-link-color);
    /* text-decoration: none;    */
}

@media screen and (min-width: 64em) {
    .call-to-action .title {
        font-size: 17px;
    }

    .call-to-action .subtitle {
       font-size: 44px;
    }

    .call-to-action .read-more {
        
    }
}
