/*ESTILOS CSS BASE - ARTICULOS - MIZUMEBLOG*/
* {
    box-sizing: border-box;
}

/*FUENTE NUEVA*/
body {
    background-image: url("../../Home/IMG/Fondo2.jpg");
    font-family: 'Lexend', sans-serif;
    margin: 0px 0px 0px 0px;
}


.lexend_font {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/*ESTILOS DE LOS TAGS Y CATEGORIAS*/
.post-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.post-tags {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-end;
    height: 190px;
    margin-bottom: 0px;
}


.category {
    color: #000000;
    background-color: #ddd;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 5px;

}

.category+.category {
    margin-left: -10px;
    /* ← Solo 5px de separación */
}


/*ESTILOS DE PARAGRAFO DEL CUERPO DEL ARTICULOS*/
.main-article p {
    color: white;
}

.main-article li {
    color: white;
}

/*-----------------------------------------------*/

/*REDIFINICION DE ETIQUETAS HTML*/
h1 {

    /*Estilos de h1 dentro del contenidor header*/
    border-radius: 10px;
    border: solid 1px rgb(210, 180, 140);
    background-color: rgb(210, 180, 140);
    text-align: center;
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 10px;
    padding-bottom: 10px;

    /*Estilos de la fuente*/
    margin-bottom: 10px;
    margin-top: 0px;
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;

}

h2 {
    color: #ffffff;
    /* Amarillo */
    font-size: 1.7rem;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        /* Sombra negra para contraste */
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

h3 {
    /*ESTILO h3*/
    color: #ffffff;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

h4 {
    color: #e6e6e6;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    padding-bottom: 10px;
}

h5 {
    color: #e6e6e6;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    padding-bottom: 10px;
}

h6 {
    color: #e6e6e6;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    padding-bottom: 10px;
}

/*CONTENEDOR PRINCIPAL DE LA PAGINA*/
.container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    /*ESTRUCTURA GIRD*/
    gap: 25px;
}

/*PROPIEDADES COMPARTIDAS*/

.sidebar-left,
.main-article,
.sidebar-right {
    background-color: rgb(45, 29, 13);
    /*Mismo fondo */
    border-radius: 5px;
    /* Mismo radio */
    box-shadow: 10px 4px 15px rgba(255, 255, 255, 0.1);
    /* Misma sombra */
}

/* ESTILOS DEFINIDOS EN EL SIDE BAR IZQUIERDO*/
/* --------------------------------------------*/
.sidebar-left {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    /*FIJA EN LA PAGINA*/
    top: 20px;
}


.sidebar-left h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffffff;
}


/*INDEX DE LA IZQUIERDA*/
.index-list {
    list-style-type: "🐢";
}

.index-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c7c7c7;
}

.index-list a {
    text-decoration: none;
    color: #9b9a9a;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.index-list a:hover {
    color: #ffffff;
    transform: translateX(5px);
    transition: all 0.3s;
}

/*INDEX DE LA HOME*/
.index-home {
    list-style-type: "🐢";
}

.index-home li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c7c7c7;
}

.index-home a {
    text-decoration: none;
    color: #9b9a9a;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.index-home a:hover {
    color: #ffffff;
    transform: translateX(5px);
    transition: all 0.3s;
}

/* --------------------------------------------*/

/*INDEX DE LA DERECHA*/
.index-list2 {
    list-style-type: none;
}

.index-list2 li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #979595;
}

.index-list2 a {
    text-decoration: none;
    color: #7b7b7b;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.index-list2 a:hover {
    color: #000000;
    transform: translateX(5px);
    transition: all 0.3s;
}


