.cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 48px;
    background-color: var(--blue-dark);
    color: var(--white);
    text-decoration: none !important;
    transition: background-color var(--transition);
}

.cta::before {
    position: absolute;
    inset: 6px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    content: '';
    pointer-events: none;
}

.cta .title {
    width: 100%;
    max-width: 182px;
    line-height: 1;
    color: inherit;
}

.cta :where(.title-1, .title-2) {
    display: block;
}

.cta .title-1 {
    margin-bottom: 2px;
    font-family: var(--font-display);
    font-weight: normal;
    font-size: 15px;
}

.cta .title-2 {
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
    font-size: 26px;
}

.cta .title-2::after {
    margin-left: 8px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 23px;
    color: var(--yellow);
    content: '\f0da'
}

@media (hover: hover) {
    .cta:hover {
        background-color: var(--orange);
        color: var(--white);
    }
}