/**
 * Unified homepage search styles.
 * Scoped under .hp-unified-home / .hp-search-preview.
 */
:root {
    --hp-unified-navy: #001d3d;
    --hp-unified-orange: #ff931e;
    --hp-unified-teal: #026972;
    --hp-unified-border: #e2e8ec;
    --hp-unified-shadow-lg: 0 16px 48px rgba(0, 29, 61, 0.15);
    --hp-unified-radius-pill: 999px;
    --hp-unified-radius-card: 16px;
}

/* —— Homepage hero shell —— */
.hp-unified-home {
    position: relative;
}

/* Split hero — copy left, map visual right (preview homepage) */
.hp-unified-home.hp-unified-home--split {
    background-image: none;
    background-color: antiquewhite;
    overflow: hidden;
}

.hp-unified-home.hp-unified-home--split::before {
    display: none;
}

.hp-unified-home--split .hp-unified-hero-title,
.hp-unified-home--split .hp-unified-hero h1 {
    color: var(--hp-unified-navy);
}

.hp-unified-home--split .hp-unified-hero-list,
.hp-unified-home--split .hp-unified-hero .hero-content-list {
    color: #323840;
}

.hp-unified-home--split .hp-unified-hero .hero-content-list h2 {
    color: #323840;
    font-weight: 600;
}

.hp-unified-home .landing-page-header-wrap header {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0 0 10rem 10rem;
}

.hp-unified-home.hp-unified-home--split .landing-page-header-wrap header {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hp-unified-orange-shell {
    position: relative;
    background-color: antiquewhite;
}

.hp-unified-home--split .hp-unified-hero-map__frame {
    background: transparent;
}

.hp-unified-home--split .hp-unified-hero-map__frame--sticker {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.35s ease;
}

.hp-unified-home--split .hp-unified-hero-map__frame--sticker:hover {
    transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.hp-unified-home--split .hp-unified-hero-map__frame--sticker img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    image-rendering: auto;
    filter: drop-shadow(0 16px 32px rgba(0, 29, 61, 0.2))
            drop-shadow(0 4px 10px rgba(0, 29, 61, 0.1));
}

.hp-unified-home--split .hp-unified-hero-map__glow {
    background: radial-gradient(circle at 50% 45%, rgba(255, 165, 0, 0.35) 0%, rgba(255, 165, 0, 0.08) 45%, transparent 70%);
}

.hp-unified-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "stage stage"
        "search search";
    gap: 32px;
    align-items: center;
}

.hp-unified-hero-stage {
    grid-area: stage;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.hp-unified-hero-stage .hp-unified-hero-copy {
    order: 1;
}

.hp-unified-hero-stage .hp-unified-hero-map {
    order: 2;
}

.hp-unified-hero-layout .hp-unified-search-wrap {
    grid-area: search;
    margin: 15px auto;
    padding: 0 0 40px;
    position: relative;
    z-index: 5;
}

.hp-unified-hero-copy {
    max-width: 560px;
}

.hp-unified-hero-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.hp-unified-hero-map__glow {
    position: absolute;
    inset: 8% 5% 12%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 147, 30, 0.22) 0%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
}

.hp-unified-hero-map__frame {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: visible;
    background: #fff;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.35s ease;
}

