.workshops-page {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
  color: #111827;
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.workshops-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1e293b;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.workshop-card {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.workshop-card.upcoming {
  border-left: 4px solid #2563eb;
}

.workshop-card .status {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.workshop-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.6rem;
}

.workshop-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.workshop-card .date {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.workshop-card a {
  text-decoration: none;
  font-weight: 600;
  color: #2563eb;
  transition: color 0.3s ease;
}

.workshop-card a:hover {
  color: #1d4ed8;
}
/* Force workshops page full width */
#main_content.inner {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.workshops-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 3rem 5%;
  box-sizing: border-box;
}
