.products {
  display: grid;
  grid-gap: 5rem 1rem;
  grid-template-columns: max-content;
  justify-content: center; }
  .products > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .products > * > :nth-child(2) {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      .products > * > :nth-child(2) > :nth-child(1) {
        margin-top: 1rem;
        font-size: 1.2rem;
        font-weight: bold; }
      .products > * > :nth-child(2) > :nth-child(2) {
        margin-top: 1rem;
        font-size: 0.9rem; }

.news {
  display: grid;
  grid-row-gap: 0.5rem;
  grid-template-columns: 1fr; }
  .news > li {
    border: 1px solid #f0f0f0;
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: white; }
    .news > li > :nth-child(1) > :nth-child(1) {
      font-weight: bold; }
    .news > li > :nth-child(1) > :nth-child(2) {
      font-size: 0.9rem;
      margin-left: 1rem; }
    .news > li > :nth-child(2) {
      margin-top: 0.5rem;
      font-size: 0.9rem; }
      .news > li > :nth-child(2):empty {
        display: none; }

.news-more {
  padding: 0 1rem;
  margin-top: 0.5rem; }

.news-more-link {
  cursor: pointer; }

.news-hidden {
  display: none; }
