#posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centra los posts dentro del contenedor */
    align-items: flex-start; /* Alinea los posts al principio del contenedor en el eje vertical */
    margin: 0 auto; /* Centra el contenedor en la página */
    max-width: 100%; /* Asegura que el contenedor no se expanda más allá del límite de la pantalla */
}

.post {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 15px;
    background-color: #f9f9f9;
    width: 100%;
    max-width: 800px; /* Define el tamaño máximo para los recuadros */
    position: relative; /* Añadido para permitir la posición absoluta del .bottom-left */
    margin: 10px 0; /* Espacio superior e inferior entre los posts */
}

.post .left {
    width: 70%;
}

.post .right {
    width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.post .excerpt {
    font-size: 1.1em;
    color: #666;
    line-height: 1.4;
}

.post .cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px; /* Separación entre portada y "Leer más" */
}

.post a {
    display: inline-block;
    font-size: 1.1em;
    color: #007bff;
    margin-top: 15px;
    text-decoration: none;
    border: 2px solid #007bff;
    padding: 5px 10px;
    border-radius: 5px;
}

.post a:hover {
    background-color: #007bff;
    color: white;
}

.bottom-left {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    color: #666;
}

.blog_title {
    text-align: center;
}