/**
 * LG Signature Dishes Widget — CSS
 */

.lg-sig-dishes {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.lg-sig-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
    margin-bottom: 192px;
}
.lg-sig-dish:last-of-type { margin-bottom: 0; }
.lg-sig-dish--reversed { direction: rtl; }
.lg-sig-dish--reversed > * { direction: ltr; }
.lg-sig-dish--reversed .lg-sig-dish__content {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 1024px) {
    .lg-sig-dish { grid-template-columns: 1fr; gap: 48px; margin-bottom: 96px; }
    .lg-sig-dish--reversed { direction: ltr; }
    .lg-sig-dish--reversed .lg-sig-dish__content { text-align: left; align-items: flex-start; }
}
.lg-sig-dish__img-wrap {
    max-width: 28rem;
    width: 100%;
}
.lg-sig-dish__img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    border-radius: 2px;
}
.lg-sig-dish__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.lg-sig-dish__cat {
    color: var(--lge-primary);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.lg-sig-dish__name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--lge-foreground);
    margin: 0;
    line-height: 1.2;
}
.lg-sig-dish__desc {
    color: rgba(var(--lge-foreground-rgb), .7);
    font-style: normal;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}
.lg-sig-dish__price {
    color: var(--lge-accent);
    font-weight: 300;
    font-size: 1.125rem;
    letter-spacing: .025em;
    margin: 0;
}
.lg-sig-dish__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--lge-foreground);
    text-decoration: none;
    border-bottom: 1px solid rgba(239, 122, 35, .3);
    padding-bottom: 4px;
    transition: color .3s;
}
.lg-sig-dish__link:hover { color: var(--lge-primary); }
.lg-sig-dish__arrow {
    display: inline-block;
    vertical-align: middle;
}

.lg-sig-dishes__cta {
    text-align: center;
    margin-top: 160px;
}

/* Shared button styles */
.lg-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 48px;
    transition: all .3s;
}
.lg-btn--orange { background: var(--lge-primary); color: #fff; }
.lg-btn--orange:hover { background: #EA580C; color: #fff; }
