body {
  background: #FAF7F2;
}

.banner {
  background: url("../../img/latest_news.webp") center center/cover;
}

section {
  margin: 15% 0 25%;
  min-height: 30vh;
}
section .news_box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 24px;
}
section article {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
section article:hover h4 {
  color: rgb(175.3181818182, 121.2727272727, 71.1818181818);
}
section article a {
  width: 100%;
}
section .card-img {
  margin-bottom: 0;
  height: 135px;
}
section .card-img, section img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
section img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section .card-body {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section h4 {
  font-size: clamp(20px, 3.3vw, 24px);
  color: #C9A07A;
  transition: color 0.4s ease-in-out;
  text-decoration: none;
}
section span {
  color: rgb(175.3181818182, 121.2727272727, 71.1818181818);
  align-self: end;
}

@media (min-width: 500px) and (max-width: 699px) {
  section {
    margin: 10% 0 14%;
  }
  section .news_box {
    gap: 0;
  }
  section article {
    width: 48%;
  }
  section article:nth-child(n+3) {
    margin-top: 6%;
  }
}
@media (min-width: 700px) {
  section {
    margin: 12% 0 5%;
  }
}
@media (min-width: 700px) and (max-width: 1042px) {
  section {
    margin: 8% 0 12%;
  }
  section .news_box {
    gap: 50px 30px;
  }
  section article {
    width: 47%;
  }
}
@media (min-width: 1024px) {
  section {
    margin: 5% 0 8%;
  }
  section article {
    width: 31%;
  }
}/*# sourceMappingURL=news.css.map */