section.noticias_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

a:hover{
  color: #99c3ff !important;
}

.titulo_section {
  font-size: 4rem;
  font-weight: bold;
  font-family: "corbel-bold";
}

section.noticias_wrapper > div {
  align-self: flex-start;
  text-align: left;
}

section.noticias_wrapper > div > h1 {
  font-size: 2rem;
  text-align: center;
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem;
  line-height: 50px;
}

section.noticias_wrapper > div > h5 {
  text-align: center;
}

article.noticia {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

article.noticia > section:first-of-type {
  display: flex;
  justify-content: flex-start;
}

article.noticia > section:first-of-type img {
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
}

article.noticia > section:last-of-type {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0 2rem;
  gap: 1rem;
}

article.noticia > section:last-of-type > h3 > span {
  background-color: #a6173e;
  border-radius: 10px;
  color: white;
  padding: 5px 10px;
}

article.noticia > section:last-of-type > h1 {
  font-size: 1.5rem;
  line-height: normal;
}

article.noticia > section:last-of-type > article.contacto {
  display: flex;
  gap: 1rem;
  align-items: center;
}

article.noticia > section:last-of-type > article.contacto img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 1024px) {
  article.noticia {
    display: grid;
    grid-template-columns: 2fr 5fr;
  }

  section.noticias_wrapper > div > h1 {
    align-self: flex-start;
    text-align: left;
  }

  section.noticias_wrapper > div > h5 {
    align-self: flex-start;
    text-align: left;
  }

  .titulo_section {
    font-size: 300px;
    word-spacing: 50px;
    line-height: 50px;
  }
}
