:root {
    --gold: var(--color-principal);
    --gold-dark: #b8911e;
    --bg: #ffffff;
    --text: #1a1a1a;
}

html,
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
}


.blog-section {
    padding: 3rem clamp(40px, 9vw, 110px);
    background: #fff;
}


.blog-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 0 clamp(20px, 4vw, 55px);
    background: #fff;
    margin-bottom: 2.5rem;
}

/* TÍTULO IZQUIERDA */
.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-principal);
    text-align: left;
    margin: 0;
    margin-left: -55px;
}

.blog-header p {
    font-size: 1.1rem;
    line-height: 1.5;

    font-weight: 700;
    color: #444;
    text-align: center;
    margin: 0;
    white-space: pre-line;
}

.category-blog {
    display: flex;

    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin-right: -55px;
}


.category-blog label {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.category-blog select {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.category-blog select:hover {
    border-color: var(--color-principal);
    box-shadow: 0 0 5px rgba(212, 160, 23, 0.5);
}

@media (max-width: 900px) {
    .section-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .category-blog {
        justify-content: center;
        margin-top: 1rem;
    }
}


.section-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-principal);
}

.category-blog select{

    width: 180px;
    height: 45px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    background:white;
    cursor:pointer;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;

}
.blog-lista{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:30px;

    width:100%;

}


.blog-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    color:#333;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    transition:.3s;

}


.blog-card:hover{

    transform:translateY(-6px);

}



.blog-img{

    width:100%;

    height:280px;

    overflow:hidden;

    background:#f5f5f5;

}



.blog-img img{

    width:100%;

    height:100%;

    object-fit:cover;

}




.blog-sin-imagen{

    width:100%;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:15px;

    color:var(--color-principal);

}



.blog-sin-imagen i{

    font-size:70px;

}



.blog-sin-imagen span{

    font-size:18px;

    font-weight:600;

}




.blog-body{

    padding:25px;

}



.blog-body h3{

    margin:0 0 8px;
    font-size:22px;
    color:var(--color-principal);
    text-align:center;

    text-transform:uppercase;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

}

.blog-body p{

    margin:8px 0 0;
    color:#666;
    line-height:1.4;
    font-size:14px;
    text-align:justify;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;

}

/*=====================================
    HEADER DEL DETALLE DEL BLOG
=====================================*/

.blog-header-detalle{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:50px;
    margin-bottom:45px;
    padding-bottom:20px;
    border-bottom:2px solid #ececec;

}

.blog-title-col{

    flex:1;

}

.blog-title-split{

    margin:0;
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    color:var(--color-principal);
    text-transform:uppercase;

}

.blog-meta-col{

    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:8px;
    text-align:right;

}

.blog-meta-title{

    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    color:var(--color-principal);
    text-transform:uppercase;

}

.blog-meta{

    font-size:16px;
    color:#666;
    font-weight:500;

}

.blog-meta span{

    display:inline-flex;
    align-items:center;
    gap:8px;

}


/*=====================================
    CUERPO DEL BLOG
=====================================*/

.blog-body-detalle{

    margin-top:40px;

}

.blog-contenido-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;

}

/* COLUMNAS */

.blog-contenido-grid .col{

    display:flex;
    flex-direction:column;
    gap:18px;

}

/* PÁRRAFOS */

.blog-contenido-grid p{

    margin:0;
    color:#555;
    font-size:16px;
    line-height:1.8;
    text-align:justify;

}

/*=====================================
    AUTOR
=====================================*/

.blog-autor{

    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:10px;
    padding-bottom:20px;
    border-bottom:2px solid #eee;

}

.blog-autor img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--color-principal);
}

.autor-info{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.autor-nombre{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:var(--color-principal);
}

.autor-cargo{
    margin:0;
    font-size:14px;
    color:#777;
}
/* =====================================
   GALERÍA - TIPO CARTAS
===================================== */

.blog-galeria {
    position: relative;
    width: 100%;
    height: 600px; /* usa aquí la altura que ya tenga tu galería */
    margin-bottom: 10px;
}

/* Todas las imágenes se apilan */
.blog-galeria img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    border-radius: 12px;

    cursor: pointer;
}

