.editor-pick {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 1rem;
}

/* imagem quadrada */
.editor-image {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.editor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* hover apenas na imagem */
.editor-pick:hover .editor-image img {
  transform: scale(1.05);
}

/* conteúdo */
.editor-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.editor-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #10b981; /* mesmo verde do hover */
  letter-spacing: 0.05em;
}

.editor-category a {
  color: inherit;
}

.editor-category a:hover {
  text-decoration: underline;
}

.editor-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  transition: color 0.3s;
  margin-bottom: 0.6rem;
}

.editor-pick:hover .editor-title {
  color: #10b981;
}

.editor-date {
  font-size: 0.75rem;
  color: #6b7280;
}
