.workshop-container {
  padding: 2rem 0;
}

.workshop-card {
  display: grid;
  grid-template-columns: 400px 1fr; /* Increased image width */
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--container-bg);
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.workshop-card:hover {
  transform: translateY(-5px);
}

.workshop-image {
  width: 400px; /* Increased image width */
  height: 250px; /* Increased image height */
  object-fit: cover;
  border-radius: 8px;
}

.workshop-content h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 1.5rem; /* Increased heading size */
}

.workshop-content p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.9rem; /* Reduced text size */
  max-width: 400px; /* Limit text width */
}

@media (max-width: 768px) {
  .workshop-card {
    grid-template-columns: 1fr;
  }

  .workshop-image {
    width: 100%;
    height: 200px; /* Adjusted height for mobile */
  }

  .workshop-content p {
    max-width: 100%; /* Full width on mobile */
  }
}