/* Pequeño desplazamiento para que se vean como cartas */
.blog-galeria img:nth-child(1) {
    z-index: 5;
    transform: translate(0, 0);
}

.blog-galeria img:nth-child(2) {
    z-index: 4;
    transform: translate(8px, 8px);
}

.blog-galeria img:nth-child(3) {
    z-index: 3;
    transform: translate(16px, 16px);
}

.blog-galeria img:nth-child(4) {
    z-index: 2;
    transform: translate(24px, 24px);
}

.blog-galeria img:nth-child(5) {
    z-index: 1;
    transform: translate(32px, 32px);
}
/*=====================================
    COMPARTIR
=====================================*/

.blog-compartir{
    margin-top:20px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    flex-wrap:wrap;
}

.blog-compartir span{
    font-weight:700;
    color:#333;
}

.blog-compartir a{

    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--color-principal);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;

}

.blog-compartir a:hover{
    transform:translateY(-3px);
}

/*=====================================
    RESPONSIVE
=====================================*/
@media (max-width:992px){
    .blog-contenido-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .blog-galeria{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:576px){
    .blog-galeria{

        grid-template-columns:1fr;
    }
}

/* =========================
   BLOGS RELACIONADOS
========================= */

.blog-relacionados {
    width: 100%;
    margin-top: 50px;
    padding: 0px 0;
    background: transparent;
}

.blog-relacionados-header {
    text-align: center;
    margin-bottom: 35px;
}

.blog-relacionados-header h2 {
    margin:0;
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    color: #000000;
    text-transform:uppercase;
}
.blog-relacionados-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* =========================
   CONTENEDOR CARRUSEL
========================= */

.blog-carrusel-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}


/* =========================
    CARRUSEL
========================= */

.blog-carrusel {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 5px 20px;
}

.blog-carrusel::-webkit-scrollbar {
    display: none;
}

/* =========================
    CARD
========================= */

.blog-carrusel-card {
    flex: 0 0 calc((100% - 44px) / 3);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog-carrusel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.13);
}

/* =========================
    IMAGEN
========================= */

.blog-carrusel-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.blog-carrusel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.blog-carrusel-card:hover .blog-carrusel-img img {
    transform: scale(1.05);
}

/* =========================
    SIN IMAGEN
========================= */

.blog-carrusel-sin-imagen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f1f1;
    color: #888;
}

.blog-carrusel-sin-imagen i {
    font-size: 2rem;
}

/* =========================
    CUERPO CARD
========================= */

.blog-carrusel-body {
    padding: 20px;
}
.blog-carrusel-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    
    text-transform:uppercase;
    color: var(--color-principal);
}

