.hc-benefits {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 60px 0;
    color: #1f1911;
    font-family: Onest, Arial, sans-serif;
}

.hc-benefits__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 0 12px;
}

.hc-benefits__copy {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.hc-benefits__title {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    margin: 0;
    color: #bfb7ac;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.5rem;
}

.hc-benefits__title span {
    color: #1f1911;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.hc-benefits__description {
    display: none;
    margin: 0;
    color: #423a2e;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.hc-benefits__animation-stage {
    position: relative;
    width: 100%;
    height: 300px;
}

.hc-benefits__animation-panel {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 500ms ease-in;
}

.hc-benefits__animation-panel.is-active {
    display: flex;
    opacity: 1;
}

.hc-benefits__animation-panel > svg,
.hc-benefits__animation-panel > canvas {
    width: min(350px, 100%) !important;
    height: min(350px, 100%) !important;
}

.hc-benefits__grid {
    z-index: 20;
    display: flex;
    gap: 13px;
    overflow-x: auto;
    padding: 10px 12px;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hc-benefits__grid::-webkit-scrollbar {
    display: none;
}

.hc-benefits__item {
    display: flex;
    min-width: 190px;
    flex-direction: column;
    gap: 12px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    color: #858585;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: color 300ms ease, box-shadow 300ms ease;
}

.hc-benefits__item:hover {
    box-shadow: 0 0 0 6px rgba(255, 85, 0, 0.2), 0 12px 24px 0 rgba(136, 100, 82, 0.12);
}

.hc-benefits__item.is-active {
    color: #ff6b00;
    box-shadow: 0 0 0 6px rgba(255, 85, 0, 0.4), 0 12px 24px 0 rgba(136, 100, 82, 0.12);
}

.hc-benefits__item span {
    max-width: 170px;
    color: #1f1911;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25;
    overflow-wrap: break-word;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .hc-benefits {
        gap: 20px;
        padding: 80px 0 0;
    }

    .hc-benefits__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 0;
    }

    .hc-benefits__copy {
        width: 50%;
        gap: 20px;
    }

    .hc-benefits__title {
        max-width: 480px;
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .hc-benefits__description {
        display: flex;
        width: 80%;
    }

    .hc-benefits__animation-stage {
        width: 450px;
        height: 480px;
        margin-left: 20px;
        padding-right: 100px;
    }

    .hc-benefits__item {
        min-height: 124px;
    }

    .hc-benefits__item span {
        font-size: 1rem;
    }
}