/*PROPIEDADES DEL CUERPO DEL ARTICULO*/
/* --------------------------------------------*/
.main-article {
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/*ENCABAZADO*/
.article-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.article-header h1 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/*SUB - CONTENIDO (SUB SECCIONES)*/

.article-header .meta {
    color: #7f8c8d;
    font-style: italic;
}

.article-section {
    margin-bottom: 40px;
}

.article-section h2 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.article-section p {
    margin-bottom: 15px;
    text-align: justify;
}

/*REAJUSTE DE IMAGENES*/

.article-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*PROPIEDADES DE LA BARRA LATERAL DERECHA */
/*----------------------------------------------- */
.sidebar-right {
    width: 310px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.profile {
    text-align: center;
    margin-bottom: 25px;
}

.profile-img {
    width: 180px;
    height: 196px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #bea95f;
}

.profile h3 {
    margin-bottom: 5px;
}

.profile p {
    color: #ffffff;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3498db;
    color: black;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: black;
}

.info-box h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    text-shadow:
        6px 2px 6px rgba(0, 0, 0, 0.4),
        /* ← Más a la derecha (4px) y menos opaca (0.4) */
        0 0 8px rgba(0, 0, 0, 0.3);
    /* ← Glow más suave (0.3) */
}

/*----------------------------------------------- */



/*CATEGORIAS DEL CONTENIDO*/
.categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/*UTILIDADES*/
/*Material para destacar*/
.subrayo {
    background-color: yellow;
    color: black!important;
    border-radius: 8px;
    padding: 2px;
}

/*Material para poner en cursiva*/
.cursiva {
    font-style: italic;
}

a {
color: rgb(187, 120, 49);
}

.main-article li + li{
margin-top: 25px;
}


/*BOTON DEL RESPONSIVE*/
#btnIndex {
    display: none;
}

/*==RESPONSIVE DE ARTICULOS HTML==*/
/* Nueva sección de Redes Sociales - Versión horizontal compacta */
#NetWorks {
    display: none; /* Oculto por defecto en desktop */
    margin-top: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
}

/*RESPOONSIVE DE ORDENADOR PEQUEÑO*/
@media (max-width:1024px) {

    /*Ocultamos la imagen encabezado, titulo general y barra lateral derecha*/
    .imagenheader,
    .headertitulo,
    .sidebar-right {
        display: none;
    }
    /*Estilos del boton del responsive*/
    #btnIndex {
        display: block;
        width: 50px;
        height: 50px;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        margin-left: 20px;
        margin-top: 100px;
        background-color: rgb(45, 29, 13);
        box-shadow: 0px 1px 13px rgba(255, 255, 255, 0.1);
    }

    /*Cambiamos color del icono de hamburguesa*/
    i {
        color: rgb(205, 205, 205);
        font-size: 1.9em;
    }

    /*Propiedades nuevas para el side-bar*/
    .sidebar-left {
        /* Estado por defecto: oculto */
        position: fixed;
        top: 0;
        right: 0;
        width: 30%;
        height: 100%;
        z-index: 1200;
        transform: translateX(100%);
    }

    /* Esta clase se añade/remueve con JavaScript */
    .sidebar-left.abierto {
        transform: translateX(0);
    }

    /*Propiedades generales*/
     .container{
        padding: 0px;
    }
    .main-article {
        width: 1024px;
        margin-left: auto;
        margin-right: auto;
        background-color: rgb(45, 29, 13);
    }

    /*Adaptacion de imagenes*/
    .article-image {
        max-width: 600px;
        border-radius: 8px;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }

    /*Estilos de h1 dentro del contenidor header*/
    .article-header h1 {
        color: #ffffff;
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

#NetWorks {
        display: block;
        background-color: rgb(85, 72, 58);
}

   /* Contenedor principal horizontal */
#NetWorks .profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

/* Sección del perfil (izquierda) - Más grande */
#NetWorks .profile-img {
    width: 170px; /* Más grande */
    height: 170px; /* Más grande */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #bea95f;
    display: block;
}

/* Enlaces sociales al lado del título */
#NetWorks h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #bea95f;
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
}

#NetWorks .social-links {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

#NetWorks .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3498db;
    color: black; /* Color original del sidebar */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 0.7em;
}

#NetWorks .social-links a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Sección de artículos destacados (derecha) - Reducido */
#NetWorks .info-box {
    flex: 1;
    background-color: rgb(179, 176, 172);
    border-radius: 8px;
    padding: 15px; /* Reducido */
    margin-top: 0;
    color: black;
    border: 1px solid #e0e0e0;
}

#NetWorks .info-box h4 {
    color: #ffffff;
    margin-bottom: 12px; /* Reducido */
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem; /* Un poco más pequeño */
}

#NetWorks .index-list2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

#NetWorks .index-list2 li {
    margin-bottom: 8px; /* Reducido */
    padding-bottom: 8px; /* Reducido */
    border-bottom: 1px solid #ddd;
}

#NetWorks .index-list2 li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#NetWorks .index-list2 a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem; /* Un poco más pequeño */
    display: block;
    transition: color 0.2s;
}

#NetWorks .index-list2 a:hover {
    color: #2980b9;
}




    
}

