@charset "UTF-8";


/* CTA Button Component */
.small-cta {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 5rem;
    min-height: 3.6rem;
    padding: 0 2.4rem;

    background-color: #1a1a1a;
    color: #fff;

    font-size: var(--wb-small-btn-text);
    font-weight:var(--wb-font-weight-semibold);
    text-decoration: none;

    overflow: hidden;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.small-cta:hover,
.small-cta:focus-visible {
    background-color: #333;
    transform: translateY(-2px);
}

.small-cta::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1rem;

    width: calc(100% - 70%);
    height: 1px;
    background-color: currentColor;

    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.small-cta:hover::after,
.small-cta:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
}
















        
























