/* PodSyndiConnect Base Styles */

:root {
  --psc-primary: #ff5a5f;
  --psc-secondary: #008489;
  --psc-accent: #f2c94c;
  --psc-dark: #222222;
  --psc-light: #f7f7f7;
  --psc-radius: 8px;
  --psc-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  --psc-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--psc-font);
  color: var(--psc-dark);
  background: #ffffff;
  margin: 0;
}

/* Layout */

.psc-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.psc-section {
  padding: 60px 0;
}

/* Buttons */

.psc-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.psc-btn-primary {
  background: var(--psc-primary);
  color: #fff;
}

.psc-btn-primary:hover {
  background: #e0484d;
}

.psc-btn-secondary {
  background: var(--psc-secondary);
  color: #fff;
}

.psc-btn-secondary:hover {
  background: #006a6e;
}

/* Hero */

.psc-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #ff5a5f, #ff9a62);
  color: #fff;
  text-align: center;
}

.psc-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.psc-hero p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* Grid */

.psc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Cards */

.psc-card {
  background: #fff;
  border-radius: var(--psc-radius);
  box-shadow: var(--psc-shadow);
  padding: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.psc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.psc-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.psc-card-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.psc-card-avatar img {
  border-radius: 50%;
}

.psc-card-title {
  margin: 0 0 4px;
  font-size: 18px;
}

.psc-card-rating {
  font-size: 13px;
  color: #f39c12;
}

.psc-card-level {
  font-size: 12px;
  color: var(--psc-secondary);
}

.psc-card-excerpt {
  font-size: 14px;
  color: #555;
}

/* Badges */

.psc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.psc-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.psc-badge-featured {
  background: #f2c94c;
  color: #222;
}

.psc-badge-top-rated {
  background: #27ae60;
  color: #fff;
}

.psc-badge-highly-recommended {
  background: #2980b9;
  color: #fff;
}

.psc-badge-rising-star {
  background: #9b59b6;
  color: #fff;
}

.psc-badge-new-talent {
  background: #95a5a6;
  color: #fff;
}

/* Reviews */

.psc-reviews-summary {
  margin-top: 8px;
  font-size: 14px;
}

.psc-reviews-score-number {
  font-weight: 700;
  margin-right: 4px;
}

.psc-reviews-list {
  margin-top: 16px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.psc-review-item {
  margin-bottom: 12px;
}

.psc-review-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
}

.psc-review-body {
  font-size: 14px;
  color: #444;
}

/* Profile */

.psc-profile-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.psc-profile-avatar img {
  border-radius: 50%;
}

.psc-profile-meta h1 {
  margin: 0 0 8px;
}

.psc-profile-bio {
  margin-bottom: 20px;
}

.psc-profile-details h2 {
  margin-top: 20px;
  margin-bottom: 8px;
}

/* Archive headers */

.psc-archive-header {
  padding: 40px 0 20px;
  background: var(--psc-light);
}

.psc-archive-header h1 {
  margin: 0 0 6px;
}

/* Pagination */

.psc-pagination {
  margin-top: 24px;
}

/* Onboarding */

.psc-onboard h1 {
  margin-bottom: 16px;
}

/* Admin / Analytics */

.psc-admin-dashboard h1,
.psc-platform-analytics h1 {
  margin-bottom: 16px;
}

/* Responsive */

@media (max-width: 768px) {
  .psc-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