/*RESPOONSIVE DE ORDENADOR */
@media (max-width:770px) {

    .imagenheader,
    .headertitulo,
    .sidebar-right {
        display: none;
    }

    .container{
        padding: 0px;
    }

    .main-article {
        width: 770px;
        margin-left: auto;
        margin-right: auto;
    }

    #btnIndex {
        display: block;
        width: 50px;
        height: 50px;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        margin-left: 20px;
        margin-top: 100px;
        background-color: rgb(45, 29, 13);
        box-shadow: 0px 1px 13px rgba(255, 255, 255, 0.1);
    }

    i {
        color: rgb(205, 205, 205);
        font-size: 1.9em;
    }

    .sidebar-left {
        /* Estado por defecto: oculto */
        position: fixed;
        top: 0;
        right: 0;
        width: 35%;
        height: 100%;
        z-index: 1200;
        transform: translateX(100%);
    }

    /* Esta clase se añade/remueve con JavaScript */
    .sidebar-left.abierto {
        transform: translateX(0);
    }


    .article-image {
        max-width: 400px;
        border-radius: 8px;
        margin-right: auto;
        margin-left: auto;
        display: block
    }

    .article-header h1 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    h1 {
        /*Estilos de h1 dentro del contenidor header*/
        border-radius: 6px;
        border: solid 1px rgb(210, 180, 140);
        background-color: rgb(210, 180, 140);
        text-align: center;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 1px;
        padding-bottom: 1px;

        /*Estilos de la fuente*/
        margin-bottom: 10px;
        margin-top: 0px;
        font-size: 1.1rem;
        color: #ffffff;
        text-shadow:
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(0, 0, 0, 0.5);
        font-weight: bold;

    }


    #NetWorks {
        display: block;
        background-color: rgb(85, 72, 58);
}

   /* Contenedor principal horizontal */
#NetWorks .profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

/* Sección del perfil (izquierda) - Más grande */
#NetWorks .profile-img {
    width: 170px; /* Más grande */
    height: 170px; /* Más grande */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #bea95f;
    display: block;
}

/* Enlaces sociales al lado del título */
#NetWorks h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #bea95f;
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
}

#NetWorks .social-links {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

#NetWorks .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3498db;
    color: black; /* Color original del sidebar */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 0.7em;
}

#NetWorks .social-links a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Sección de artículos destacados (derecha) - Reducido */
#NetWorks .info-box {
    flex: 1;
    background-color: rgb(179, 176, 172);
    border-radius: 8px;
    padding: 15px; /* Reducido */
    margin-top: 0;
    color: black;
    border: 1px solid #e0e0e0;
}

#NetWorks .info-box h4 {
    color: #ffffff;
    margin-bottom: 12px; /* Reducido */
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem; /* Un poco más pequeño */
}

#NetWorks .index-list2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

#NetWorks .index-list2 li {
    margin-bottom: 8px; /* Reducido */
    padding-bottom: 8px; /* Reducido */
    border-bottom: 1px solid #ddd;
}

#NetWorks .index-list2 li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#NetWorks .index-list2 a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem; /* Un poco más pequeño */
    display: block;
    transition: color 0.2s;
}

#NetWorks .index-list2 a:hover {
    color: #2980b9;
}

}

@media (max-width:512px) {
    .container{
        padding: 0px;
    }
    .main-article {
        width: 512px;
        margin-left: auto;
        margin-right: auto;
    }

    .imagenheader,
    .headertitulo {
        display: none;
    }


    #btnIndex {
        display: block;
        width: 50px;
        height: 50px;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        margin-left: 20px;
        margin-top: 100px;
        background-color: rgb(45, 29, 13);
        box-shadow: 0px 1px 13px rgba(255, 255, 255, 0.1);
    }

    i {
        color: rgb(205, 205, 205);
        font-size: 1.9em;
    }

    .sidebar-left {
        /* Estado por defecto: oculto */
        position: fixed;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        z-index: 1200;
        transform: translateX(100%);
    }

    /* Esta clase se añade/remueve con JavaScript */
    .sidebar-left.abierto {
        transform: translateX(0);
    }


    .article-image {
        max-width: 300px;
        border-radius: 8px;
        margin-left: auto;
        margin-right: auto;
        display: block
    }
    
    /*Estilos de h1 dentro del contenidor header*/
    .article-header h1 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    h1 {
        
        border-radius: 6px;
        border: solid 1px rgb(210, 180, 140);
        background-color: rgb(210, 180, 140);
        text-align: center;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 1px;
        padding-bottom: 1px;

        /*Estilos de la fuente*/
        margin-bottom: 10px;
        margin-top: 0px;
        font-size: 1.1rem;
        color: #ffffff;
        text-shadow:
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(0, 0, 0, 0.5);
        font-weight: bold;

    }

    #NetWorks {
        display: block;
        background-color: rgb(85, 72, 58);
}

