/**
 * LG Wine Preview Widget — CSS
 */

.lg-wine-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.lg-wine-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 48px;
    border-top: 1px solid rgba(var(--lge-foreground-rgb), .1);
}
.lg-wine-item:first-child { padding-top: 0; border-top: none; }
.lg-wine-item__left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lg-wine-item__num {
    color: var(--lge-accent);
    font-size: 10px;
    font-style: normal;
    font-family: 'Playfair Display', serif;
}
.lg-wine-item__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: .025em;
    color: var(--lge-foreground);
    font-weight: 400;
    margin: 0;
}
.lg-wine-item__meta {
    font-size: .75rem;
    color: var(--lge-muted-fg);
    text-transform: uppercase;
    letter-spacing: .25em;
    font-family: 'Inter', sans-serif;
}
