/* CONTENEDOR SIDEBAR */
.cm-post-sidebar {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* TARJETA */
.cm-sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* IMAGEN ARRIBA */
.cm-sidebar-thumb {
    width: 100%;
}

.cm-sidebar-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* FECHA */
.cm-sidebar-date {
    font-size: 12px;
    font-weight: 500;
    color: #1e3a8a;
}
.cm-sidebar-content
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* TITULO */
.cm-sidebar-content h4 {
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

.cm-sidebar-content h4 a {
    text-decoration: none;
    color: #111;
}

.cm-sidebar-content h4 a:hover {
    color: #1e3a8a;
}

/* ÚLTIMO ITEM SIN BORDE */
.cm-sidebar-item:last-child {
    border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cm-post-sidebar {
        max-width: 100%;
    }

    .cm-sidebar-thumb img {
        height: 160px;
    }
}