.sxs-itcrd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: var(--_p);
    border: 1px solid $primaryClear;
    border-radius: 2rem;
    text-align: center;
    transition: background-color $transitionDuration;
    --_p: clamp(1rem, calc(.5rem + 1vw + 1vh), 3rem);

    &__tit {
        margin-bottom: .25em;
        font-size: $text-25;
        line-height: 1.5;
        font-weight: 700;
    }

    &__txt {
        line-height: 1.5;
    }

    &:hover {
        background-color: $primaryClear;
    }
}