    .content-item{
        margin-top: 24px;
        margin-bottom: 24px;
    }
    .single-post-container {
        padding: 2rem;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }

    .post-thumbnail {
        text-align: center;
    }

    .post-thumbnail img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
    }

    .post-thumbnail.banner-fullwidth {
        width: 100vw; /* Ocupa el 100% del ancho de la ventana */
        margin-left: calc(-50vw + 50%); /* Centra el banner si el contenedor padre tiene padding/margin */
        overflow: hidden; /* Evita desbordamientos */
    }

    .post-thumbnail.banner-fullwidth img {
        width: 100%;
        height: 600px;
        max-width: 100% !important; /* Fuerza el ancho completo */
        object-fit: cover; /* Opcional: cubre el área sin distorsionar (útil si quieres altura fija) */
        object-position: center;
    }

    .post-title {
        font-size: 46px;
        margin: 1rem 0;
        text-align: center;
        color: #286783;
    }

    .post-meta {
        font-size: 0.9rem;
        color: #777;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .description-before{
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        color: #333;
        text-align: center;
    }

    .post-content {
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .elegant-title {
        color: #286783;
        font-size: 2.5rem;
        font-weight: 700;
        position: relative;
        display: block;          /* Cambiado de inline-block a block */
        margin: 24px auto;       /* Margen automático en los lados para centrar */
        line-height: 1.3;
        padding: 0 10px;         /* Simplificado el padding */
        text-align: center;      /* Centra el texto dentro del elemento */
        width: fit-content;      /* Ajusta el ancho al contenido */
    }

    .elegant-title::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 10px;             /* Ajustado para coincidir con el padding */
        width: calc(100% - 20px); /* Compensa el padding */
        height: 12px;
        border-radius: 2px;
        z-index: -2;
        background: #f1cc06;
    }


    .sub-content-item h3{
        color: #286783;
        font-size: 25px;
    }

    .description p{
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .post-tags h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .post-tags ul {
        list-style: none;
        padding: 0;
    }

    .post-tags li {
        display: inline-block;
        margin-right: 0.5rem;
        font-size: 0.9rem;
        background: #f0f0f0;
        padding: 0.3rem 0.6rem;
        border-radius: 5px;
    }

    .post-navigation {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        margin-top: 30px;
    }

    .post-content p {
        width: 100%;
        float: left;
    }

    .author-box {
        padding-top: 30px;
    }

    .author-box .author-name {
        font-style: italic;
    }

    .author-profile-card {
        display: flex;
        align-items: center;
        padding: 20px;
        border-radius: 10px;
        max-width: 98%;
        margin: 30px 0;
        border-top: 1px solid #e8e8e8;
    }

    .author-image img {
        width: 128px;
        height: 128px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 20px 0 0;
    }

    .author-content {
        font-family: Arial, sans-serif;
        color: #333;
        max-width: 800px;
    }

    .author-content p {
        margin: 10px 0;
        line-height: 1.6;
    }

    .author-signature {
        margin-top: 10px;
    }

    .author-link {
        display: inline-block;
        margin-top: 10px;
        color: #6AAC6A;
        text-decoration: none;
        font-weight: bold;
    }

    .author-link i {
        margin-right: 5px;
    }

    .author-link:hover {
        text-decoration: underline;
    }


/************************************
   ESTILOS COMUNES PARA IMÁGENES 
   (Tanto en content como sub_content)
*************************************/

/* Contenedor base */
.content-image,
.sub-content-image {
    margin: 2rem 0;
    text-align: center;
}

/* Caso 1: Una sola imagen (altura fija 600px y centrada) */
.content-image.one-image img,
.sub-content-image.one-image img {
    width: 100%;
    height: 600px; /* Altura fija */
    object-fit: contain; /* Sin recorte, ajuste proporcional */
    object-position: center;
    margin-top: 24px;
    margin-bottom: 24px;
    max-width: 100% !important;
    object-fit: fill;
    object-position: center;
}


/* Caso 2: Dos imágenes (en fila con espacio) */
.content-image.two-images,
.sub-content-image.two-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.content-image.two-images img,
.sub-content-image.two-images img {
    width: calc(50% - 0.75rem);
    max-width: 100%;
    height: 600px; /* Misma altura fija que en one-image */
    object-fit: contain; /* Cambiado de 'cover' a 'contain' para consistencia */
}

/* Responsive: En móviles, apilar imágenes */
@media (max-width: 768px) {
    .content-image.two-images,
    .sub-content-image.two-images {
        flex-direction: column;
        gap: 1rem;
    }

    .content-image.two-images img,
    .sub-content-image.two-images img {
        width: 100%;
        height: auto; /* Altura flexible en móviles para mejor adaptación */
        max-height: 400px; /* Opcional: evita imágenes demasiado altas */
    }

    .content-image.one-image img,
    .sub-content-image.one-image img {
        height: auto; /* Altura fija */
    }

    .post-thumbnail.banner-fullwidth img {
        height: auto;
    }
}