.figaro-barber-choice-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.figaro-barber-choice {
    background: #fffdf9;
    border: 1px solid rgba(32, 37, 44, .16);
    color: #20252c;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 1.35rem;
    text-align: center;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.figaro-barber-choice:hover,
.figaro-barber-choice:focus {
    border-color: #9b7130;
    box-shadow: 0 12px 30px rgba(32, 37, 44, .11);
    color: #20252c;
    transform: translateY(-3px);
}

.figaro-barber-choice-photo {
    aspect-ratio: 4 / 5;
    border: 5px solid #e7cf9a;
    border-radius: 8px;
    display: block;
    height: auto;
    margin: 0 auto 1.15rem;
    object-fit: cover;
    object-position: center top;
    width: min(142px, 58vw);
}

.figaro-barber-choice h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 .45rem;
}

.figaro-barber-choice > p {
    color: #625b50;
    font-size: .94rem;
    margin-bottom: 1rem;
}

.figaro-barber-choice > span {
    border-bottom: 1px solid currentColor;
    font-family: Arial, sans-serif;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-top: auto;
    padding-bottom: .3rem;
    text-transform: uppercase;
}

.figaro-barber-choice-all {
    background: #20252c;
    color: #fff;
    justify-content: center;
}

.figaro-barber-choice-all:hover,
.figaro-barber-choice-all:focus {
    color: #fff;
}

.figaro-barber-choice-all > p,
.figaro-barber-choice-all .figaro-eyebrow {
    color: #e7cf9a;
}

@media (max-width: 650px) {
    .figaro-barber-choice { min-height: 270px; }
}