.blog-carrusel-body p {
    margin: 0 0 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =========================
    LEER MÁS
========================= */

.blog-carrusel-ver {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 13px;
    font-weight: 800;
    color: #222;

    transition: color .2s ease;
}

.blog-carrusel-card:hover .blog-carrusel-ver {
    color: var(--color-principal);
}


/* =========================
    BOTONES
========================= */

.blog-carrusel-btn {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: var(--color-principal);
    color: #222;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    cursor: pointer;

    transition: transform .2s ease, opacity .2s ease;
}

.blog-carrusel-btn:hover {
    transform: scale(1.08);
    opacity: .9;
}



/* =========================================================
   TABLET
   769px - 992px
   ========================================================= */

@media (max-width: 992px) {


    /* =========================
       BLOG PRINCIPAL
       ========================= */

    .blog-section {
        width: 100%;
        padding: 45px 5%;
    }


    /* =========================
       HEADER BLOG
       ========================= */

    .blog-header {
        display: grid;
        grid-template-columns: 1fr 1fr;

        width: 100%;

        padding: 0;
        margin: 0 0 35px;

        gap: 20px;
    }

    .blog-header h2 {
        font-size: 2.2rem;
        margin-left: 0;
        text-align: left;
    }

    .blog-header p {
        font-size: 1rem;
        text-align: center;
    }

    .category-blog {
        grid-column: 1 / -1;

        justify-content: center;

        margin-right: 0;
        margin-top: 5px;
    }


    /* =========================
       LISTA DE BLOGS
       ========================= */

    .blog-lista {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px;
    }


    /* =========================
       CARD
       ========================= */

    .blog-card {
        width: 100%;
        min-width: 0;
    }

    .blog-img {
        width: 100%;
        height: 240px;
    }

    .blog-body {
        padding: 20px;
    }

    .blog-body h3 {
        font-size: 20px;
    }

    .blog-body p {
        font-size: 14px;
    }


    /* =====================================================
       DETALLE DEL BLOG
       ===================================================== */

    .blog-header-detalle {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 35px;
        padding-bottom: 20px;
    }

    .blog-title-col {
        width: 100%;
    }

    .blog-title-split {
        font-size: 36px;
    }

    .blog-meta-col {
        width: 100%;

        align-items: flex-start;

        text-align: left;
    }


    /* =========================
       CONTENIDO BLOG
       ========================= */

    .blog-body-detalle {
        margin-top: 30px;
    }

    .blog-contenido-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .blog-contenido-grid .col {
        width: 100%;
        min-width: 0;
    }

    .blog-contenido-grid p {
        width: 100%;

        font-size: 16px;
        line-height: 1.8;

        text-align: justify;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }


    /* =========================
       AUTOR
       ========================= */

    .blog-autor {
        width: 100%;

        gap: 15px;
    }


    /* =========================
       GALERÍA
       ========================= */

    .blog-galeria {
        width: 100%;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    /* =========================
       COMPARTIR
       ========================= */

    .blog-compartir {
        justify-content: center;
    }
}


/* =========================================================
   TABLET PEQUEÑA / CELULAR GRANDE
   601px - 768px
   ========================================================= */

@media (max-width: 768px) {


    /* =========================
       BLOG
       ========================= */

    .blog-section {
        padding: 40px 5%;
    }


    /* =========================
       HEADER
       ========================= */

    .blog-header {
        display: flex;
        flex-direction: column;

        align-items: center;

        width: 100%;

        gap: 15px;

        padding: 0;

        margin-bottom: 30px;
    }

    .blog-header h2 {
        width: 100%;

        margin: 0;

        font-size: 2.2rem;

        text-align: center;
    }

    .blog-header p {
        width: 100%;

        font-size: 1rem;

        text-align: center;
    }

    .category-blog {
        width: 100%;

        display: flex;

        justify-content: center;

        margin: 0;
    }


    /* =========================
       LISTA
       ========================= */

    .blog-lista {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* =========================
       CARD
       ========================= */

    .blog-card {
        width: 100%;
    }

    .blog-img {
        height: 260px;
    }

    .blog-body {
        padding: 22px;
    }

    .blog-body h3 {
        font-size: 21px;
    }


    /* =========================
       DETALLE
       ========================= */

    .blog-header-detalle {
        gap: 15px;

        margin-bottom: 30px;
    }

    .blog-title-split {
        font-size: 32px;

        line-height: 1.25;
    }

    .blog-meta-col {
        align-items: flex-start;
    }

    .blog-meta-title {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .blog-meta {
        font-size: 15px;
    }


    /* =========================
       CONTENIDO
       ========================= */

    .blog-contenido-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .blog-contenido-grid p {
        font-size: 16px;

        line-height: 1.8;

        text-align: justify;
    }


    /* =========================
       AUTOR
       ========================= */

    .blog-autor {
        gap: 12px;
    }

    .blog-autor img {
        width: 60px;
        height: 60px;
    }

    .autor-nombre {
        font-size: 17px;
    }

    .autor-cargo {
        font-size: 13px;
    }


    /* =========================
       GALERÍA
       ========================= */

    .blog-galeria {
        grid-template-columns: 1fr;
    }


    /* =========================
       COMPARTIR
       ========================= */

    .blog-compartir {
        justify-content: center;

        margin-top: 20px;
    }
}


/* =========================================================
   CELULAR
   Hasta 600px
   ========================================================= */

@media (max-width: 600px) {

    /* =========================
       BLOG
       ========================= */

    .blog-section {
        width: 100%;

        padding: 35px 5%;
    }


    /* =========================
       HEADER
       ========================= */

    .blog-header {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 15px;

        padding: 0;

        margin-bottom: 30px;
    }

    .blog-header h2 {
        width: 100%;

        margin: 0;

        font-size: 2rem;

        line-height: 1.2;

        text-align: center;
    }

    .blog-header p {
        width: 100%;

        font-size: 1rem;

        line-height: 1.6;

        text-align: center;

        white-space: normal;
    }


    /* =========================
       CATEGORÍA
       ========================= */

    .category-blog {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 8px;

        margin: 0;
    }

    .category-blog label {
        font-size: 0.9rem;
    }

    .category-blog select {
        width: 180px;

        max-width: 100%;

        height: 45px;
    }


    /* =========================
       LISTA
       ========================= */

    .blog-lista {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* =========================
       CARD
       ========================= */

    .blog-card {
        width: 100%;

        border-radius: 15px;
    }

    .blog-img {
        width: 100%;

        height: 230px;
    }

    .blog-body {
        padding: 20px;
    }

    .blog-body h3 {
        font-size: 20px;

        line-height: 1.3;
    }

    .blog-body p {
        font-size: 14px;

        line-height: 1.6;

        text-align: justify;
    }


    /* =========================
       DETALLE DEL BLOG
       ========================= */

    .blog-header-detalle {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 30px;

        padding-bottom: 18px;
    }

    .blog-title-col {
        width: 100%;
    }

    .blog-title-split {
        width: 100%;

        font-size: 30px;

        line-height: 1.25;

        text-align: left;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .blog-meta-col {
        width: 100%;

        display: flex;

        align-items: flex-start;

        text-align: left;

        gap: 6px;
    }

    .blog-meta-title {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .blog-meta {
        font-size: 14px;
    }


    /* =========================
       CUERPO
       ========================= */

    .blog-body-detalle {
        width: 100%;

        margin-top: 25px;
    }

    .blog-contenido-grid {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .blog-contenido-grid .col {
        width: 100%;

        min-width: 0;
    }

    .blog-contenido-grid p {
        width: 100%;

        font-size: 16px;

        line-height: 1.8;

        text-align: justify;

        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }


    /* =========================
       AUTOR
       ========================= */

    .blog-autor {
        width: 100%;

        display: flex;

        align-items: center;

        gap: 12px;

        margin-bottom: 10px;

        padding-bottom: 15px;
    }

    .blog-autor img {
        width: 55px;
        height: 55px;

        flex-shrink: 0;
    }

    .autor-info {
        min-width: 0;
    }

    .autor-nombre {
        font-size: 16px;
    }

    .autor-cargo {
        font-size: 13px;
    }


    /* =========================
       GALERÍA
       ========================= */

    .blog-galeria {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .blog-galeria img {
        width: 100%;

        height: auto;

        max-height: 400px;

        object-fit: cover;
    }


    /* =========================
       COMPARTIR
       ========================= */

    .blog-compartir {
        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 10px;

        margin-top: 20px;
    }

    .blog-compartir span {
        width: 100%;

        text-align: center;

        margin-bottom: 5px;
    }

    .blog-compartir a {
        width: 40px;
        height: 40px;

        font-size: 17px;
    }


    /* =========================
       BLOGS RELACIONADOS
       ========================= */

    .blog-relacionados {
        width: 100%;

        margin-top: 40px;

        padding: 35px 0;
    }

    .blog-relacionados-header {
        width: 100%;

        margin-bottom: 25px;

        text-align: center;
    }

    .blog-relacionados-header h2 {
        font-size: 1.8rem;

        line-height: 1.2;
    }

    .blog-relacionados-header p {
        font-size: 14px;

        line-height: 1.5;
    }


    /* =========================
       CARRUSEL
       ========================= */

    .blog-carrusel-wrapper {
        width: 100%;

        gap: 5px;
    }

    .blog-carrusel {
        width: 100%;

        gap: 15px;

        padding: 10px 5px 20px;
    }

    .blog-carrusel-card {
        flex: 0 0 85%;

        border-radius: 12px;
    }

    .blog-carrusel-img {
        width: 100%;

        height: 200px;
    }

    .blog-carrusel-body {
        padding: 18px;
    }

    .blog-carrusel-body h3 {
        font-size: 17px;

        line-height: 1.3;
    }

    .blog-carrusel-body p {
        font-size: 14px;

        line-height: 1.5;
    }

    .blog-carrusel-btn {
        width: 36px;
        height: 36px;

        flex-shrink: 0;

        font-size: 16px;
    }
}


/* =========================================================
   CELULAR PEQUEÑO
   Hasta 400px
   ========================================================= */

@media (max-width: 400px) {

    .blog-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .blog-header h2 {
        font-size: 1.8rem;
    }

    .blog-header p {
        font-size: 0.95rem;
    }

    .blog-img {
        height: 210px;
    }

    .blog-body {
        padding: 18px;
    }

    .blog-body h3 {
        font-size: 18px;
    }

    .blog-title-split {
        font-size: 27px;
    }

    .blog-contenido-grid p {
        font-size: 16px;
        line-height: 1.75;
    }

    .blog-relacionados-header h2 {
        font-size: 1.6rem;
    }

    .blog-carrusel-card {
        flex: 0 0 88%;
    }
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .blog-carrusel-wrapper {
        padding: 0 35px;
    }

    .blog-carrusel {
        gap: 15px;
    }

    .blog-carrusel-card {
        flex: 0 0 calc(50% - 7.5px);
        min-width: 0;
    }

    .blog-carrusel-img {
        height: 160px;
    }

    .blog-carrusel-body {
        padding: 13px;
    }

    .blog-carrusel-body h3 {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .blog-carrusel-body p {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .blog-carrusel-ver {
        font-size: 0.75rem;
    }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .blog-carrusel-wrapper {
        padding: 0 30px;
    }

    .blog-carrusel {
        gap: 12px;
    }

    .blog-carrusel-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .blog-carrusel-img {
        height: 150px;
    }

    .blog-carrusel-body {
        padding: 12px;
    }

    .blog-carrusel-body h3 {
        font-size: 0.95rem;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .blog-carrusel-body p {
        font-size: 0.78rem;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .blog-carrusel-ver {
        font-size: 0.72rem;
    }
}


/* =========================================================
   CELULAR PEQUEÑO
========================================================= */

@media (max-width: 380px) {

    .blog-carrusel-wrapper {
        padding: 0 27px;
    }

    .blog-carrusel-img {
        height: 135px;
    }

    .blog-carrusel-body {
        padding: 10px;
    }

    .blog-carrusel-body h3 {
        font-size: 0.9rem;
    }

    .blog-carrusel-body p {
        font-size: 0.75rem;
    }

    .blog-carrusel-ver {
        font-size: 0.7rem;
    }
}
/* =========================================================
   FILTRO BLOG - SOLO CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .category-blog {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin: 0 !important;
        padding: 0 !important;
    }

    .category-blog label {
        width: 100%;
        text-align: left;
    }

    .category-blog select {
        width: 100% !important;
        max-width: none !important;
        height: 45px;
        box-sizing: border-box;
    }

}



select[name="tema"] {
    width: 180px;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

select[name="tema"] option {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


