.store-catalog-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 8px;
    padding: 24px;
    background: var(--white--white100);
    box-shadow: 0 0 3.6px 0 rgba(0, 0, 0, 0.15);
}

.store-catalog-hero__category {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    min-width: 0;
}

.store-catalog-hero__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    width: 100%;
    min-width: 0;
}

.store-catalog-hero__breadcrumbs {
    margin-bottom: -4px;
    width: 100%;
    min-width: 0;
}

.store-catalog-hero__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.store-catalog-hero__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}

.store-catalog-hero__count {
    color: var(--black--black40);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

.store-catalog-hero__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 1199px) {
    .store-catalog-hero {
        gap: 20px;
        padding: 20px;
    }

    .store-catalog-hero__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .store-catalog-hero {
        gap: 16px;
        padding: 16px;
    }

    .store-catalog-hero__category {
        gap: 12px;
    }

    .store-catalog-hero__title {
        font-size: 22px;
    }

    .store-catalog-hero__description {
        font-size: 14px;
    }
}