/* ===================================================================
   /styles/home.css  —  Home-only styling
   Use alongside /styles/site.css
   =================================================================== */

/* Full-width hero stays outside .wrap on home */
#hero.hero {
    max-width: none;
}

/* Home sliders spacing tweaks (optional) */
.slider {
    margin-top: 12px;
}

/* Optional: subtle section spacing rhythm on home */
.wrap>section {
    margin-bottom: 30px;
    padding-top: 80px;
}

.wrap>section:last-of-type {
    margin-bottom: 8px
}

/* Next-section floater */
.fixed-arrow {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    z-index: 2000;
    border: 1px solid var(--border);
    cursor: pointer;
}

.fixed-arrow.hidden {
    display: none
}