.noticia {
  margin: 48px 0;
}

.noticia > div {
  display: flex;
  gap: 20px;
}

@media screen and (min-width: 1200px) {
  .noticia > div .ads {
    width: 300px;
  }
}

@media screen and (max-width: 1200px) {
  .noticia > div {
    flex-direction: column-reverse;
  }

  .noticia > div .ads {
    display: flex;
    gap: 20px;
  }

  .noticia > div .ads .ultralife-slider {
    width: 300px;
  }
}

@media screen and (max-width: 540px) {
  .noticia > div .ads {
    flex-direction: column;
  }

  .noticia > div .ads .ultralife-slider {
    width: 100%;
  }
}

.noticia > div .conteudo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noticia--categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.noticia--tag {
  background: #e8f0fe;
  color: #1a56db;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
}

.noticia--tag:hover {
  background: #c7d9fc;
}

.noticia--titulo {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #111;
}

.noticia--resumo {
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  border-left: 3px solid #ccc;
  padding-left: 14px;
  margin: 0 0 20px;
  line-height: 1.6;
}

.noticia--meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.noticia--meta-esquerda {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.noticia--autor {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.noticia--fonte {
  font-size: 12px;
  color: #6b7280;
}

.noticia--meta-direita {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}

.noticia--meta-direita span::before {
  content: "·";
  margin-right: 8px;
}

.noticia--meta-direita span:first-child::before {
  content: none;
}

.noticia--compartilhar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
}

.noticia--redes {
  display: flex;
  gap: 8px;
}

.noticia--rede {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.noticia--rede:hover {
  opacity: 0.85;
}
.noticia--rede-whatsapp {
  background: #25d366;
}
.noticia--rede-facebook {
  background: #1877f2;
}
.noticia--rede-telegram {
  background: #229ed9;
}

.noticia--figura {
  margin: 0 0 28px;
}

.noticia--imagem {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.noticia--legenda {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 6px;
}

.noticia--corpo {
  font-size: 1rem;
  line-height: 1.8;
  color: #1f2937;
  margin-bottom: 32px;
}

.noticia--corpo p {
  margin: 0 0 1.2em;
}
.noticia--corpo h2,
.noticia--corpo h3 {
  font-weight: 700;
  margin: 1.5em 0 0.5em;
}
.noticia--corpo a {
  color: #1a56db;
}

.noticia--rodape {
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-bottom: 40px;
}

.noticia--rodape p {
  margin: 2px 0;
}

.noticias-relacionadas {
  margin-bottom: 48px;
}

.noticias-relacionadas .wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 1000px) {
  .noticias-relacionadas .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .noticias-relacionadas .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
