.cta {
    display: flex;
    align-items: center;
}

.cta .img-cont {
    position: relative;
    background-color: var(--orange);
    width: calc(48px + (65.39 - 48) * ((100vw - 320px) / (400 - 320)));
    height: calc(48px + (65.39 - 48) * ((100vw - 320px) / (400 - 320)));
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: var(--rounded-circle);
}

@media (min-width: 400px) {
    .cta .img-cont {
        width: 65.39px;
        height: 65.39px;
    }
}

.cta .img-cont::after {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    border-radius: var(--rounded-circle);
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    border: 2px solid var(--light-blue);
}

.cta .img-cont img {
    width: calc(24px + (34 - 24) * ((100vw - 320px) / (400 - 320)));
}

@media (min-width: 400px) {
    .cta .img-cont img {
        width: 34px;
    }
}

.cta .content-section {
    height: 100%;
    z-index: 1;
    text-align: center;
    background-color: var(--navy-blue);
    font-family: var(--font-display);
    color: var(--white);
    padding: var(--space-1) var(--space-2);
}
.cta .content-section h3,
.cta .content-section h4 {
    font-family: inherit;
    font-weight: 600;
}

.cta .content-section h4 {
    font-size: 0.625rem;
    letter-spacing: 0.01em;
}

.cta .content-section h3 {
    font-size: 0.825rem;
    line-height: var(--leading-none);
}