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

.store-catalog__offers {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.store-catalog__see-also {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
}

.store-catalog__see-also-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}

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

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

    .store-catalog .store__content {
        grid-template-columns: minmax(0, 1fr);
    }

    .store-catalog__see-also-title {
        font-size: 18px;
    }
}