.hp-unified-hero-map__frame > img:first-of-type {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.hp-unified-hero-map__frame:hover {
    transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.hp-unified-hero-map__frame img {
    vertical-align: middle;
}

.hp-unified-home > * {
    position: relative;
    z-index: 1;
}

.hp-unified-home .landing-page-header-wrap header {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0 0 10rem 10rem;
}

.hp-unified-hero {
    padding: 20px 0 100px;
}

.hp-unified-hero h1 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hp-unified-home--split .hp-unified-hero h1 {
    color: var(--hp-unified-navy);
}

.hp-unified-hero .hero-content-list {
    color: #fff;
}

/* px not rem — site html font-size is 10px (smaller on mobile) */
.hp-unified-hero .hero-content-list h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
    .hp-unified-hero .hero-content-list h2 {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .hp-unified-hero .hero-content-list h2 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .hp-unified-home.hp-unified-home--split {
        background-color: antiquewhite;
        overflow: visible;
    }

    .hp-unified-orange-shell {
        min-height: 100svh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        background-color: antiquewhite;
        box-sizing: border-box;
    }

    .hp-unified-orange-shell .hp-unified-hero {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 36px 0 28px;
    }

    .hp-unified-home.hp-unified-home--split .landing-page-header-wrap header {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Tablet/phone: global CSS shrinks .navbar-brand to 100x30 under 767px */
    .hp-unified-home .navbar-brand {
        width: 180px;
        height: 44px;
    }

    .hp-unified-hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "stage"
            "search";
        gap: 24px;
        margin-left: 0;
        margin-right: 0;
    }

    .hp-unified-hero-stage {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 0;
        overflow: visible;
    }

    .hp-unified-hero-stage .hp-unified-hero-copy {
        padding: 4px 4px 0;
        min-height: 0;
    }

    .hp-unified-home--split .hp-unified-hero-copy h1,
    .hp-unified-home--split .hp-unified-hero-title {
        font-family: "Sansation", "Work Sans", sans-serif;
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: 0.01em;
        text-align: left;
        margin-bottom: 1.25rem;
        text-shadow: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .hp-unified-home--split .hero-content-list h2 {
        font-family: "Work Sans", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.01em;
        color: #4a5160;
        text-shadow: none;
        margin: 0 0 0.4rem;
        -webkit-font-smoothing: antialiased;
    }

    .hp-unified-home--split .hp-unified-hero-copy .hero-content-list li:last-child h2 {
        margin-bottom: 0;
    }

    .hp-unified-home--split .hp-unified-hero-copy .hero-content-list ul {
        display: block;
        text-align: left;
        padding-left: 0;
    }

    .hp-unified-hero-layout .hp-unified-search-wrap {
        margin: 8px 0 0;
        padding: 0;
    }

    /* Phone: show stage map under title (single map markup) */
    .hp-unified-hero-map--stage {
        display: block;
        margin: 0 auto;
        width: 80%;
    }

    .hp-unified-hero-stage .hp-unified-hero-copy {
        order: 1;
    }

    .hp-unified-hero-stage .hp-unified-hero-map {
        order: 2;
    }

}

/* —— Floating search area —— */
.hp-unified-search-wrap {
    max-width: 1110px;
    margin: -72px auto 0;
    padding: 0 16px 40px;
    position: relative;
    z-index: 100;
}

.hp-unified-bar {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: var(--hp-unified-radius-pill);
    box-shadow: var(--hp-unified-shadow-lg);
    min-height: 66px;
    position: relative;
}

/* Homepage: inline fields */
.hp-unified-bar--home .hp-unified-field {
    flex: 1;
    min-width: 0;
    padding: 12px 24px;
    position: relative;
    display: flex;
    align-items: center;
}

.hp-unified-bar--home input.readonly {
    cursor: pointer;
}

.hp-unified-bar--home .hp-unified-field + .hp-unified-field::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: var(--hp-unified-border);
}

.hp-unified-bar--home input,
.hp-unified-bar--home select {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    min-height: 1.5em;
    color: #323840;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23001d3d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 18px;
}

.hp-unified-bar--home input {
    background-image: none;
    padding-right: 0;
}

.hp-unified-bar--home input::placeholder {
    color: #9aa3a6;
    font-weight: 400;
}

.hp-unified-bar--home input:focus {
    outline: none;
}

.hp-unified-bar--home .hp-unified-bar__actions {
    padding-left: 4px;
}

.hp-unified-bar__actions {
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 0;
    flex-shrink: 0;
}

.hp-unified-bar__submit {
    border: 0;
    background: var(--hp-unified-orange);
    color: #fff;
    font: inherit;
    font-weight: 600;
    font-size: 15px;
    padding: 0 28px;
    height: 50px;
    border-radius: var(--hp-unified-radius-pill);
    cursor: pointer;
    white-space: nowrap;
}

.hp-unified-bar__submit:hover {
    filter: brightness(1.05);
}

/* —— Popovers —— */

.hp-unified-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* jQuery UI datepicker only when this home CSS is loaded with unified home */
.hp-search-preview .ui-datepicker {
    z-index: 10000 !important;
}

/* —— Compact variant (list / map sticky bar) —— */

/* —— Mobile —— */
@media (max-width: 900px) {
    .hp-unified-bar {
        flex-direction: column;
        border-radius: var(--hp-unified-radius-card);
        min-height: 0;
    }

    .hp-unified-bar__actions {
        padding: 12px;
    }

    .hp-unified-bar__submit {
        width: 100%;
    }

    .hp-unified-bar--home .hp-unified-field {
        padding: 14px 18px;
    }

    .hp-unified-bar--home .hp-unified-field + .hp-unified-field::before {
        left: 18px;
        right: 18px;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px;
    }

    .hp-unified-hero {
        padding-bottom: 24px;
    }

    .hp-unified-search-wrap {
        margin-top: 0;
        padding-bottom: 32px;
    }

    /* Homepage bar — stacked separate fields on mobile */
    .hp-unified-bar--home {
        gap: 10px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .hp-unified-bar--home .hp-unified-field {
        background: #fff;
        border-radius: 14px;
        box-shadow: var(--hp-unified-shadow-lg);
        padding: 16px 20px;
        min-height: 56px;
        align-items: center;
    }

    .hp-unified-bar--home .hp-unified-field + .hp-unified-field::before {
        display: none;
    }

    .hp-unified-bar--home input,
    .hp-unified-bar--home select {
        font-size: 16px;
        line-height: 1.5;
        min-height: 24px;
        padding-top: 1px;
        padding-bottom: 1px;
    }

    .hp-unified-bar--home .hp-unified-bar__actions {
        padding: 6px 0 0;
        width: 100%;
    }

    .hp-unified-bar--home .hp-unified-bar__submit {
        height: 54px;
        font-size: 16px;
    }

    .hp-unified-home.hp-unified-home--split {
        background-color: antiquewhite;
    }

    .hp-unified-orange-shell {
        background-color: antiquewhite;
    }

    .hp-unified-home.hp-unified-home--split .landing-page-header-wrap header {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* —— Preview concept labels —— */

/* Unified home: section headings + reviews CTA */
.hp-search-preview .our-story .title-wrap,
.hp-search-preview #howItWorksGuest .title-wrap,
.hp-search-preview #homePageReview .title-wrap,
.hp-search-preview .hp-faq-card .title-wrap,
.hp-search-preview .hp-logo-wall .title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.hp-search-preview #homePageReview .space-top-30.text-center {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-top: 0;
}

.hp-search-preview #homePageReview .space-top-30.text-center a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 12px 28px;
    border: 1.5px solid #ff931e;
    border-radius: 999px;
    color: #ff931e !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    width: fit-content;
    max-width: 100%;
    background: none;
}

.hp-search-preview #homePageReview .space-top-30.text-center a:hover {
    background: #ff931e;
    color: #fff !important;
}

/* Preview page: separate Why Book / How It Works / Reviews
   Use px — site html font-size is 10px, so rem understates spacing. */
.hp-search-preview #whyBook,
.hp-search-preview #howItWorksGuest,
.hp-search-preview #homePageReview {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 992px) {
    .hp-search-preview #whyBook,
    .hp-search-preview #howItWorksGuest,
    .hp-search-preview #homePageReview {
        padding-top: 96px;
        padding-bottom: 120px;
    }

    .hp-search-preview #whyBook .story-wrap .content-wrap {
        padding-bottom: 36px;
    }

    .hp-search-preview #homePageReview .guest-review-card {
        padding: 24px 24px 32px;
    }
}