/* Contenedor principal horizontal */
#NetWorks .profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

/* Sección del perfil (izquierda)*/
#NetWorks .profile-img {
    display: none;
}

/* Enlaces sociales al lado del título */
#NetWorks h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #bea95f;
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
}

#NetWorks .social-links {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

#NetWorks .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3498db;
    color: black; 
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 0.7em;
}

#NetWorks .social-links a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Sección de artículos destacados (derecha)*/
#NetWorks .info-box {
    flex: 1;
    background-color: rgb(179, 176, 172);
    border-radius: 8px;
    padding: 15px; 
    margin-top: 0;
    color: black;
    border: 1px solid #e0e0e0;
}

#NetWorks .info-box h4 {
    color: #ffffff;
    margin-bottom: 12px; 
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem; 
}

#NetWorks .index-list2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

#NetWorks .index-list2 li {
    margin-bottom: 8px; 
    padding-bottom: 8px; 
    border-bottom: 1px solid #ddd;
}

#NetWorks .index-list2 li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#NetWorks .index-list2 a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem; 
    display: block;
    transition: color 0.2s;
}

#NetWorks .index-list2 a:hover {
    color: #2980b9;
}


}

@media (max-width:412px) {
    .main-article {
        width: 412px;
        margin-left: auto;
        margin-right: auto;
    }

    .container{
        padding: 0px;
    }

    .imagenheader,
    .headertitulo {
        display: none;
    }


    #btnIndex {
        display: block;
        width: 50px;
        height: 50px;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        margin-left: 20px;
        margin-top: 100px;
        background-color: rgb(45, 29, 13);
        box-shadow: 0px 1px 13px rgba(255, 255, 255, 0.1);
    }

    i {
        color: rgb(205, 205, 205);
        font-size: 1.9em;
    }

    .sidebar-left {
        /* Estado por defecto: oculto */
        position: fixed;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        z-index: 1200;
        transform: translateX(100%);
    }

    /* Esta clase se añade/remueve con JavaScript */
    .sidebar-left.abierto {
        transform: translateX(0);
    }


    .article-image {
        max-width: 250px;
        border-radius: 8px;
        margin-left: auto;
        margin-right: auto;
        display: block
    }
    
    /*Estilos de h1 dentro del contenidor header*/
    .article-header h1 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    h1 {
        
        border-radius: 6px;
        border: solid 1px rgb(210, 180, 140);
        background-color: rgb(210, 180, 140);
        text-align: center;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 1px;
        padding-bottom: 1px;

        /*Estilos de la fuente*/
        margin-bottom: 10px;
        margin-top: 0px;
        font-size: 1.1rem;
        color: #ffffff;
        text-shadow:
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(0, 0, 0, 0.5);
        font-weight: bold;

    }

    #NetWorks {
        display: block;
        background-color: rgb(85, 72, 58);
}

/* Contenedor principal horizontal */
#NetWorks .profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

/* Sección del perfil (izquierda)*/
#NetWorks .profile-img {
    display: none;
}

/* Enlaces sociales al lado del título */
#NetWorks h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #bea95f;
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
}

#NetWorks .social-links {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

#NetWorks .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3498db;
    color: black; 
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 0.7em;
}

#NetWorks .social-links a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Sección de artículos destacados (derecha)*/
#NetWorks .info-box {
    flex: 1;
    background-color: rgb(179, 176, 172);
    border-radius: 8px;
    padding: 15px; 
    margin-top: 0;
    color: black;
    border: 1px solid #e0e0e0;
}

#NetWorks .info-box h4 {
    color: #ffffff;
    margin-bottom: 12px; 
    text-shadow: 6px 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem; 
}

#NetWorks .index-list2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

#NetWorks .index-list2 li {
    margin-bottom: 8px; 
    padding-bottom: 8px; 
    border-bottom: 1px solid #ddd;
}

#NetWorks .index-list2 li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#NetWorks .index-list2 a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem; 
    display: block;
    transition: color 0.2s;
}

#NetWorks .index-list2 a:hover {
    color: #2980b9;
}


}