.news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 100px 100px;
}
.news figure {
  width: 45%;
}
.news figure img {
  width: 100%;
}
.news .text-container {
  height: 100%;
  width: 45%;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.news .text-container h2 {
  font-size: 2.5rem;
  color: #84C1B1;
}
.news .text-container p {
  color: #1E1E1E;
  font-size: 1.1rem;
}
.news .text-container a {
  width: fit-content;
}


