/* Category landing hero — full-bleed photo, proof pills, headline, two CTAs.
   Was an inline <style> block inside hero.blade.php; moved out so the page
   ships CSS the same way every other section does. */

.cat-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111214;
}
.cat-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
/* Two overlays, the way the photo needs them: a vertical one so the copy sits
   on solid ground, and a left-to-right one so the first words stay readable
   even on a bright, busy frame. */
.cat-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(17,18,20,.85) 0%, rgba(17,18,20,.45) 45%, rgba(17,18,20,.1) 100%),
        linear-gradient(to bottom, rgba(17,18,20,.2) 0%, rgba(17,18,20,.55) 55%, rgba(17,18,20,.92) 100%);
}
.cat-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    /* Lifted off the bottom edge: the copy is the point of the screen, and
       sitting on the fold made it read as a caption to the photo. */
    padding: 0 24px 15vh;
}

/* Breadcrumbs, over the photo and directly above the pills. */
.cat-hero__crumbs {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(237, 227, 213, 0.55);
    margin-bottom: 14px;
}
.cat-hero__crumb-link {
    color: rgba(237, 227, 213, 0.72);
    text-decoration: none;
    transition: color .18s;
}
.cat-hero__crumb-link:hover { color: #EDE3D5; }
.cat-hero__crumb-link:focus-visible {
    outline: 2px solid #FF6A00;
    outline-offset: 3px;
}
.cat-hero__crumb-sep { margin: 0 8px; opacity: .5; }
.cat-hero__crumb-current { color: rgba(237, 227, 213, 0.92); }
.cat-hero__h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    color: #EDE3D5;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    max-width: 900px;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.cat-hero__sub {
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.6;
    color: rgba(237,227,213,.82);
    margin: 0 0 32px;
    max-width: 640px;
}
.cat-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.cat-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 32px;
    padding: 0 14px;
    border: 1px solid rgba(237,227,213,.3);
    color: rgba(237,227,213,.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .01em;
    white-space: nowrap;
}
.cat-hero__pill b {
    font-weight: 700;
    color: #EDE3D5;
}
/* A pill that leads somewhere: same shape, but it answers to the pointer. */
.cat-hero__pill--link {
    text-decoration: none;
    cursor: pointer;
    transition: border-color .18s, background .18s, color .18s;
}
.cat-hero__pill--link:hover {
    border-color: #FF6A00;
    background: rgba(255, 106, 0, .14);
    color: #EDE3D5;
}
.cat-hero__pill--link:focus-visible {
    outline: 2px solid #FF6A00;
    outline-offset: 3px;
}

.cat-hero__pill--rating {
    border-color: rgba(255,106,0,.55);
}
.cat-hero__pill--rating .cat-hero__star {
    color: #FF6A00;
    font-size: 12px;
    line-height: 1;
}
.cat-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.cat-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    transition: opacity .18s, background .18s, border-color .18s;
    white-space: nowrap;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.cat-hero__btn--primary {
    background: #FF6A00;
    color: #fff;
    border: 1px solid #FF6A00;
}
.cat-hero__btn--primary:hover { opacity: .88; color: #fff; }
.cat-hero__btn--ghost {
    background: transparent;
    color: #EDE3D5;
    border: 1px solid rgba(237,227,213,.45);
}
.cat-hero__btn--ghost:hover { border-color: #EDE3D5; color: #EDE3D5; }
.cat-hero__btn:focus-visible {
    outline: 2px solid #FF6A00;
    outline-offset: 3px;
}

/* Scroll hint — a hint, not a control: the primary CTA does the same job. */
.cat-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    padding: 6px 12px;
    color: rgba(237,227,213,.55);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}
.cat-hero__scroll:hover { color: rgba(237,227,213,.9); }
.cat-hero__scroll svg { animation: cat-hero-bob 2.4s ease-in-out infinite; }
@keyframes cat-hero-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) {
    .cat-hero__scroll svg { animation: none; }
}

@media (max-width: 900px) {
    .cat-hero__scroll { display: none; }
}
@media (max-width: 600px) {
    .cat-hero__inner { padding-bottom: 10vh; }
    .cat-hero__crumbs { font-size: 12px; margin-bottom: 12px; }
    .cat-hero__btn { height: 48px; font-size: 14px; width: 100%; }
    .cat-hero__cta { width: 100%; }
    .cat-hero__sub { margin-bottom: 24px; }
}
