/* ======================================================================
   Front Hero — Design #14 (Carousel + Side Promo Cards, 8/4)
   Library variant. Left lightSlider carousel + right two gradient promo
   offer-cards. Class pattern: front-hero-14-*. Palette adapts via
   --bs-primary / --bs-secondary.
   ====================================================================== */

.front-hero-14-band { padding: 1.75rem 0 0.5rem; }

/* ---------- Left carousel ---------- */
.front-hero-14-frame {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}
.front-hero-14-list { list-style: none; margin: 0; padding: 0; }
.front-hero-14-slide {
    position: relative;
    height: 440px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.front-hero-14-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 18, 12, 0.72) 0%, rgba(10, 18, 12, 0.4) 45%, transparent 78%);
}
.front-hero-14-content { position: relative; z-index: 2; color: #fff; padding: 2rem 2.25rem; max-width: 480px; }
.front-hero-14-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(var(--bs-secondary-rgb, 255, 122, 69), 0.92);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}
.front-hero-14-title {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 0.75rem;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}
.front-hero-14-sub {
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.25rem;
    max-width: 380px;
}
.front-hero-14-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #13261c;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.7rem 1.4rem;
    border-radius: 0.6rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}
.front-hero-14-cta:hover { transform: translateY(-2px); }

/* dots — bottom right, scoped to out-specify lightSlider defaults */
.front-hero-14-frame .lSSlideOuter .lSPager.lSpg {
    position: absolute;
    bottom: 18px;
    right: 22px;
    left: auto;
    margin: 0;
    padding: 0;
    z-index: 20;
}
.front-hero-14-frame .lSSlideOuter .lSPager.lSpg > li { padding: 0 4px; }
.front-hero-14-frame .lSSlideOuter .lSPager.lSpg > li a {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    transition: width 0.25s ease, background 0.2s ease;
}
.front-hero-14-frame .lSSlideOuter .lSPager.lSpg > li.active a { width: 26px; background: #fff; }

/* ---------- Right promo cards ---------- */
.front-hero-14-promos { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.front-hero-14-promo {
    position: relative;
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    min-height: 212px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.front-hero-14-promo:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18); }
.front-hero-14-promo::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.front-hero-14-promo--a { background: linear-gradient(135deg, var(--bs-primary) 0%, #14633a 100%); }
.front-hero-14-promo--b { background: linear-gradient(135deg, var(--bs-secondary) 0%, #c2461d 100%); }
.front-hero-14-promo-eyebrow {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.front-hero-14-promo-title { font-size: 1.3rem; font-weight: 800; line-height: 1.18; margin: 0 0 1rem; position: relative; z-index: 1; }
.front-hero-14-promo-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.86rem; font-weight: 700; position: relative; z-index: 1; }
.front-hero-14-promo-cta svg { transition: transform 0.2s ease; }
.front-hero-14-promo:hover .front-hero-14-promo-cta svg { transform: translateX(4px); }

@media (max-width: 991.98px) {
    .front-hero-14-slide { height: 340px; }
    .front-hero-14-promo { min-height: 120px; }
}
@media (max-width: 575.98px) {
    .front-hero-14-slide { height: 300px; }
    .front-hero-14-content { padding: 1.5rem; }
}
