section.news {
  flex-direction: column;
  align-items: center;
}

section.news .news-container {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}

section.news .news {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

section.news .news-thumbnail {
  width: 100%;
  height: 40rem;
  border-radius: var(--radius-600);
  overflow: hidden;
  box-shadow: rgba(213, 20, 203, 0.123) 0px 7px 29px 0px;
}

section.news .news-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

section.news .news-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40%;
}

section.news .date {
  font-weight: 600;
}

section.news .read-time {
  font-style: oblique;
}

section.news .news .cta {
  gap: 1rem;
}

section.news .news .cta span {
  font-size: 1.6rem;
  transition: all 300ms ease-in-out;
}

section.news .news .cta:hover span {
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  section.news .news-container {
    width: 80%;
  }

  section.news .news-thumbnail {
    height: 30rem;
  }

  section.news .news-row {
    width: 100%;
  }
}
@media (max-width: 500px) {
  section.news .news-container {
    width: 100%;
  }
}
