.banner-blog-news {
    background: url("/assets/img/pagina-noticias/top-banner/img-background-menu-siapec3\ \(1\).png")
      center center / cover no-repeat;
  }
  
  .banner-blog-news::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(179deg, rgba(38, 20, 18, 0) 0%, rgba(0, 0, 0, 0.356) 100%);
    z-index: 0;
  }

  .blog-post-sm {
    background: #fff;
    padding: 90px 20px;
  }
  
  .blog-post-sm__container {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .blog-post-sm__image-wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 920px;
    overflow: hidden;
    padding-inline: 20px;
    border-radius: 8px;
  }
  
  .blog-post-sm__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }

  .blog-post-sm__wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 900px;
  }
  
  .blog-post-sm__meta {
    margin-top: 30px;
  }
  
  .blog-post-sm__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .blog-post-sm__tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
  }

  .blog-post-sm__title {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: #111;
  }

  .blog-post-sm__content h2 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .blog-post-sm__content h3 {
    font-size: 1rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .img-post-flutuante {
    float: left;
    max-width: 40%;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  
  .blog-post-sm__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .blog-post-sm__author-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .blog-post-sm__avatar-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .blog-post-sm__avatar {
    width: 100%;
    max-width: 40px;
    object-fit: cover;
    object-position: center;
  }
  
  .blog-post-sm__author-date {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .blog-post-sm__author {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    padding-right: 10px;
  }
  
  .blog-post-sm__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
  }

  .blog-post-sm__share img {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .blog-post-sm__share img:hover {
    opacity: 0.7;
  }
  
  .blog-post-sm__share a,
  .blog-post-sm__share button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
    padding: 0;
  }
  
  .blog-post-sm__share a:hover,
  .blog-post-sm__share button:hover {
    color: #000;
  }
  
  .blog-post-sm__content {
    margin-top: 30px;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    text-align: justify;
  }

  .blog-post-sm__content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
    list-style-type: disc;
  }

  .blog-post-sm__content li {
    margin-bottom: 0.5rem;
  }
  
  .blog-post-sm__source {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #666;
  }
  
  .blog-post-sm__source a {
    color: #0d6efd;
    text-decoration: underline;
  }

  /* Responsivo */
  @media (max-width: 768px) {
    .blog-post-sm__title {
      font-size: 1.6rem;
    }
  
    .blog-post-sm__info {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .blog-post-sm__share {
      justify-content: flex-start;
    }
  }