.news-template-container {
  padding-top: 1.5rem;

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .bloque__single-noticia-autor-opciones {
    width: 4rem;
  }

  .social-container {
    display: flex;
    gap: 2.5rem;
    padding-right: 6.5rem;
  }

  h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    padding-bottom: 2.5rem;
  }

  h2 {
    font-size: 2rem;
    font-family: var(--font-body-book);
    line-height: 2.75rem;
    font-weight: 300;
  }

  h2.keep-reading {
    font-family: var(--font-heading);
  }

  .redes-sociales {
    background: var(--bbva-primary-color);
    border-radius: 1rem;
  }

  .redes-sociales__container {
    display: flex;
    flex-direction: column;
  }

  .show-social {
    padding: 1rem;
  }

  .social-icon{
  width: 2rem;
  height: 2rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  }

  .more-icon-container {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1.5rem 1.25rem;
  }

  .more-icon-container::-webkit-details-marker {
    display: none;
  }

  .more-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    cursor: pointer;
  }

  .news-actions-menu {
    position: relative;
  }

  .news-actions-menu[open] .noticia-opciones__opciones--tooltip {
    display: block;
  }

  .noticia-opciones__opciones--tooltip {
    background: var(--bbva-container-background);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(18, 18, 18, 0.12);
    display: none;
    min-width: 220px;
    padding: 1rem 1.25rem;
    position: absolute;
    left: 1.125rem;
    margin-top: 1.25rem;
  }

  .noticia-opciones__opciones--tooltip::before {
    content: "";
    border-style: solid;
    border-width: 0.9375rem 0.9375rem 0 0.9375rem;
    border-color: transparent transparent transparent var(--bbva-container-background);
    position: absolute;
    left: 0.75rem;
    top: -0.9375rem;
  }

  .noticia-opciones__opciones--tooltip a {
    align-items: center;
    color: var(--bbva-primary-color);
    display: flex;
    font-family: var(--font-body-book);
    font-size: 1rem;
    gap: 0.75rem;
    text-decoration: none;
  }

  .noticia-opciones__opciones--tooltip a i[class^="bbva-"],
  .noticia-opciones__opciones--tooltip a i[class*=" bbva-"] {
    font-family: 'coronita';
    font-size: 1.125rem;
    line-height: 1;
  }
}

.news-template-section {
  img {
    border-radius: 1rem;
    width: 100%;
    max-width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  p {
    border-radius: 1rem;
    width: 100%;
    max-width: 100%;
    height: fit-content;
  }

  iframe {
    border-radius: 1rem;
    width: 100%;
    height: 31.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  p:first-child {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }

  p {
    font-size: 1.3rem;
    line-height: 2.5rem;
    margin-bottom: 2.5rem;
  }

  h1 {
    padding-left: 6.625rem;
    padding-right: 6.625rem;
    line-height: 4rem;
    padding-bottom: 2.5rem;
  }

  h2 {
    font-family: var(--font-body-book);
    padding-bottom: 1.5rem;
  }

  a {
    font-size: 1.3rem;
    text-decoration: underline;
  }

  li {
    font-size: 1.3rem;
    line-height: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--bbva-primary-color-dark);
    font-family: var(--font-body-book);
  }

  li b,
  li strong {
    display: contents;
  }

  ul li::before {
    content: url(../img/bullet.svg);
    transform: rotate(0deg);
    padding-right: 0.55rem;
    font-size: 0.625rem;
    position: relative;
    bottom: 0.5rem;
  }
}

.single__noticia-datos {
  display: flex;
}
.categoria-fecha {
  display: flex;
  margin-left: 0.625rem;
  gap: 0.625rem;
}

.keep-reading {
  padding-top: 1.5rem;
}

.bloque__single-etiquetas-footer .categories-tags {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
  padding-bottom: 1.5rem;
}

.container-fluid {
  background: var(--bbva-container-background, #fff);
  border-radius: 1rem;
  margin: 1.25rem;
}

.mobile-share-widget {
  display: none;
}

/* --- Mobile --- */
@media (max-width: 1024px) {
  .mobile-share-widget {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0 1.5rem;
  }

  .news-template-container .container {
    margin-inline: 1rem;

    .bloque__single-noticia-autor-opciones {
      display: none;
    }
  }

  .mobile-share-widget__items {
    display: flex;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    background: var(--bbva-primary-color);
    border-radius: 1rem;
  }

  .mobile-share-widget.is-open .mobile-share-widget__items {
    max-height: 4rem;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-share-widget__item {
    width: 3rem;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-share-widget.is-open .mobile-share-widget__item {
    transform: scale(1);
    opacity: 1;
  }

  .mobile-share-widget.is-open .mobile-share-widget__item:nth-child(1) { transition-delay: 0.04s; }
  .mobile-share-widget.is-open .mobile-share-widget__item:nth-child(2) { transition-delay: 0.08s; }
  .mobile-share-widget.is-open .mobile-share-widget__item:nth-child(3) { transition-delay: 0.12s; }
  .mobile-share-widget.is-open .mobile-share-widget__item:nth-child(4) { transition-delay: 0.16s; }

  .mobile-share-widget__item .social-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .mobile-share-widget__close {
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
  }

  .mobile-share-widget__close svg {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--bbva-container-background);
  }

  .mobile-share-widget__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    align-self: flex-start;
  }

  .mobile-share-widget__toggle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--bbva-primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-share-widget__toggle svg {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--bbva-container-background);
  }

  .new-template-header.section__header > * {
    display: none;
  }

  .news-template-container .social-container {
    padding-right: 0;
    height: auto;
  }

  .news-template-section {
    padding-left: 0;
    padding-right: 0;
  }

  .news-template-section p:first-child,
  .news-template-section p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .news-template-container .social-container h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .news-template-section h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: start !important;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .news-template-section iframe {
    height: 15.625rem;
  }

  .news-template-section h2 {
    font-size: 1.5rem;
  }

  .news-template-section a {
    font-size: 1.125rem;
  }

  .container-fluid {
    margin: 1rem;
  }

  .keep-reading {
    padding-top: 1.5rem;
  }

  .bloque__single-etiquetas-footer .categories-tags {
    justify-content: center;
    padding-bottom: 2.5rem;
  }

  .news-template-section li {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .news-template-section ul li::before {
    bottom: 0.25rem;
  }

  .news-template-container .breadcrumb-wrapper {
    height: auto;
  }

  .news-template-container .breadcrumb{
    padding-left: 0px;
  }

  .news-template-container .breadcrumb-wrapper .breadcrumb {
    flex-wrap: nowrap;
  }

  .news-template-container .breadcrumb-wrapper a {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .news-template-container .breadcrumb-wrapper span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20vw;
  }

}