
.post {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    width: 90%;
    border: 1px solid #ccc;
    padding: 0;
    border-radius: 8px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    opacity: 0; 
    transform: translateY(20px); 
    animation: slideUp 2s ease-out forwards; 
    animation-delay: var(--delay); 
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portada {
    width: 100%;
    max-width: 236px;
    height: auto;
    margin-right: 0;
    margin-bottom: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contenido {
    font-size: 14px;
    margin-top: 3px;
}

.blogmas {
    color: #FF5800;
    text-align: center;
    font-size: 2.5em;
}

.post-content {
    flex: 1;
    text-align: center;
}

.date {
    font-size: 0.9em;
    color: #888;
    margin: 0 0 5px 0;
}

.titulo {
    font-size: 2em;
    color: #ff5800;
}

.subtitulo {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    color: #ff6600;
    padding: 6px 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

.pagination li a:hover {
    background-color: #ff6600;
    color: white;
    border-color: #ff6600;
}

.pagination li.active a {
    background-color: #ff6600;
    color: white;
    border-color: #ff6600;
    cursor: default;
}

#vermas {
    margin-top: 0;
    background-color: #ff5800;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 101px;
    height: 41px;
    margin-bottom: 10px;
}

#vermenos {
    margin-top: 0;
    background-color: #232323;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 101px;
    height: 41px;
    margin: 5px;
    margin-bottom: 15px;
}

.nuepub {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nueva {
    background: #ff5800;
    margin-top: 20px;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .post {
        flex-direction: row;
        width: 70%;
        margin-left: 15%;
    }

    .portada {
        margin-right: 20px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .post-content {
        text-align: left;
    }

    .blogmas {
        text-align: left;
        margin-left: 42%;
        font-size: 61px;
    }

    .nuepub {
        flex-direction: row;
        justify-content: space-between;
    }

    #nueva {
        margin-right: 305px;
        margin-top: 60px;
    }
}
