/* estilo base plugin noticia card manual */
.noticia-card {
  max-width: 700px;
  margin: 30px auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.noticia-card h3.titulo {
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.noticia-card .corpo {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.noticia-card .corpo img {
  width: 150px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.noticia-card .resumo {
  font-size: 15px;
  color: #444;
  flex: 1;
}
.noticia-card .rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  flex-wrap: wrap;
}
.noticia-card .logo {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: cover;
  vertical-align: middle;
  margin-right: 6px;
}
.noticia-card .portal-nome {
  font-weight: bold;
  font-size: 15px;
}
.noticia-card .botao-noticia {
  display: inline-block;
  margin-top: 10px;
  background-color: #0055ff;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.4s;
}
.noticia-card .botao-noticia:hover {
  background-color: #ccd7ff;
  color: #111;
}
.share-dropdown {
  position: relative;
}
.share-toggle {
  cursor: pointer;
  font-size: 20px;
}
.share-menu {
  display: none;
  position: absolute;
  background: #f4f4f4;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 4px;
  top: 25px;
  right: 0;
  z-index: 99;
}
.share-menu a {
  display: block;
  font-size: 14px;
  margin: 3px 0;
  text-decoration: none;
  color: #333;
}
.share-menu.active {
  display: block;
}
