.divFormQuiz {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ dos columnas iguales */
    gap: 0.5rem; /* Espacio entre columnas y filas */
    padding: 0.5rem;
    margin-bottom: 2rem;
    justify-items: center;
}
.sugerencias {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.sugerencias a{
    border-radius: 0.5rem;
    background: #f3f3f3;
}
.sugerencias a:hover{
    border:1px solid #c41e3a;
    border-radius: 0.5rem;
}
.sugerencia {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.sugerencia img {
  width: 100%;
  border-radius: 8px;
}
.divFormQuiz label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #f8f8f8;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.divFormQuiz label:hover {
    background: #f0f0f0;
    border-color: #999;
}

.quizForm {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.quizForm button {
    padding: 10px;
    border-radius: 0.3rem;
    color: #ffffff;
    cursor: pointer;
    border: 1px solid #a81729;
    background: #a81729;
}
.patronauto{
    border:1px solid #f3f3f3;
    min-width:300px;
    min-height:250px;
        margin-top: 5rem;
        margin-bottom: 1.5rem;
}
.patronbb{
        color: #c9c9c9;
    text-transform: uppercase;
    position: relative;
    font-size: 0.8rem;
    top: -22px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    pointer-events: none;
}
.caja {
  display: none;
  position: fixed;
  z-index: 10009;
  left: 0; top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0,0,0,0.6);
}
.caja-content {
      background: #fff;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    padding: 20px;
    /* width: 90%; */
    /* max-width: 500px; */
    /* border-radius: 10px; */
    text-align: center;
    
    position: relative;
}

.prelodauto{
      position: absolute;
    top: 5px;
    left: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #ededed;
     pointer-events: none;
    user-select: none;
}
#closebet {
      position: absolute;
    top: -5px;
    right: 15px;
    cursor: pointer;
    font-size: 30px;
    color: #cdcdcd;
}

#closebet:hover{
    color:#333;
}

#fun-fact{
        pointer-events: none;
    user-select: none;
    color: #a3a3a3;
}








.toc {
    background: #f9f9f9;
    padding: 1em;
    border: none;
    margin: 2em 0;
    border-radius: 5px;
    border-left: 4px solid #a81729;
    display: flex;
    flex-direction: column;
    
}

.toc h2 {
  margin-top: 0;
}

.toc ul {
  list-style-type: none;
  padding-left: 0;
}

.toc li {
  margin-bottom: 0.3em;
}

