/* Wrapper general */
.ct-destacados-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Imagen (lado izquierdo, 60%) */
.ct-destacado-card .ct-img {
    width: 58%;
    height: auto;
    max-height: 220px;
    overflow: hidden;
}

.ct-destacado-card .ct-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* No se deforma */
    object-position: center;  /* Centrar imagen */
    display: block;
}

/* Contenido (lado derecho, 42%) */
.ct-destacado-card .ct-info {
    width: 42%;
    padding: 18px 20px;
    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;
}

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



.ct-right-group {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

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

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

.ct-fecha {
    font-size: 11px;
    color: #666;
    margin-left: auto; /* Esto la manda al extremo derecho */
    white-space: nowrap;
}
