/* Contenedor general del blog */
#blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cada post */
.blog-post {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 65px;
    cursor: pointer; /* Cambia el cursor al pasar sobre el post */
}

.blog-post:last-child {
    margin-bottom: 65px;
}

/* Imagen */
.blog-post img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Contenido de texto */
.blog-content {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
}

/* Título */
.blog-title {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

/* Subtítulo */
.blog-subtitle {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 25px;
    font-weight: 400;
    margin: 5px 0 10px 0;
}

/* Línea separadora */
.blog-line {
    border: none;
    border-top: 1px solid #000;
    margin: 10px 0;
}

/* Contenedor de estadísticas y acciones */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Contenedor de estadísticas */
.blog-stats {
    display: flex;
    gap: 20px;
}

/* Ícono de acción (ej. corazón) */
.blog-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    cursor: pointer;
}

@media (max-width: 750px) {
    .blog-post {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 30px;
        padding: 0 15px; /* espaciado lateral */
    }

    .blog-post img {
        width: 100%;
        height: 261px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
        margin: 0;
    }

    .blog-content {
        margin: 10px 0 0 0;
        width: 100%;
    }

    .blog-title {
        color: #000;
        font-family: Inter, sans-serif;
        font-size: 17.544px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 5px 0;
    }

    .blog-subtitle {
        color: #000;
        font-family: Inter, sans-serif;
        font-size: 13.678px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 5px 0;
    }

    /* Contenedor de estadísticas y acciones */
    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 5px;
        width: 100%;
        padding: 0 5px;
    }

    /* Cada zona ocupa 1/3 del ancho */
    .blog-stats-left,
    .blog-stats-center,
    .blog-stats-right {
        flex: 1;
        display: flex;
        align-items: center;
    }

    /* Visualizaciones alineadas a la izquierda */
    .blog-stats-left {
        justify-content: flex-start;
        font-size: 9.594px;
        color: #000;
        font-family: Inter, sans-serif;
        font-weight: 400;
        line-height: normal;
        gap: 5px;
    }

    /* Comentarios centrados */
    .blog-stats-center {
        justify-content: center;
        font-size: 9.594px;
        color: #000;
        font-family: Inter, sans-serif;
        font-weight: 400;
        line-height: normal;
        gap: 5px;
    }

    /* Corazón alineado a la derecha */
    .blog-stats-right {
        justify-content: flex-end;
    }

    /* Iconos SVG más pequeños */
    .blog-icon {
        width: 30.702px;
        height: 30.702px;
        flex-shrink: 0;
        cursor: pointer;
    }
}
