.container {
  margin: 0 auto;
  width: 1330px;
  display: flex;
  flex-direction: column;
}
.container hr {
  width: 100%;
}
.container .contentarea {
  display: flex;
  flex-direction: column;
}
.container.news {
  gap: 1rem;
  flex-direction: row;
}
.container.news article {
  flex-grow: 3;
  flex-basis: 66%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 0.5rem;
  overflow: hidden;
}
.container.news article img {
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.container.news article > p, .container.news article > h1, .container.news article > div {
  padding: 0 1.5rem;
}
.container.news article h1 {
  line-height: 1;
  font-family: inherit;
  text-transform: inherit;
}
.container.news .aside {
  flex-grow: 1;
  flex-basis: 33%;
  flex-direction: column;
  justify-content: unset;
}
.container.news .aside .normal-card {
  flex-grow: 0;
  min-width: unset;
  max-width: unset;
}

@media screen and (max-width: 1070px) {
  .container {
    width: 100%;
  }
  .container.news {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 960px) {
  .container.news {
    flex-direction: column;
  }
  .container.news .aside {
    flex-direction: row;
    justify-content: space-around;
  }
  .container.news .aside .normal-card {
    max-width: 47%;
  }
}
@media screen and (max-width: 600px) {
  .container.news .aside {
    flex-direction: column;
    justify-content: unset;
  }
  .container.news .aside .normal-card {
    max-width: 100%;
  }
}/*# sourceMappingURL=content.css.map */