/* Artrel homepage purchase paths */
.page-index .ps-imageslider__figcaption {
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: min(72rem, calc(100% - 2rem));
    margin: clamp(1.5rem, 5vw, 3.5rem) auto 1.25rem;
    padding: 1.25rem;
    text-align: center;
    background: rgba(15, 17, 21, .68);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1rem;
    box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, .24);
}

.page-index .ps-imageslider__figcaption .h1 {
    margin-bottom: .5rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.home-hero__lead {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(.95rem, 1.6vw, 1.125rem);
}

.home-hero__choices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    width: 100%;
    margin-top: 1.25rem;
}

.home-hero__choice {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
    min-height: 4.75rem;
    padding: .8rem 1rem;
    color: #fff;
    text-align: left;
    text-decoration: none;
    background: rgba(31, 34, 40, .9);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .8rem;
    box-shadow: 0 .75rem 1.75rem rgba(0, 0, 0, .18);
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.home-hero__choice:hover {
    color: #fff;
    background: rgba(44, 48, 56, .98);
    border-color: rgba(var(--bs-primary-rgb), .7);
    box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, .26);
    transform: translateY(-2px);
}

.home-hero__choice:focus-visible {
    color: #fff;
    outline: 3px solid rgba(var(--bs-primary-rgb), .55);
    outline-offset: 3px;
}

.home-hero__choice--featured,
.home-hero__choice--featured:hover {
    background: linear-gradient(135deg, var(--bs-primary), #1978bd);
    border-color: rgba(255, 255, 255, .28);
}

.home-hero__choice > .material-icons {
    flex: 0 0 auto;
    font-size: 1.75rem;
}

.home-hero__choice-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.2;
}

.home-hero__choice-copy strong {
    font-size: 1rem;
    font-weight: 650;
}

.home-hero__choice-copy small {
    margin-top: .2rem;
    color: rgba(255, 255, 255, .7);
    font-size: .77rem;
}

.home-hero__choice--featured .home-hero__choice-copy small {
    color: rgba(255, 255, 255, .88);
}

@media (max-width: 767.98px) {
    .page-index .ps-imageslider__figcaption {
        width: calc(100% - 1rem);
        margin: .75rem auto 1rem;
        padding: 1rem;
        background: rgba(15, 17, 21, .78);
    }

    .page-index .ps-imageslider__figcaption .h1 {
        margin-bottom: .4rem;
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .home-hero__choices {
        grid-template-columns: 1fr;
        gap: .55rem;
        margin-top: 1rem;
    }

    .home-hero__choice {
        min-height: 3.6rem;
        padding: .6rem .75rem;
        border-radius: .7rem;
    }

    .home-hero__choice > .material-icons {
        font-size: 1.5rem;
    }

    .home-hero__choice-copy strong {
        font-size: .94rem;
    }

    .home-hero__choice-copy small {
        font-size: .72rem;
    }
}
