/* ============================================
   WORKSHOP SECTION STYLES
   Horizontal layout with full-width rows
   ============================================ */
 
/* Main container for all workshops */
.workshops-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
 
/* Individual workshop row */
.workshop-row {
  display: flex;
  gap: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.workshop-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
 
/* Left column - Image and Logo */
.workshop-image-col {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  position: relative;
}
 
.workshop-image-col .workshop-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
 
.workshop-logo-container {
  padding: 2rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 140px;
}
 
.workshop-logo {
  max-width: 260px;
  max-height: 120px;
  object-fit: contain;
}
 
.workshop-logo-placeholder {
  padding: 1rem;
  background: #e9ecef;
  border-radius: 4px;
  font-weight: 600;
  color: #495057;
  text-align: center;
}
 
/* Right column - Content */
.workshop-content-col {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
 
/* Workshop Header (Time and Provider) */
.workshop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e9ecef;
}
 
.workshop-time {
  font-weight: 600;
  color: var(--primary-blue, #0066cc);
  font-size: 1rem;
}
 
.workshop-provider {
  background: var(--primary-blue, #0066cc);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
/* Workshop Title */
.workshop-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}
 
/* Workshop Description */
.workshop-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
 
/* Learning Outcomes List */
.workshop-outcomes {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
 
.workshop-outcomes li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
 
.workshop-outcomes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue, #0066cc);
  font-weight: bold;
  font-size: 1.1rem;
}
 
/* Workshop Pricing */
.workshop-pricing {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
}
 
.workshop-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border-radius: 6px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}
 
.workshop-price:hover {
  background: #e9ecef;
  border-color: var(--primary-blue, #0066cc);
}
 
.price-label {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue, #0066cc);
}
 
/* Section Intro Text */
.section-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}
 
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
 
/* Tablet and smaller laptops */
@media (max-width: 968px) {
  .workshop-row {
    flex-direction: column;
  }
  
  .workshop-image-col {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .workshop-image-col .workshop-photo {
    height: 200px;
  }
  
  .workshop-content-col {
    padding: 1.25rem;
  }
  
  .workshop-title {
    font-size: 1.35rem;
  }
}
 
/* Mobile phones */
@media (max-width: 640px) {
  .workshops-container {
    gap: 1.5rem;
  }
  
  .workshop-row {
    gap: 0;
  }
  
  .workshop-image-col .workshop-photo {
    height: 180px;
  }
  
  .workshop-content-col {
    padding: 1rem;
  }
  
  .workshop-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .workshop-title {
    font-size: 1.25rem;
  }
  
  .workshop-desc {
    font-size: 0.95rem;
  }
  
  .workshop-outcomes li {
    font-size: 0.9rem;
    padding-left: 1.25rem;
  }
  
  .workshop-pricing {
    flex-direction: row;
    gap: 1rem;
  }
  
  .workshop-price {
    flex: 1;
    padding: 0.5rem 1rem;
  }
  
  .price-label {
    font-size: 0.75rem;
  }
  
  .price-amount {
    font-size: 1.25rem;
  }
}
 
/* Extra small screens */
@media (max-width: 480px) {
  .workshop-pricing {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .workshop-price {
    width: 100%;
  }
}
 
/* ============================================
   PRINT STYLES
   ============================================ */
 
@media print {
  .workshop-row {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
  }
  
  .workshop-row:hover {
    transform: none;
    box-shadow: none;
  }
}