:root {
  --gris:#f1f1f1;
  --blanco:white;
  --blancoRoto:#f2f2f2;
  --negro:#000000;
  --colorPrimario:#6f87b6;
  --grisClaro: #ddd;
  --colorSecundario:#0026cc;
  --azulgris:#6C7890;
  --fuente:'Yanone Kaffeesatz', sans-serif;
  --fuenteTitulo: 'Archivo', sans-serif;;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--gris);
}

h2 {
  font-family: var(--fuenteTitulo);
}

h4 {
  text-align: center;
  font-size: large;
}

.link {
  text-decoration: none;
}

/*Flecha hacia arriba*/
.ir-arriba {
  display: none;
  background-repeat: no-repeat;
  font-size: 20px;
  color:var(--colorPrimario);
  cursor: pointer;
  position: fixed;
  bottom: 12px;
  right: 10px;
  z-index: 2;
}
/* CARGANDO IMAGEN */
.lazy {
  opacity: 0.5;
  filter: blur(5px);
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Menú*/
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* padding: 0 20px; */
        height: 60px;
        background-color: var(--azulgris);
        position: relative;
    }

    .navbar-left {
        display: flex;
        align-items: stretch;
        gap: 20px;
    }

    .logo {
        height: 100%;
        width: 80px;
        padding: auto;
        margin: auto;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        margin: 0 10px;
    }

    .nav-menu a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        font-size: large;
    }

/* Buscador */
    .navbar-search {
        display: flex;
        align-items: center;
    }

    .navbar-search input {
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 3px 0 0 3px;
    }

    .navbar-search button {
        padding: 5px 8px;
        border: 1px solid #ccc;
        background-color: #ddd;
        border-radius: 0 3px 3px 0;
        cursor: pointer;
    }

/* Botón responsive */
    .nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .navbar-left {
            /* flex-direction: column;
            align-items: flex-end; */

            width: 100%;
        }

        .nav-menu {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: var(--azulgris);
            position: absolute;
            top: 60px;
            left: 0;
            .image img {
            object-fit: cover;
            margin: 0 auto;
            border-radius: 4px;
            }
            /* border-top: 1px solid #ddd; */
            padding: 10px 0;
        }

        .nav-menu li {
            width: 100%;
            text-align: center;
            margin: 10px 0;
        }

        .nav-menu.show {
            display: flex;
        }

        .nav-toggle {
            display: block;
            position: absolute;
            right: 20px;
            top: 15px;
            color: #fff;
        }

        #search {
            display: none;
        }
    }

/* Left column */
    .leftcolumn {
        float: left;
        width: 78%;
        /* Padding left column*/
        padding-left: 10px;
    }

/* Add a card effect for articles */
    .card {
        background-color: var(--blanco);
        padding: 15px;
        margin-top: 10px;
        border-radius: 10px;
        -webkit-box-shadow: 0 0 28px rgba(0, 0, 0, .08);
        box-shadow: 0 0 28px rgba(0, 0, 0, .08)
    }

/****PROPIEDADES DEL ARTICULO, TÍTULO, LINK,IMAGEN...*****/
    .post-header {
        margin-bottom: 20px;
    }

    .post-title {
        font-size: 1.5rem;
        margin: 0 0 10px;
        color: #222;
    }
    .post-title:hover {
        color: var(--colorPrimario);
        text-decoration: none;
    }

    .post-tema {
        color: var(--colorPrimario);
        font-family: var(--fuenteTitulo);
        text-decoration: none;
    }
    .post-tema:hover {
        color: var(--colorSecundario);
        text-decoration: none;
    }

    .temas {
        display: flex;              /* coloca los elementos en línea */
        align-items: center;        /* centra verticalmente */
        flex-wrap: nowrap;          /* evita que se parta en varias líneas */
        gap: 5px;                   /* espacio entre elementos */

        font-size: clamp(0.9rem, 2vw, 1rem);
        color: #222;
        margin-bottom: 10px;

        overflow: hidden;           /* opcional, evita desbordes */
        text-overflow: ellipsis;    /* opcional, pone "..." si se corta */
        white-space: nowrap;        /* fuerza todo en una sola línea */
    }
    .temas a {
        color: var(--colorPrimario);
        font-family: var(--fuenteTitulo);
        text-decoration: none;
    }
    .temas a:hover {
        color: var(--colorSecundario);
        text-decoration: none;
    }

    .temas .visitas {
        font-size: 15px;
    }

    /* Contenedor meta single post */
    .post-meta {
        display: flex;
        flex-wrap: wrap;  /* permite que baje a varias líneas en móviles */
        gap: 10px;        /* separación entre elementos */
        font-size: clamp(0.85rem, 2vw, 1rem);
        color: #777;
        margin-top: 10px;
    }

    .post-meta span {
        display: inline-block;
        margin-right: 10px;
    }

    .categoria {
        font-family: var(--fuenteTitulo);
        font-weight: 500;
        color: #222;
        text-decoration: none;
    }
    .categoria:hover {
        color: var(--colorPrimario);
        text-decoration: none;
    }

    /* Fake image post */
    .fakeimg {
        image-rendering: auto;
        text-align: center;
        padding-bottom: 20px;
    }

    .fakeimg img {
        width: 40%;
        margin: 0 auto;
        border-radius: 4px;
    }

    /* 📱 Móviles pequeños */
    @media (max-width: 480px) {
        .card {
            padding: 12px;
        }
        .post-title {
            font-size: 20px;
            text-align: center;
            margin: 0 auto 10px;
        }
        .post-meta {
            flex-direction: column; /* apila en columna */
            align-items: center;
            text-align: center;
            gap: 5px;
        }
        .post-content {
            font-size: 0.85rem;
        }

        .temas {
            justify-content: center; /* centra horizontalmente */
            text-align: center;
        }

        .categoria a {
            display: block;
            margin-top: 5px;
            /* text-align: center; */
        }

        .post-tema {
            display: inline-block;
            margin-top: 5px;
        }

        .image img {
            max-width: 100%;
        }

        .card a.link {
            display: block;
            text-align: center;

        }
    }

    /* 💻 Pantallas grandes */
    @media (min-width: 1200px) {
        .post-meta {
            font-size: 1rem;
            gap: 15px;
        }
    }