.hp-search-preview #whyBook {
    background-color: #f0f3f7;
}

.hp-search-preview #howItWorksGuest {
    background-color: #fff;
}

.hp-search-preview #homePageReview {
    background-color: #f0f3f7;
}

.hp-search-preview #whyBook .story-wrap .icon-bg-wrap {
    border-color: #f0f3f7;
}

.hp-search-preview #whyBook .story-wrap .content-wrap {
    background: #fff;
    border: 1px solid #e6ebef;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 29, 61, 0.07);
    filter: none;
}

.hp-search-preview #howItWorksGuest .reviews-content-wrap {
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 29, 61, 0.07);
    border: 1px solid rgba(0, 29, 61, 0.04);
}

.hp-search-preview #homePageReview .guest-review-card {
    border: 1px solid #e6ebef;
    box-shadow: 0 10px 28px rgba(0, 29, 61, 0.07);
}

.hp-search-preview #whyBook .our-story-wrap,
.hp-search-preview #howItWorksGuest .guest-reviews-wrap {
    row-gap: 20px;
}

/* Preview: keep FAQ / Study / Work from blending when adjacent */
.hp-search-preview #guestFAQ {
    background-color: #fff;
}

.hp-search-preview #guestStudyWall {
    background-color: #f0f3f7;
}

