.tf-widget-destacado {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.tf-widget-trabajo-destacado h1.titulo {
  font-size: 28px;
  font-weight: 600;
}
.tf-widget-trabajo-destacado h2.titulo {
  font-size: 24px;
  font-weight: 500;
}
.tf-widget-trabajo-destacado h3.titulo {
  font-size: 20px;
  font-weight: 500;
}

.tf-widget-content {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ---------------------- */
/* META (autor + fecha)   */
/* ---------------------- */
.tf-widget-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

/* Autor contenedor */
.tf-widget-autor {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Avatar redondeado */
.tf-widget-destacado .tf-avatar,
.tf-widget-destacado .tf-avatar img,
.tf-widget-trabajo-destacado .tf-avatar,
.tf-widget-trabajo-destacado .tf-avatar img {
  border-radius: 50%;
  object-fit: cover;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

/* Info del autor */
.tf-widget-autor-info {
  text-align: left;
}

.tf-autor-nombre {
  font-weight: bold;
  margin: 0;
}

.tf-autor-bio {
  font-size: 0.9rem;
  margin: 0;
  color: #666;
}

/* Fecha */
.tf-widget-fecha {
  font-size: 0.85rem;
  color: #999;
}

/* ---------------------- */
/* Enlace Leer más        */
/* ---------------------- */
.tf-contenido-trabajo .tf-leer-mas {
  color: #0073aa;
  text-decoration: none;
  font-weight: bold;
  margin-left: 5px;
}

.tf-contenido-trabajo .tf-leer-mas:hover {
  text-decoration: underline;
}

/* ---------------------- */
/* Responsive móvil       */
/* ---------------------- */
@media (max-width: 768px) {
  .tf-widget-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tf-widget-autor {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .tf-widget-autor-info {
    max-width: calc(100% - 74px);
  }

  .tf-widget-fecha {
    align-self: flex-end;
  }
}