.cabecera-blog {
    width: min(820px, 92%);
    margin: 0 auto;
    padding: 3rem 0 1.5rem;
    text-align: left;
    text-align: center;
}

.titulo-blog {
    margin: 1rem 0 .75rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.seccion-blog {
    width: min(820px, 92%);
    margin: 0 auto;
    padding: 1rem 0 4rem;
}

.lista-posts {
    display: flex;
    flex-direction: column;
}

.tarjeta-post {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}

.imagen-post {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 18px;
}

.contenido-post {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.titulo-post {
    margin: .6rem 0 .5rem;
    font-size: 1.35rem;
}

.texto-post {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.enlace-post {
    margin-top: .25rem;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

@media (max-width: 700px) {
    .cabecera-blog {
        text-align: left;
        padding-top: 2rem;
    }

    .tarjeta-post {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .imagen-post {
        height: 220px;
    }
}