/* Likes page specific styles */
.likes-main {
  max-width: 800px;
  width: 100%;
  padding: 0 1rem;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.breadcrumb-link {
  color: #2d8cff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: #666;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 500;
}

.likes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.likes-header h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.likes-subtitle {
  font-size: 1.1rem;
  color: #bbb;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.likes-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.likes-section {
  width: 100%;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.likes-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.likes-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.likes-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.item-content {
  flex: 1;
  min-width: 0;
}

.item-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}

.item-author,
.item-category {
  font-size: 0.9rem;
  color: #2d8cff;
  margin: 0 0 0.8rem 0;
  font-weight: 500;
}

.item-description {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
  line-height: 1.5;
}

.item-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.item-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(45, 140, 255, 0.1);
  color: #2d8cff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(45, 140, 255, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.item-link:hover {
  background: #2d8cff;
  color: #fff;
  border-color: #2d8cff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(45, 140, 255, 0.2);
}

.back-link {
  color: #2d8cff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 1rem;
}

.back-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .likes-main {
    padding: 0 0.5rem;
  }

  .likes-header h1 {
    font-size: 2rem;
  }

  .likes-subtitle {
    font-size: 1rem;
  }

  .likes-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
  }

  .item-actions {
    align-self: flex-start;
  }

  .item-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .likes-header h1 {
    font-size: 1.8rem;
  }

  .likes-subtitle {
    font-size: 0.95rem;
  }

  .likes-item {
    padding: 1rem;
  }

  .item-title {
    font-size: 1.1rem;
  }

  .item-description {
    font-size: 0.9rem;
  }
}