.hp-search-preview #guestWorkWall {
    background-color: #fff;
}

/* Preview mobile: clamp long reviews with fade + See more */
@media (max-width: 767.98px) {
    .hp-search-preview .hp-reviews-clamp {
        position: relative;
        max-height: 80vh;
        overflow: hidden;
    }

    .hp-search-preview .hp-reviews-clamp:not(.is-expanded)::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 140px;
        background: linear-gradient(to bottom, rgba(240, 243, 247, 0), #f0f3f7 85%);
        pointer-events: none;
    }

    .hp-search-preview .hp-reviews-clamp.is-expanded {
        max-height: none;
    }

    .hp-search-preview .hp-reviews-clamp.is-expanded::after {
        display: none;
    }

    .hp-search-preview .hp-reviews-clamp__more {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto 0;
        padding: 12px 28px;
        border: 1.5px solid #ff931e;
        border-radius: 999px;
        background: transparent;
        color: #ff931e;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        width: fit-content;
        max-width: 100%;
        cursor: pointer;
    }

    .hp-search-preview .hp-reviews-clamp__more:hover {
        background: #ff931e;
        color: #fff;
    }

    .hp-search-preview .hp-reviews-clamp__more[hidden] {
        display: none;
    }

    .hp-search-preview #homePageReview.is-reviews-clamped .space-top-30.text-center {
        display: none;
    }

    .hp-search-preview #homePageReview.is-reviews-expanded .space-top-30.text-center {
        display: flex;
    }
}

@media (min-width: 768px) {
    .hp-search-preview .hp-reviews-clamp__more {
        display: none;
    }
}

/* —— FAQ Concept A: contained card —— */
.hp-faq-card {
    background: #f7f8fc;
}

.hp-faq-card .title-wrap {
    text-align: center;
}

.hp-faq-card__panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 28px 28px;
    background: #fff;
    border: 1px solid #e6ebef;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 29, 61, 0.06);
}

.hp-faq-card__item {
    border: 0 !important;
    background: transparent !important;
    border-bottom: 1px solid #e6ebef !important;
}

.hp-faq-card__item:last-of-type {
    border-bottom: 0 !important;
}

.hp-faq-card__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: left;
    font: inherit;
    color: #001d3d;
}

.hp-faq-card__button:not(.collapsed),
.hp-faq-card__button:focus {
    background: transparent;
    box-shadow: none;
    color: #001d3d;
}