/* ABOUT  */
/* .portada {
  width: 100%;
  height: auto;
}
.about {
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: center;
} */

/* SLIDER PORTADA */
    .swiper {
        width: 100%;
        max-height: 650px;
    }

    .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    .slide-title {
        position: absolute;
        top: 50%; /* centrado vertical */
        left: 50%; /* centrado horizontal */
        transform: translate(-50%, -50%);
        color: #fff;
        font-family: var(--fuente);
        font-size: 50px; /* responsive */
        text-align: center;
        font-weight: bold;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* mejora visibilidad */
        padding: 0.5rem 1rem;
    }

    @media (max-width: 768px) {
        .slide-title {
            font-size: 1.25rem;
        }
        .swiper {
            max-height: 300px;
        }
    }

    @media (max-width: 480px) {
        .slide-title {
            font-size: 25px;
        }
        .swiper {
            max-height: 200px;
        }
    }

/*Titulos de la columna derecha*/
article > h3 {
    margin-top: auto;
    text-align: center;
    background-color: var(--colorPrimario);
    color: var(--blanco);
    border-radius: 6px;
}

/* Estilo del formulario */
.filter-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaciado entre elementos del formulario */
}

/* Etiquetas del formulario */
.filter-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

/* Estilo de los selectores */
.filter-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.filter-form select:focus {
    border-color: #007bff;
    outline: none;
}

/* Botón de envío */
.filter-form button {
    background-color: var(--colorPrimario);
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-form button:hover {
    background-color: var(--colorSecundario);
}

/* banner alerta */
.alert {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
/* Right column */
    .rightcolumn {
        float: left;
        width: 22%;
        padding-left: 12px;
        /* Padding right column*/
        padding-right: 10px;
    }
/*formato de los temas */
    #temas {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #temas li {
        display: flex;              /* Para que texto y burbuja estén alineados */
        align-items: center;
        justify-content: space-between; /* Texto a la izquierda, burbuja a la derecha */
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        flex-wrap: wrap;          /* Evita que el texto se divida en varias líneas */
    }

    #temas li a {
        flex: 1;
        text-decoration: none;
        color: inherit;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    #temas li small.posts {
        display: inline-block;
        background-color: var(--colorPrimario);
        color: white;
        font-size: 0.8em;
        padding: 2px 7px;
        border-radius: 999px;
        min-width: 20px;
        text-align: center;
        font-weight: bold;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    #temas li:hover {
        background-color: var(--azulgris);
        color: white; /* Esto afecta al texto del enlace automáticamente */
        transform: scale(1.02);
    }

    #temas li:hover small.posts {
        background-color: white;
        color: var(--azulgris);
    }

    #temas > li {
        position: relative;
        margin: 10px 0;
        padding: 12px 15px;
        background: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .accordion {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        font-weight: bold;
        font-size: 1rem;
        cursor: pointer;
        padding: 8px;
        color: #2c3e50;
    }
    .accordion:hover { color: #fff; }

    .children {
        display: none;
        margin: 0;
        padding-left: 15px;
    }
    .children li a {
        color: #495057;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .children li a:hover { color: var(--azulgris); }

/*foto links Redes Sociales*/

.foto {
    width: 50px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}
.social a {
    text-decoration: none;
}
/* IMAGEN DE LA PORTADA */
  .imagen {
    width: 86%;
  }

/* Estilo básico para la galería */
    figure {
        margin:0;
    }

    #gallery {
        max-width: 800px;
        margin: auto;
        overflow: hidden;
        position: relative;
    }

    .gallery-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .gallery-item {
        min-width: 100%;
        box-sizing: border-box;
    }

    .gallery-item img {
        width: 100%;
        display: block;
        border-radius: 4px;
    }

    /* Navegación de la galería */
    .gallery-navigation {
        display: flex;
        justify-content: space-between;
        width: calc(100% - 40px);
        margin: 0 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }

    .nav-button {
        background-color: rgba(0,0,0, .3);
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
    }
    .nav-button > span {
        font-size: 30px;
    }
    .nav-button:hover {
        background-color: var(--colorPrimario);
    }

    /* Paginación */
    .swiper-pagination-bullet {
        background: #007BFF;
        opacity: 0.8;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1.2);
    }


