.store-hero__company {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.store-hero__company-logo {
    display: flex;
    width: 100px;
    height: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 10px;
}

.store-hero__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.store-hero__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}

.store-hero__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 1199px) {
    .store-hero__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .store-hero__company {
        gap: 12px;
    }

    .store-hero__company-logo {
        width: 72px;
        height: 72px;
    }

    .store-hero__title {
        font-size: 22px;
    }

    .store-hero__description {
        font-size: 14px;
    }
}