.hp-faq-card__button::after {
    display: none;
}

.hp-faq-card__question {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    padding-right: 8px;
}

.hp-faq-card__plus {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #001d3d;
    position: relative;
}

.hp-faq-card__plus::before,
.hp-faq-card__plus::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: #001d3d;
}

.hp-faq-card__plus::before {
    width: 10px;
    height: 2px;
}

.hp-faq-card__plus::after {
    width: 2px;
    height: 10px;
}

.hp-faq-card__button:not(.collapsed) .hp-faq-card__plus::after {
    opacity: 0;
}

.hp-faq-card__body {
    padding: 0 0 16px;
}

/* DB HTML answers — override spacing/type, keep bold / lists / underline */
.hp-faq-prose {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #026972;
}

.hp-faq-prose p,
.hp-faq-prose ul,
.hp-faq-prose ol,
.hp-faq-prose li,
.hp-faq-prose div {
    margin: 0 0 0.65em;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-align: left;
}

.hp-faq-prose p:last-child,
.hp-faq-prose ul:last-child,
.hp-faq-prose ol:last-child {
    margin-bottom: 0;
}

.hp-faq-prose ul,
.hp-faq-prose ol {
    padding-left: 1.2em;
}

.hp-faq-prose li {
    margin-bottom: 0.4em;
}

.hp-faq-prose strong,
.hp-faq-prose b {
    font-weight: 600;
    color: #01545c;
}

.hp-faq-prose u {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hp-faq-prose a {
    color: #ff931e;
    font-weight: 500;
}

.hp-faq-card__footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.hp-faq-card__footer .hp-faq-card__more {
    margin: 0;
}

.hp-faq-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1.5px solid #ff931e;
    border-radius: 999px;
    color: #ff931e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    max-width: 100%;
}

.hp-faq-card__more:hover {
    background: #ff931e;
    color: #fff;
}

/* —— Logo rail: 2 rows, click-to-scroll (endless) —— */
.hp-logo-wall {
    text-align: center;
}

.hp-logo-marquee {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    gap: 10px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hp-logo-marquee__viewport {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.hp-logo-marquee__row {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hp-logo-marquee__row::-webkit-scrollbar {
    display: none;
}

.hp-logo-marquee__track {
    display: flex;
    gap: 12px;
    width: max-content;
}

.hp-logo-rail__cell {
    flex: 0 0 auto;
    width: 120px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
}

.hp-logo-rail__cell--navy {
    background: #001d3d;
    border-color: #001d3d;
}

.hp-logo-rail__cell--black {
    background: #111;
    border-color: #111;
}

.hp-logo-rail__cell--teal {
    background: #02594c;
    border-color: #02594c;
}

.hp-logo-rail__cell--beige {
    background: #f5f0e6;
    border-color: #e8e0d0;
}

.hp-logo-wall.bg-gray .hp-logo-rail__cell:not([class*="hp-logo-rail__cell--"]) {
    background: #fff;
}

.hp-logo-rail__cell img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.hp-logo-rail__nav {
    width: 32px;
    height: 32px;
    border: 1px solid #d5dde5;
    border-radius: 50%;
    background: #fff;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hp-logo-rail__nav span {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #001d3d;
    border-bottom: 1.5px solid #001d3d;
    display: block;
}

.hp-logo-rail__nav--prev span {
    transform: translateX(2px) rotate(135deg);
}

.hp-logo-rail__nav--next span {
    transform: translateX(-2px) rotate(-45deg);
}

.hp-logo-rail__nav:hover {
    border-color: #001d3d;
}

@media (max-width: 575px) {
    .hp-logo-marquee {
        grid-template-columns: 28px 1fr 28px;
        gap: 4px;
    }

    .hp-logo-rail__cell {
        width: 100px;
        height: 68px;
    }
}
