/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
@media(min-width: 768px){
  .breadcrumbs{
    font-size: 1.3rem;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #666;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #ccc;
}
.breadcrumbs__item a {
  color: var(--blanco, #fff);
  text-decoration: none;
}
.breadcrumbs__item--active {
  color: #f3f3f3;
  font-weight: 500;
}

/* Header del Artículo */
.news-article {
  max-width: 800px;
  margin: 0 auto;
  /* background: #fff; */
  /* padding: 2rem; */
  /* border-radius: 12px; */
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.05); */
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  overflow: hidden;
}

.news-article__top{
  background:var(--white);
  padding:28px 26px 20px;
  /* border-radius: inherit;  */
  /* flex-basis:150px */
}

.news-article__bottom{
  background:var(--dsg-navy-900);
  color:var(--white);
  padding:20px 26px 26px;
  font-size:13.8px;
  /* border-radius: inherit; */
  /* flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between; */
}


.news-card-compact__body,.news-card__bottom{background:var(--dsg-navy-900);color:var(--white);padding:20px 26px 26px;font-size:13.8px;flex:1;display:flex;flex-direction:column;justify-content:space-between;}
.news-card__bottom p{color:var(--gray-300);margin-bottom:16px;}

.news-article__title {
  font-size: 2.4rem;
  line-height: 1.25;
  /* color: #111; */
  color: var(--dsg-heading-blue);
  margin: 1rem 0;
}

.news-article__lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #444;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media(min-width: 768px){
  .news-article__lead{
    font-size: 1.5rem;
  }
}

.news-article__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #777;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

/* Media e Imagen Principal */
.news-article__media {
  width: 100%;
  max-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.news-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tipografía del Cuerpo */
.news-article__body {
  font-size: 1.8rem;
  line-height: 1.8;
  /* color: #2c2c2c; */
  color:var(--gray-300)
}
.news-article__body p {
  margin-bottom: 1.5rem;
}

/* Barra de Compartir */
.news-article__share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  background-color: transparent;
}
.share-bar__label{
  /* color: #444; */
  color: inherit;
}

.share-bar__buttons {
  display: flex;
  gap: 0.75rem;
}
.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f4f8;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-share:hover {
  background: var(--paleta-principal-isologo-3, #1898C6);
  color: #fff;
}

.btn-secondary{
  color: var(--ink);
  font-weight: var(--tipografia-medium);
  transition: all .3s ease;
}

.btn-secondary:hover{
  transform: scale(1.1);
}

.contenedor-relacionadas{
  background-color: var(--paper);
  width: 100%;
  padding: 1rem;
}

.btn-cargar-mas {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  /* border: 1px solid var(--paleta-principal-isologo-1, #1898C6); */
  /* background-color: #fff; */
  color: var(--paleta-principal-isologo-1, #1898C6);
  font-weight: 600;
  transition: all 0.2s ease;
}
@media(min-width:768px){
    .btn-cargar-mas{
        width: auto;
    }
}

/* .btn-cargar-mas:hover {
  background-color: var(--paleta-principal-botones, #1898C6);
  color: #fff;
} */