.introduction {
  margin: 4% 15%;
}

.introduction p {
  margin-bottom: var(--m-bottom__l);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.news-grid {
  display: flex;
  /* grid-template-columns: 1fr 1fr 1fr 1fr; */
  flex-wrap: wrap;
  margin-top: var(--m-bottom__m);
  gap: 12px;
}

.news-container {
  margin: 4% 15%;
}

.news-box {
  width: 300px;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding-bottom: var(--m-bottom__m);
  /* margin-right: var(--m-bottom__l); */
  position: relative;
}
.date {
  position: absolute;
  background-color: var(--torr-blue-color);
  padding: 4px 16px;
  color: white;
  font-weight: 400;
  font-size: var(--fs-200);
  top: 10px;
  left: 0;
}

.news-box img {
  width: inherit;
  height: 240px;
  margin-bottom: var(--m-bottom__m);
  object-fit: cover;
  overflow-clip-margin: unset;
}

.news-box h3 {
  margin-bottom: var(--m-bottom__l);
}

.news-box p {
  line-height: 1.5;
  margin-bottom: var(--m-bottom__xxl);
}

.news-box a {
  text-decoration: none;
  color: var(--torr-blue-color);
  font-weight: 600;
}

.news-box a:hover {
  text-decoration: underline;
}

.news-content {
  margin: 12px 16px;
}

.news-detail-container {
  display: flex;
  flex-wrap: nowrap;
  margin-top: var(--m-bottom__m);
}

.news-detail-description {
  width: 60%;
  margin-right: var(--m-bottom__xl);
}

.news-detail-image {
  width: 40%;
}

.news-detail-image img {
  width: 360px;
  height: 240px;
  object-fit: cover;
  overflow-clip-margin: unset;
}

.news-detail-container p {
  line-height: 1.5;
  margin-bottom: var(--m-bottom__xl);
}

@media screen and (orientation: portrait) {
  .news-detail-container {
    flex-wrap: wrap;
  }

  .news-detail-description {
    width: 100%;
    margin-right: 0;
  }

  .news-detail-image {
    width: 100%;
  }

  .news-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .news-container,
  .introduction {
    margin: 4% 5%;
  }

  .news-box {
    width: 100%;
    margin-bottom: var(--m-bottom__m);
  }

  .news-grid {
    display: block;
  }
}
