html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.wrapper {
  position: relative;
  margin-top: 1rem;
  margin: auto;
  max-width: 1280px;
  width: 90%;
}

.news-articles {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.news-item {
  border-radius: 1rem;
  background-color: rgb(239, 242, 243);
  box-shadow: 0 0 0 1px rgb(68, 68, 68);
}
.news-item--body {
  padding: 1.5rem;
}
.news-item--title {
  font-size: large;
  margin-bottom: 0.5rem;
}
.news-item--text {
  font-weight: 700;
}
.news-item--image img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-position: center;
  object-fit: cover;
}