.toc a {
  color: #007BFF;
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

.toc-wrapper {
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

/* Fade visual al final */
.fade {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 200px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #f9f9f9);
  transition: opacity 0.3s;
  pointer-events: none; /* evita bloquear clics */
}

/* Estado colapsado */
.toc-wrapper.collapsed {
  max-height: 250px; /* ajusta según diseño */
}

.toc-wrapper:not(.collapsed) .fade {
  opacity: 0; /* ocultar fade al expandir */
}

/* Botón */
.toc-toggle {
  margin-top: 8px;
  background: #f9f9f9;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
}

.toc-toggle:hover {
  background: transparent;
}


  .align-svg-post {
  display: inline-flex; /* clave para alinear ícono y texto */
  align-items: center;
  text-decoration: none;
  transition: background 0.3s;
}
.align-svg-post svg{
  /*color: #710303;*/
 /* margin-right: 5px; /* un poco más cómodo visualmente */
 /* width: 18px;*/
 /* height: 18px;*/
  flex-shrink: 0; /* evita que se encoja si hay poco espacio */

}

    /* Mejora de accesibilidad */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 6px;
      background: #000;
      color: #fff;
      padding: 8px;
      text-decoration: none;
      z-index: 9999;
      transition: top 0.3s;
    }
    
    .skip-link:focus {
      top: 6px;
    }

    /* Contenedor principal para el post */
    #post-container {
      max-width: 100%;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    /* Estilos para estados de carga y error */
    .loading, .error {
      text-align: center;
      padding: 3rem 2rem;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      margin: 2rem 0;
    }

    .loading {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .error {
      background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
      color: #c53030;
    }

    /* Estilos para el artículo detallado */
    .post-detail {
      /*background: white;*/
      border-radius: 15px;
      /*box-shadow: 0 5px 20px rgba(0,0,0,0.1);*/
      overflow: hidden;
      margin-bottom: 0.5rem;
      
      
    }

    .post-detail header {
      padding: 0.2rem;
      background: white;
      color: #333;
    }

    .post-detail h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      padding: 0 1rem 0 1rem;
      color: #333;
      line-height: 1.2;
    }
    .post-detail nav{
    margin-top: 0.4rem;
    padding-top: 0.56rem;
    display: flex;
    margin-bottom: 1.1em;
    border-top: transparent;
    justify-content: center;
    align-items: center;
    }

    .post-detail-img {
      width: 100%;
      height: 400px;
      /*object-fit: cover;*/
      margin-bottom: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .post-categorias-header{
        display: flex; 
        justify-content: space-between; 
        padding: 1rem; 
        gap: 20px;
        align-items: center;
    }
    /*Estilos caja comentarios*/
     .post-detail-comment {
         /* background: white; */
    /* border-radius: 15px; */
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    border-radius: 0.5rem;
    /* margin-bottom: 2rem;*/
      
    }

    .post-detail-comment header {
      /*padding: 0.2rem;*/
      background: transparent;
      color: #333;
    }

    .post-detail-comment h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      padding: 0 1rem 0 1rem;
      color: #333;
      line-height: 1.2;
    }

    .post-detail-comment-img {
      width: 100%;
      height: 400px;
      /*object-fit: cover;*/
      margin-bottom: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    /*fin estilos caja comentarios*/
    
     /*Estilos caja ARTICULOS SUGERIDOS*/
     .post-detail-sugeridos {
      /*background: white;*/
      border-radius: 15px;
      /*box-shadow: 0 5px 20px rgba(0,0,0,0.1);*/
      overflow: hidden;
      margin-bottom: 2rem;
      
    }

    .post-detail-sugeridos header {
      padding: 0.2rem;
      color: #333;
    }

    .post-detail-sugeridos h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      padding: 0 1rem 0 1rem;
      color: #333;
      line-height: 1.2;
    }

    .post-detail-sugeridos-img {
      width: 100%;
      height: 400px;
      /*object-fit: cover;*/
      margin-bottom: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .related-posts{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .related-posts h3{
    text-align: center;
    color: #c41e3a;
    display: flex;
    gap: 0.3rem;
    font-size: 1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 10px;
    justify-content: center;
    }
    
    .card-related{
        display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    }
    
    .related-card{
    width: 280px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s ease;
    }
    
    .related-card a{
        color:#1c2835;
    }
    
    .related-card h4{
        margin: 0; 
        font-size: 1rem; 
        color: #1c2835;
    }
    /*fin estilos caja sugeridos*/

    .post-meta {
      margin: 1.5rem 0;
      padding: 0.5rem;
      background: transparent;
      border-radius: 5px;
      /*border-left: 4px solid #667eea;*/
    }

    .card-date-post {
      margin: 0;
      color: #666;
      font-weight: 500;
    }

    .reading-time {
      color: #474747;
    font-size: 0.9rem;
    background: #f8f9fa;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    }

.card-img-post {
  width: 100%;
  height: 250px;
  /*object-fit: cover;*/
  transition: transform 0.3s ease;
}

.card-post:hover .card-img-post {
  transform: scale(1.05);
}

.card-body-post {
  padding: 0.2rem;
}

.card-title-post {
  font-size: 1.5rem;
  margin: 0 0 0.8rem;
  font-weight: 600;
  color: #2c3e50;
  
  line-height: 1.3;
  text-decoration: none;
}
.card-title-post a{
    color: #2c3e50;
}

.card-post{
color:#7f8c8d;
}

.fa-calendar:before{
     content: "\f073";
    font-family: FontAwesome;
    color:#7f8c8d;
}
.card-date-post span:before{
    content: "\f073";
    font-family: FontAwesome;
}
.card-date-post {
  font-size: 0.9rem;
  color: #7f8c8d;
  /*margin-bottom: 1rem;*/
      padding: 0.5rem;
    border-radius: 0.5rem;
    background: #f8f9fa;
  font-weight: 500;
}
.reading-time span:before{
    content: "\f017";
    font-family: FontAwesome;
}
.card-excerpt-post {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-excerpt-post p {
  margin: 0;
}
    .meta {
        margin: 0 0 1.5rem 0;
        border-radius: 5px;
      padding: 1rem 2rem;
      background: transparent;
      border-top: none;
      border-bottom: none;
    }

    .meta div {
      margin-bottom: 0.5rem;
    }

    .badge {
          display: inline-block;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    /* color: white; */
    padding: 0.1rem 0.5rem;
    /* border-radius: 5px; */
    text-decoration: none;
    font-size: 0.8rem;
    /* margin-right: 0.5rem; */
    /* margin-bottom: 0.3rem; */
    text-transform: uppercase;
    /* letter-spacing: 0.1px;*/
    }
    .badge a{
        color: #9c3aff;
    }

    .badge-tag {
      display: inline-block;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    /* color: white; */
    padding: 0.1rem 0.5rem;
    /* border-radius: 5px; */
    text-decoration: none;
    font-size: 0.8rem;
    /* margin-right: 0.5rem; */
    /* margin-bottom: 0.3rem; */
    text-transform: uppercase;
    /* letter-spacing: 0.1px;*/
    }
    
    .badge-tag a{
        color: #20c997;
    }

    .post-detail-content {
      padding: 1rem;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .post-detail-content h2 {
      color: #333;
      margin-top: 2rem;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #a81729;
    }

    .post-detail-content h3 {
      color: #555;
      margin-top: 1.5rem;
      margin-bottom: 0.8rem;
    }

    .post-detail-content p {
      margin-bottom: 1.5rem;
    }

    .post-detail-content img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin: 1rem 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
.author-profile{
    display: flex;
    gap: 1rem;
    /* margin: 3rem 0; */
    padding: 1rem 2REM 1REM 2REM;
    background: #f9f9f9;
    border-radius: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.author-header{
    background: #ebebeb;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
}
    .post-detail-content blockquote {
      border-left: 4px solid #667eea;
      margin: 1.5rem 0;
      padding: 1rem 1.5rem;
      background: #f8f9fa;
      border-radius: 0 10px 10px 0;
      font-style: italic;
    }

    .post-detail-content ul, .post-detail-content ol {
      padding-left: 2rem;
      margin-bottom: 1.5rem;
    }

    .post-detail-content li {
      margin-bottom: 0.5rem;
    }

    .post-detail-content code {
      background: #f1f3f4;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      font-family: 'Courier New', monospace;
      font-size: 0.9em;
    }

    .post-detail-content pre {
      background: #f8f9fa;
      padding: 1rem;
      border-radius: 8px;
      overflow-x: auto;
      margin: 1rem 0;
    }

    .post-detail-content pre code {
      background: none;
      padding: 0;
    }

    /* Breadcrumbs */
    nav[aria-label="breadcrumb"] {
      margin-bottom: 2rem;
    }

    nav[aria-label="breadcrumb"] ol {
      list-style: none;
      padding: 0;
      display: flex;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: #666;
      background: white;
      padding: 1rem;
    }

    nav[aria-label="breadcrumb"] a {
      color: #667eea;
      text-decoration: none;
    }

    nav[aria-label="breadcrumb"] a:hover {
      text-decoration: underline;
    }

    /* Botones de navegación */
    .btn-post {
    display: inline-block;
    padding: 0.5rem 1.0rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #3d3d3d;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

    .btn-post:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    /* Compartir en redes sociales */
    .social-sharing {
      margin-top: 3rem;
      padding: 2rem;
      background: #f8f9fa;
     /* border-radius: 15px;*/
      text-align: center;
      border: 1px solid #dee2e6;
    border-right: none;
    border-left: none;
    }

    .social-sharing h3 {
      margin-bottom: 1.5rem;
      color: #2c3e50;
    }

    .social-sharing  div {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
.slot-matrona1{
    margin: 2rem 0;
}
.slot-matrona {
    /*padding: 1rem;*/
   /* background: #c9c9c9;*/
   /* border: 1px dashed #000000;*/
   /* border-radius: 5px 5px 0 0;*/
   /* text-align: center;*/
}

.floating-buttons {
  position: fixed;
  top: 50%;
 left: 2px; /* o cambia a `left: 10px;` para el lado izquierdo */
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 9998;
}

.floating-buttons button {
  background: #c41e3a;
  color: white;
  border: none;
  border-radius: 0.5rem;
  width: 46px;
  height: 46px;
  /*font-size: 1.4rem;*/
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.floating-buttons button:hover {
  background: #a61c32;
}
.sentinell {
  height: 1px;
  margin-bottom: 0;
  visibility: hidden;
}
.blocker-overlay {
  position: fixed;
  z-index: 9997;
  background: transparent;
  display: none;
  pointer-events: all;
  width: 3.1rem;
  height: 46px;
  right: 10px;
}
.anti-click-shield {
  position: fixed;
  top: 0;
  left: 0;
  width: 15vw;
  height: 100px; /* ajustable vía JS */
  background: transparent;
  display: none;
  z-index: 9996;
  pointer-events: all;
}




.boton-meta-like button{
    display: flex;
    gap: 0.2rem;
    /* justify-content: flex-end; */
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: #fff;
    color: #a81729;
    border: 1px solid #7b0404;
    cursor:pointer;
}





.recomendados-aleatorio{
    padding: 0.5rem;
    background: #f1f1f1;
    border-radius: 0.5rem;
    margin-bottom: 1.7rem;
}






/* Estilos opiniones*/
.opinions{
    color:#333;
    padding:0.5rem;
    border-radius: 0.5rem;
}
.opinion { 
      margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    
}
  .opinion a {
      font-weight:bold; 
      color:#ff4d4d; 
      text-decoration:none;
      }
  .opinion small {
      color:#666;
      }
      
      
    
    .feedbackModal1{
            padding: 0.5rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    }
    .feedbackModal p{
    pointer-events: none;
    user-select: none;
    padding: 0.5rem;
    }
    
      #feedbackModal{
          display: none;
           opacity: 0;
    transition: opacity 0.4s ease-out;
      }
      #feedbackModal.active {
    display: block;
    opacity: 1;
  }
 .feedbackModal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    padding: 0;
    border: none;
    z-index: 10009;
    border-radius: 0; /* sin bordes redondeados */
    overflow-y: auto; /* scroll si el contenido es largo */
    transition: all 0.4s ease;
 }     
 
 .feedbackModal h3{
     background: #c41e3a;
    padding: 1.1rem 0.5rem;
    font-size: 16pt;
    color: #e5e5e5;
 }
 
    .feedbackModal input{
        padding:10px;
        margin-top:10px; 
        border-radius: 0.3rem;
        border: 1px solid #959595;
    }  
    .feedbackModal textarea{
        padding:10px;
        width:100%; 
        margin-top:10px;
        border-radius: 0.3rem;
        resize: none;
        border: 1px solid #959595;
    }  
     .feedbackModal button{
        padding:10px;
        border-radius: 0.3rem;
    color: #ffffff;
    cursor: pointer;
    border: 1px solid #a81729;
    }  
    
    
     .opinions input{
        padding:10px;
        margin-top:10px; 
        border-radius: 0.3rem;
        border: 1px solid #afafaf;
    }  
 .opinions select{
        padding:10px;
        margin-top:10px; 
        border-radius: 0.3rem;
        border: 1px solid #afafaf;
    }  
     .opinions button{
        padding:10px;
        border-radius: 0.3rem;
    color: #a81729;
    border: 1px solid #a81729;
    }  
    
    
    
.opinionsposts {
    margin-top: 2rem;
    margin-bottom: 2rem;
    /*padding: 0.5rem;*/
    background: transparent;
    color: #333;
    border-radius: 0.5rem;
    flex-direction: column;
border-top: 1px solid #e1e1e1;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #efecec;
}


.opinionsposts p{
    color: #888;
    padding: 0.5rem;
}

.opinions-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.2rem;
    padding: 0.5rem 0;
    width: 100%;

    /* Ocultar scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE y Edge */
}

.opinions-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Hacer que en desktop el scroll sea suave */
.opinions-slider {
    scroll-behavior: smooth;
}
/* cada opinión ocupa el 100% del ancho visible */
.opinionpp {
    flex: 0 0 90%;
    scroll-snap-align: start;
    margin-top: 1rem;
    padding: 0.2rem;
    background: #ededed;
    color: #333;
    border-radius: 0.5rem;
}

.ppopinion {
   /* background: #ddd;*/
    padding: 0.2rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.opinionsposts .btn{
    padding:0.5rem;
    text-align: center;
}

.reportProblem{
border-top: 1px solid #cfcfcf;
    padding: 0.9rem;
}

.showReviews{
        color: #7f7d7d;
    padding: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
        margin-bottom: 0.5rem;
        
}

.showReviewsNo{
        padding: 0.5rem;
    background: #ededed;
    border-radius: 0.5rem;
}


.buttonLikeComment{
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #a81729;
    display: flex;
    gap: 0.2rem;
    font-size: 15px;
    color:#a81729;
    background: transparent;
    align-items: center;
    justify-content: flex-end;
    cursor:pointer;
}
.buttonLikeComment:hover{
    background: #a81729;
    color:#fff;
}




 .gio-lang-selector {
                       position: fixed;
    top: 110px;
    right: 20px;
    background: white;
    border: 1px solid #979797;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: Arial, sans-serif;
                    display:none;
                }
                .lang-selector-container {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }
                #gioLangSelect {
                    padding: 5px;
                    border: 1px solid #ddd;
                    border-radius: 4px;
                }
                #gioTranslateAll {
                    padding: 5px 10px;
                    /*background: #667eea;*/
                    color: white;
                    border: none;
                    border-radius: 4px;
                    cursor: pointer;
                }
                #gioTranslateAll:hover {
                    background: #5a6fd8;
                }
                .gio-parrafo.traducible {
                    cursor: pointer;
                    position: relative;
                    transition: all 0.2s ease;
                }
                .gio-parrafo.traducible:hover {
                    /*background-color: #f0f8ff;*/
                    transform: translateX(2px);
                }
                .gio-parrafo.traducible:before {
                    content: "🔄 Doble click para traducir ";
                    position: absolute;
                    background-color:#ccc;
                    left: -20px;
                    top:-25px;
                    opacity: 0;
                    transition: opacity 0.2s ease;
                }
                .gio-parrafo.traducible:hover:before {
                    opacity: 1;
                }
                .gio-parrafo.traducido {
                    /*background-color: #e8f5e8;*/
                    border-left: 3px solid #4caf50;
                    padding-left: 10px;
                }
                .gio-parrafo.danger {
                    /*background-color: #ffe6e6;*/
                    border-left: 3px solid #f44336;
                    padding-left: 10px;
                }
                .translation-loading {
                    opacity: 0.6;
                    pointer-events: none;
                }



@media (min-width: 768px) {
  .floating-buttons, .blocker-overlay {
    display: none !important;
  }
}


























    /* Responsive */
    @media (max-width: 768px) {
         .gio-lang-selector {
                    top: 110px;
        }
      .post-detail h1 {
        font-size: 2rem;
      }
         .article-text {
  max-width: 560px;
  margin: 0 auto;
  left:200px;
  padding: 0 1rem;
  line-height: 1.6;
}
      header h1 {
        font-size: 1.5rem;
      }

      .post-detail-content {
        padding: 0.3rem;
         box-sizing: border-box;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
      }

      .meta {
        padding: 1rem;
      }

      .social-sharing div {
       /* flex-direction: column;*/
        align-items: center;
      }

      nav[aria-label="breadcrumb"] ol {
       /* flex-direction: column;*/
        gap: 0.3rem;
      }
      nav[aria-label="breadcrumb-title"] li {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 250px;
      }
      
     
      
    }
    @media (max-width: 640px){
         .article-text {
  max-width: 550px;
  margin: 0 auto;
  left:200px;
  padding: 0 1rem;
  line-height: 1.6;
}
    }
    @media (max-width: 600px) {
         .article-text {
  max-width: 315px;
  margin: 0 auto;
  left:200px;
  padding: 0 1rem;
  line-height: 1.6;
}
  .btn-post .text {
    display: none;
  }
  .btn-post .icon {
    font-weight: bolder;
  }
  
}
@media (max-width: 460px){
     .post-categorias-header{
          flex-direction: column;
      }
}
@media (max-width: 400px){
     .article-text {
  max-width: 315px;
  margin: 0 auto;
  left:200px;
  padding: 0 1rem;
  line-height: 1.6;
}

}

/* Estilos si el usuario tiene activado modo oscuro */