/* Paginación post  */
.prev-next-posts {
    background-color: var(--blanco);
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.prev-next-posts .nav-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.prev-next-posts .nav-item {
    flex: 1;
    min-width: 45%;
    display: flex;
    flex-direction: column;
}

.prev-next-posts .label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.25rem;
}

.text-end {
    text-align: end;
}
.titlePost {
    font-size: 1.2rem;
    color: #007bff;
    text-decoration: none;
}

@media (max-width: 576px) {
    .prev-next-posts .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .prev-next-posts .nav-item {
        text-align: center !important;
        min-width: 100%;
    }

    .post-title {
        white-space: normal;
    }
}

/* Estilo del contenido del artículo */
.related-posts {
    padding: 1rem;
    background-color: var(--blanco);
    border-radius: 0.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
}

.related-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.related-post-card {
    flex: 1 1 calc(33.333% - 1rem);
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.related-post-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.related-post-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 0.75rem;
}

.related-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid #dee2e6;
}

.related-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #007bff;
}

.related-title:hover {
    text-decoration: underline;
    color: #0056b3;
}

.related-content {
    padding: 0.75rem 1rem 1rem;
}

.related-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0.25rem 0 0.5rem;
    margin-bottom: auto;
}

.related-excerpt {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}


.related-post-card .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    margin-top: auto;
    display: inline-block;
    background-color: transparent;
    border-color: #007bff;
    color: #007bff;
    transition: all 0.2s ease;
}

.related-post-card .btn-primary {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
}

.related-post-card .btn:hover {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
}


@media (max-width: 768px) {
    .related-post-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .related-post-card {
        flex: 1 1 100%;
    }
}


/* Image portada post */
    .image {
        display: flex;
        align-items: center;     /* centra verticalmente */
        justify-content: center; /* centra horizontalmente */
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }
    .image img {
        object-fit: cover;
        margin: 0 auto;
        border-radius: 4px;
        }

    /* Ajustes para móviles pequeños */
    @media (max-width: 480px) {
        .image img {
            max-width: 100%;  /* que use todo el ancho */
            border-radius: 2px;
        }
    }

    /* Ajustes para tablets */
    @media (min-width: 481px) and (max-width: 768px) {
        .image img {
            max-width: 90%; /* un poco de margen a los lados */
        }
    }

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    transition: 0.3s;
}

.modal-content-wrapper {
    text-align: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}

.close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

#caption {
    margin: 15px auto;
    text-align: center;
    color: #ccc;
    font-size: 18px;
}

/* TEXTO ARTICULO CENTER */
.texto {
  border-left: 2rem
}
/******* CONTACTO *******/
/* .expancion {
  background-color: var(--blanco);
  padding: 14px;
  margin-top: 10px;
  width: 100%;
} */

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn, .imagen, .fakeimg img {
    width: 100%;
    padding: 0;
    height: auto;
  }
}

/***PROPIEDADES DEL MENÚ***/
ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
}
/* Contenedor de la paginación */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    padding: 8px;
}

/* Estilos para cada elemento de paginación */
.page-item {
    margin: 0 4px;
}

/* Enlace de página activa */
.page-item.active .page-link {
    background-color: var(--colorPrimario);
    color: #fff;
}

/* Estilos para los enlaces de página */
.page-link {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #979797;
    border-radius: 4px;
    display: block; /* Hace que los enlaces ocupen toda la anchura por defecto */
    margin: 5px auto; /* Ajusta el margen para centrar */
}

.page-item {
    margin: 0 4px; /* Añadido el margen para espaciado entre enlaces */
}

.page-link:hover:not(.active) {
    background-color: var(--grisClaro);
    border: 1px solid #979797;
}

/* Desactivar enlaces de página anteriores y siguientes */
.page-item.disabled .page-link {
    background-color: var(--grisClaro);
    border: 1px solid #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
}

/* Estilos para el contenedor de información de paginación */
.pagination-info {
    margin-top: 12px; /* Espacio superior */
    text-align: center; /* Centra el texto */
    font-size: 16px; /* Tamaño de fuente */
    color: #000000; /* Color de texto */
}

.pagination-simple {
    display: none !important;
}

@media (max-width: 480px) {
    ul.pagination  {
        display: none !important;
    }
    .pagination-simple {
        display: flex !important;
        justify-content: center;
    }
}
.share-buttons-container {
    display: flex;
    justify-content: flex-start; /* Alinea a la izquierda */
    margin-top: 40px;
}

.share-list {
    text-align: left; /* Alinea el texto a la izquierda */
}

.fb-h {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
}

.fb-h img {
    width: 40px; /* Ajusta el tamaño del icono según tus necesidades */
    height: auto;

}

.button-text {
    margin-left: 10px; /* Ajusta el espacio entre el icono y el texto según tus necesidades */
    font-size: 14px; /* Ajusta el tamaño del texto según tus necesidades */
}
