/* ── SECTION: noticia-body — layout only ── */

.noticia-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
.noticia-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.noticia-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
}
.card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem 1.1rem;
}
.card-source { display: flex; align-items: center; gap: .9rem; }
.source-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.source-info { display: flex; flex-direction: column; gap: .18rem; }
.source-name { font-size: 0.95rem; font-weight: 700; display: flex; align-items: center; gap: .35rem; }
.source-verified { display: flex; align-items: center; }
.source-meta { font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; gap: .35rem; }
.card-body { padding: 1.6rem 1.8rem 1.2rem; display: flex; flex-direction: column; gap: 1.15rem; }
.card-body p { font-size: 1rem; font-weight: 500; line-height: 1.82; }
.noticia-quote {
  margin: .5rem 0; padding: 1.4rem 1.6rem;
  border-radius: 16px; position: relative; overflow: hidden;
}
.noticia-quote::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
}
.quote-content { font-size: 1rem; font-weight: 500; line-height: 1.82; font-style: italic; padding-left: .5rem; }
.photo-credit { display: flex; align-items: center; gap: .4rem; font-size: 0.78rem; font-weight: 500; padding-top: .25rem; }
.card-image-wrap { position: relative; line-height: 0; }
.card-image-wrap img { width: 100%; height: auto; display: block; filter: brightness(0.92) saturate(1.05); }
.image-overlay { position: absolute; inset: 0; pointer-events: none; }
.image-badge {
  position: absolute; bottom: 1rem; right: 1rem;
  border-radius: 50px; padding: 5px 12px; font-size: 0.72rem; font-weight: 600;
  display: flex; align-items: center; gap: .4rem;
  backdrop-filter: blur(8px);
}
.card-footer { display: flex; align-items: stretch; }
.footer-action {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem .5rem; background: none; border: none; cursor: pointer;
  font-family: 'Quicksand', sans-serif; font-size: 0.82rem; font-weight: 600;
  transition: all .2s ease; position: relative; text-decoration: none;
}
.footer-action:last-child { border-right: none; }
.footer-action::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 2px; transform: scaleX(0); transition: transform .25s ease;
}
.footer-action:hover::after { transform: scaleX(1); }
.relacionados { border-radius: 20px; overflow: hidden; }
.relacionados-header {
  display: flex; align-items: center; gap: .6rem; padding: 1.1rem 1.5rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
}
.relacionados-list { padding: .5rem 0; }
.rel-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; transition: background .2s; text-decoration: none; }
.rel-item:last-child { border-bottom: none; }
.rel-thumb { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; overflow: hidden; }
.rel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rel-info { display: flex; flex-direction: column; gap: .25rem; }
.rel-title { font-size: 0.88rem; font-weight: 600; line-height: 1.4; }
.rel-meta { font-size: 0.72rem; font-weight: 500; }
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  padding: 1rem 1.5rem; border-radius: 14px; font-size: .9rem; font-weight: 600;
  border-left: 3px solid; z-index: 99999;
  display: flex; align-items: center; gap: .75rem;
  transform: translateY(100px); opacity: 0; transition: all .35s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 640px) {
  .noticia-wrap { padding: 1.5rem 1rem 4rem; }
  .card-body { padding: 1.3rem 1.2rem 1rem; }
  .card-top { padding: 1.1rem 1.2rem; }
  .footer-action span { display: none; }
  .footer-action { gap: 0; }
}
