/* Wrapper de la lista */
.ct-recientes-wrap {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Card */
.ct-reciente-card {
    display: flex;
    width: 100%;
    min-height: 150px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.07);
}

/* Imagen (24–25%) */
.ct-reciente-card .ct-img {
    width: 25%;
    height: auto;
    max-height: 180px;
    overflow: hidden;
}

.ct-reciente-card .ct-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Contenido */
.ct-reciente-card .ct-info {
    width: 75%;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Etiquetas */
.ct-labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.ct-labels span {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #eef2f7;
    color: #333;
    font-weight: 600;
}

/* Agrupar Tipo + Tiempo a la derecha */
.ct-right-group {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

/* Título */
.ct-info h3 {
    font-size: 17px;
    margin: 6px 0 4px;
    line-height: 1.3;
    font-weight: 700;
}

/* Resumen */
.ct-resumen {
    font-size: 13px;
    color: #555;
    line-height: 1.35;
    margin-bottom: 12px;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* solo 2 líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Autor */
.ct-autor {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-autor img {
    width: 26px;
    height: 26px;
    border-radius: 50% !important;
    object-fit: cover;
}

/* Fecha a la derecha */
.ct-fecha {
    font-size: 11px;
    color: #666;
    margin-left: auto;
    white-space: nowrap;
}
