.store-opening-list-block {
    max-width: 100%;
}
.menu_thumbnail-block img {
    width: auto;
}
@media (min-width: 992px) {
    .career_hero-video {
        /*
        height: calc(100dvh - 74px - 40px);
        */
        height: calc(80dvh - 74px - 40px);
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 991px) {
    .career_hero-video {
        height: calc(80dvh - 74px - 40px);
        padding-bottom: 60px;
        min-height: 360px;
    }
}
@media screen and (max-width: 767px) {
    .career_hero-video {
        height: 60dvh;
        padding-bottom: 60px;
    }
}
.select2-results, .select2 {
    font-family: 'Familjen Grotesk';
}
.hv-store-refurbishment-notice {
    padding: 8px 13px;
    border-radius: 12px;
    background: var(--Bright-Red, #F33A24);
    margin-bottom: 34px;
}
.hv-store-refurbishment-notice p {
    margin: 0;
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Familjen Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    top: -1px;
}
.hv-store-list-refur {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    background: var(--Bright-Red, #F33A24);
    padding: 8px 13px;
}
.hv-store-list-refur p {
    color: var(--White, #FFF);
    font-family: "Familjen Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    position: relative;
    top: -1px;
}
@media (max-width: 767px) {
    .hv-store-list-refur svg {
        display: none;
    }
}
.map-block {
    overflow: hidden;
}
.footer-copyright-text {
    line-height: 1.4;
}
.footer .w-checkbox:after {
    display: none;
}
/* Recruit badge */
.hv-recruit-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--Hotville-Red, #B50018);
    border-radius: 16px;
    padding: 10px 10px 10px 14px;
    text-decoration: none;
    margin-top: 0px;
}
.hv-recruit-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FCB32C;
    flex-shrink: 0;
    animation: recruit-pulse 2s linear infinite;
    position: relative;
    top: 1px;
}
@keyframes recruit-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.hv-recruit-text {
    color: #fff;
    font-family: "Familjen Grotesk";
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.hv-recruit-badge svg {
    flex-shrink: 0;
    position: relative;
    top: 1px;
}
@media screen and (max-width: 767px) {
    .hv-store-content-block {
        text-align: center;
        width: 100%;
    }
}
.hv-store-list-heading .hv-store-title {
    margin-bottom: 0;
}
@media screen and (max-width: 991px) {
    .hv-store-title {
        flex: 1;
    }
}

.hv-store-list-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .hv-store-list-heading {
        flex-direction: column;
    }
}
.hv-store-list-refur:has(+.store-road-text) {
    margin-bottom: 10px;
}

/* Hero content scaling for short viewports */
.career_hero-content-block {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center bottom;
    display: block;
}
@media (max-height: 750px) {
    .career_hero-content-block {
        transform: scale(0.8);
    }
}
@media (max-height: 550px) {
    .career_hero-content-block {
        transform: scale(0.65);
    }
}
/* Ticker marquee — CSS-only replacement for old .hv-track-block */
.hv-slider-section {
    overflow-x: clip;
}
.hv-ticker-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin-top: -16px;
}
.hv-ticker-top {
    transform: rotate(2.3deg);
}
.hv-ticker-bottom {
    position: relative;
    z-index: 10;
    transform: translate(0, -25px) rotate(-2deg);
}
.hv-ticker-scroll {
    display: flex;
    width: max-content;
}
.hv-ticker-img {
    flex-shrink: 0;
    margin-left: -2px;
}
.hv-ticker-scroll-left {
    animation: ticker-left 30s linear infinite;
}
.hv-ticker-scroll-right {
    animation: ticker-right 30s linear infinite;
}
@keyframes ticker-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
@keyframes ticker-right {
    0% { transform: translateX(-33.333%); }
    100% { transform: translateX(0); }
}
@media screen and (max-width: 767px) {
    .hv-ticker-img {
        height: 35px;
        width: auto;
    }
}


