.store-about {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.store-about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1 0 0;
    min-width: 0;
}

.store-about__main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 24px;
    border-radius: 8px;
    background: var(--white--white100);
    box-shadow: 0 0 3.6px 0 rgba(0, 0, 0, 0.15);
}

.store-about__main-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.store-about .store-hero {
    gap: 40px;
}

.store-about__regions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-about__legal {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 8px;
    background: var(--white--white100);
    box-shadow: 0 0 3.6px 0 rgba(0, 0, 0, 0.15);
}

.store-about__section-title {
    color: inherit;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
}

.store-about__legal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-about__legal-text-label {
    font-weight: 500;
}

.store-about__legal-text {
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 1199px) {
    .store-about {
        gap: 32px;
    }

    .store-about__main,
    .store-about__legal {
        padding: 20px;
    }

    .store-about__section-title {
        font-size: 22px;
    }

    .store-about .store-hero {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .store-about {
        gap: 24px;
    }

    .store-about__content {
        gap: 16px;
    }

    .store-about__main,
    .store-about__legal {
        gap: 12px;
        padding: 16px;
    }

    .store-about__section-title {
        font-size: 20px;
    }

    .store-about .store-hero {
        gap: 16px;
    }

    .store-about__regions {
        gap: 10px;
    }

    .store-about__regions .store-regions__text {
        font-size: 14px;
        line-height: 130%;
    }
}

