/* ===== WORKSHOPS LISTING PAGE STYLES ===== */

/* Header */
.page-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 32px;
}

.page-header-accent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.page-header-line {
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, #7c3aed, #22d3ee);
  border-radius: 2px;
}

.page-header-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a78bfa;
  text-transform: uppercase;
}

.page-header-title {
  font-family: var(--font-heading), sans-serif;
  font-weight: 800;
  font-size: 44px;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.page-header-title .gradient-text {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-header-desc {
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  margin: 0;
}

/* Search & Filters */
.search-filters {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 8px;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 18px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 1.0);
  flex: none;
  pointer-events: none;
}

.search-input {
  width: 100% !important;
  background: rgba(18, 20, 28, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 10px !important;
  padding: 13px 16px 13px 44px !important;
  color: rgba(255, 255, 255, 1.0) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 1.0) !important;
  opacity: 1 !important;
}

.search-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 1.0) !important;
  opacity: 1 !important;
}

.search-input:-moz-placeholder {
  color: rgba(255, 255, 255, 1.0) !important;
  opacity: 1 !important;
}

.search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 1.0) !important;
  opacity: 1 !important;
}

.search-input:focus {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15), inset 0 0 0 1px rgba(124, 58, 237, 0.2);
  background: rgba(18, 20, 28, 1);
}

.search-input:hover {
  border-color: rgba(255, 255, 255, 0.20);
}

.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 6px;
}

.filter-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  flex: none;
  margin: 2px 4px;
}

.chip {
  background: transparent;
  color: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  flex: none;
  transition: all 0.2s;
}

.chip:hover {
  border-color: rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 1.0);
}

.chip.active {
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
}

.filter-results {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 1.0);
  margin-bottom: 24px;
}

.filter-results-count {
  color: #fff;
  font-weight: 700;
}

/* Workshop List */
.workshops-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 90px;
}

.workshop-list-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.workshop-list-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: border-color 0.2s;
}

.workshop-list-item:hover {
  border-color: rgba(255, 255, 255, 0.20);
}

.workshop-list-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 20px;
  margin-right: 2px;
}

.workshop-list-date-month {
  font-size: 11px;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.05em;
}

.workshop-list-date-day {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.workshop-list-date-dow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.95);
}

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

.workshop-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.workshop-list-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.workshop-list-tag-category {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.workshop-list-tag-level {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.workshop-list-tag-level.beginner {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.workshop-list-tag-level.intermediate {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.workshop-list-tag-level.advanced {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.workshop-list-tag-duration {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
}

.workshop-list-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.workshop-list-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 1.0);
  margin-bottom: 10px;
}

.workshop-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
}

.workshop-list-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.workshop-list-meta-item svg {
  width: 13px;
  height: 13px;
  flex: none;
}

.workshop-list-seats {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 999px;
}

.workshop-list-seats.few {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.workshop-list-seats.some {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.workshop-list-seats.many {
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
}

.workshop-list-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: none;
}

.workshop-list-price {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.workshop-list-rating {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.95);
}

.workshop-list-rating-count {
  color: rgba(255, 255, 255, 1.0);
}

.workshop-list-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  border: none;
  cursor: pointer;
}

.workshop-list-link:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.workshop-list-link svg {
  width: 13px;
  height: 13px;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 1.0);
  font-size: 14.5px;
}

/* Responsive */
@media (max-width: 720px) {
  .workshop-list-item {
    flex-wrap: wrap;
  }

  .workshop-list-date {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-top: 12px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 12px !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  .workshop-list-right {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-top: 12px !important;
  }
}

/* ===== LEARNING METHODOLOGY ===== */
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.methodology-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px;
}

.methodology-step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.methodology-step-title {
  font-family: var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 6px;
}

.methodology-step-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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