/* interests.css — Recent Interests cards in the Explore tab. */

/* --- Recent Interests in Explore Tab --- */
.recent-interests-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.recent-interests-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #888);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  padding-left: 4px;
}

.recent-interests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .recent-interests-grid {
    grid-template-columns: 1fr;
  }
}

.interest-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  overflow: hidden;
}

.interest-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.light-mode .interest-card:hover {
  background: rgba(0, 0, 0, 0.05);
}

.interest-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.light-mode .interest-icon {
  background: rgba(0, 0, 0, 0.05);
}

.interest-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interest-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  justify-content: center;
}

.interest-label {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.interest-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.interest-sub {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
