.hc-about-page {
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

.hc-about-static-selector {
    position: relative;
    width: 100%;
    height: 450px;
    min-height: 450px;
    overflow: hidden;
    border-radius: 20px;
    background: #fefcf9;
    color: #1f1911;
    font-family: Onest, Arial, sans-serif;
}

.hc-about-static-selector--empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-about-static-selector__empty {
    padding: 16px 20px;
    border-radius: 8px;
    background: #fff;
    color: #423a2e;
    font-size: 1rem;
    line-height: 1.5rem;
}

.hc-about-static-selector__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: inherit;
    object-fit: cover;
    object-position: -120px center;
}

.hc-about-static-selector__hotspots {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hc-about-static-selector__hotspot {
    position: absolute;
    display: block;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hc-about-static-selector__hotspot.is-hidden {
    display: none;
}

.hc-about-static-selector__controls {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    padding: 12px 12px 0;
    pointer-events: none;
}

.hc-about-static-selector__bar {
    display: flex;
    box-sizing: border-box;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
    color: #423a2e;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    pointer-events: auto;
}

.hc-about-static-selector__stages {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hc-about-static-selector__stage {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #423a2e;
    font: inherit;
    white-space: nowrap;
    cursor: pointer;
}

.hc-about-static-selector__stage:hover {
    background: #efebe5;
}

.hc-about-static-selector__stage.is-active {
    background: #ff7835;
    color: #fff;
}

.hc-about-static-selector__stage.is-disabled {
    background: transparent;
    color: #bfb7ac;
    cursor: default;
}

.hc-about-static-selector__divider {
    display: block;
    width: 1px;
    height: 24px;
    background: #dad2c5;
}

.hc-about-static-selector__dropdown {
    position: relative;
}

.hc-about-static-selector__select {
    display: flex;
    min-width: 0;
    width: 250px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #dad2c5;
    border-radius: 6px;
    background: #f3f0ec;
    color: #423a2e;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.hc-about-static-selector__dropdown.is-open .hc-about-static-selector__select,
.hc-about-static-selector__select:hover {
    border-color: #ff5500;
    background: #fefcf9;
}

.hc-about-static-selector__select span:first-child {
    min-width: 0;
    flex: 0 0 auto;
    text-align: center;
    white-space: nowrap;
}

.hc-about-static-selector__select.is-text-overflowing {
    padding-right: 4px;
    padding-left: 4px;
}

.hc-about-static-selector__chevron {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.hc-about-static-selector__dropdown.is-open .hc-about-static-selector__chevron {
    transform: rotate(225deg);
}

.hc-about-static-selector__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 4;
    display: none;
    max-height: min(370px, 58vh);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px;
    border-radius: 6px;
    background: #fff;
    scrollbar-width: none;
}

.hc-about-static-selector__menu::-webkit-scrollbar {
    display: none;
}

.hc-about-static-selector__dropdown.is-open .hc-about-static-selector__menu {
    display: flex;
    flex-direction: column;
}

.hc-about-static-selector__option {
    width: 100%;
    padding: 12px 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #1f1911;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: left;
    white-space: nowrap;
}

.hc-about-static-selector__option.is-text-overflowing {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
}

.hc-about-static-selector__option:hover {
    background: rgba(255, 85, 0, 0.1);
    color: #ff5500;
}

.hc-about-static-selector__option.is-active {
    background: transparent;
    color: #9e968b;
}

.hc-about-static-selector__option.is-hidden {
    display: none;
}

.hc-about-static-selector__option:disabled {
    color: #bfb7ac;
    cursor: default;
}

@media (min-width: 768px) {
    .hc-about-page {
        padding-right: 120px;
        padding-left: 120px;
    }
}

@media (min-width: 801px) {
    .hc-about-static-selector {
        height: 100vh;
        min-height: 0;
        border-radius: 40px;
    }

    .hc-about-static-selector__image {
        object-position: center center;
    }

    .hc-about-static-selector__controls {
        right: auto;
        padding: 32px 0 0 32px;
    }

    .hc-about-static-selector__bar {
        max-width: 100%;
    }

    .hc-about-static-selector__select {
        width: 230px;
    }
}

@media (max-width: 420px) {
    .hc-about-static-selector__bar {
        width: 100%;
    }

    .hc-about-static-selector__stage {
        white-space: normal;
        text-align: center;
    }

    .hc-about-static-selector__select {
        flex: 1 1 auto;
        width: auto;
    }
}

@media (max-width: 800px) {
    .hc-about-static-selector__menu {
        right: -4px;
    }

    .hc-about-static-selector__hotspot {
        pointer-events: none;
    }

    .hc-about-static-selector__hotspot.is-active:not(.is-hidden) {
        pointer-events: auto;
    }
}
