/* ============================================
   Wintertime Special Workshops - Additional CSS
   Uses workshop-registration.css as base
   Version 3 - Polished UI
   ============================================ */

/* ===== Hero - Brand Gradient with extra padding for overlap ===== */
.ws-hero {
  background-image: linear-gradient(
      100deg,
      rgba(30, 41, 59, 0.88) 0%,
      rgba(45, 55, 72, 0.75) 35%,
      rgba(55, 65, 81, 0.45) 60%,
      rgba(100, 116, 139, 0.2) 100%
    ),
    url("/e15/images/business-apps/ws-reg-hero-2.jpg");
  background-size: cover;
  background-position: center right;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.wt-hero h1 {
  margin-bottom: 10px;
}

.wt-hero .ws-hero-subtitle {
  margin-bottom: 12px;
}

.wt-hero-dates {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.wt-hero-dates i {
  opacity: 0.8;
}

/* ===== Intro Section ===== */
.wt-intro {
  padding: 0 0 50px;
  background: white;
  position: relative;
}

.wt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* ===== Glassmorphism Sidebar - Overlaps Hero ===== */
.wt-intro-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.wt-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Offer Card */
.wt-offer-card .wt-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wt-offer-card .wt-card-header i {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1em;
}

.wt-offer-card .wt-card-header span {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.1em;
}

.wt-offer-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0 0 12px;
}

.wt-offer-card p:last-child {
  margin-bottom: 0;
}

.wt-offer-deadline {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95em;
  line-height: 1.5;
}

.wt-offer-deadline strong {
  color: white;
}

/* Contact Card */
.wt-contact-card .wt-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wt-contact-card .wt-card-header i {
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.wt-contact-card .wt-card-header span {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.wt-contact-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.15em;
  margin-bottom: 12px;
}

.wt-contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wt-contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.9em;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.wt-contact-links a:hover {
  background: rgba(107, 184, 190, 0.1);
  color: var(--primary-dark);
  text-decoration: none;
}

.wt-contact-links a i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}

/* ===== Left Column - Main Content ===== */
.wt-intro-main {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wt-intro-block h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 14px;
}

.wt-intro-block p {
  color: var(--text-medium);
  line-height: 1.75;
  margin: 0 0 12px;
}

.wt-intro-block p:last-child {
  margin-bottom: 0;
}

/* ===== Form Section ===== */
.wt-form-section {
  padding: 50px 0;
  background: var(--bg-light);
}

.wt-section-desc {
  color: var(--text-light);
  margin: -15px 0 25px 63px;
}

/* ===== Tab Counter Badge ===== */
.ws-tab-count {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--primary);
  color: white;
  border-radius: 11px;
  font-size: 0.8em;
  font-weight: 700;
  margin-left: 4px;
}

.ws-tab.active .ws-tab-count {
  background: var(--primary-dark);
  color: white;
}

/* ===== Workshop Cards Grid - Enhanced ===== */
.wt-workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wt-workshop-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid var(--border);
  display: flex;
  gap: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wt-workshop-card::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.04;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.wt-workshop-card:hover::before {
  opacity: 0.07;
}

/* Workshop icons - each workshop type */
.wt-workshop-card[data-workshop="01"]::before {
  background-image: url("/e15/pages/workshops/wintertime/icons/eye.svg");
}

.wt-workshop-card[data-workshop="02"]::before {
  background-image: url("/e15/pages/workshops/wintertime/icons/gears.svg");
}

.wt-workshop-card[data-workshop="03"]::before {
  background-image: url("/e15/pages/workshops/wintertime/icons/converse.svg");
}

.wt-workshop-card[data-workshop="04"]::before {
  background-image: url("/e15/pages/workshops/wintertime/icons/file-lines.svg");
}

.wt-workshop-card[data-workshop="05"]::before {
  background-image: url("/e15/pages/workshops/wintertime/icons/share.svg");
}

.wt-workshop-card[data-workshop="06"]::before {
  background-image: url("/e15/pages/workshops/wintertime/icons/books.svg");
}

.wt-workshop-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.wt-workshop-card.has-selection {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(107, 184, 190, 0.03) 0%, white 100%);
}

.wt-workshop-number {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1em;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.wt-workshop-card:hover .wt-workshop-number {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.wt-workshop-card.has-selection .wt-workshop-number {
  border-color: var(--primary);
  color: white;
  background: var(--primary);
}

.wt-workshop-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.wt-workshop-content h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.wt-workshop-date {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 0.95em;
}

.wt-workshop-date i {
  color: var(--primary);
  margin-right: 8px;
}

/* ===== Time Selection - Enhanced Clickable UI ===== */
.wt-workshop-times {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.wt-time-option {
  cursor: pointer;
  flex: 1;
  min-width: 120px;
}

.wt-time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wt-time-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  position: relative;
}

.wt-time-badge::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.5;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.wt-time-morning {
  background: #e8f5e9;
  color: #2e7d32;
}

.wt-time-afternoon {
  background: #fff3e0;
  color: #ef6c00;
}

.wt-time-german {
  background: #fce4ec;
  color: #c2185b;
}

.wt-time-apac {
  background: #e3f2fd;
  color: #1565c0;
}

.wt-time-americas {
  background: #f3e5f5;
  color: #7b1fa2;
}

.wt-time-option:hover .wt-time-badge {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wt-time-option:hover .wt-time-badge::before {
  opacity: 0.8;
}

.wt-time-option input:checked + .wt-time-badge {
  border-color: currentColor;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.wt-time-option input:checked + .wt-time-badge::before {
  background: currentColor;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Focus state for accessibility */
.wt-time-option input:focus-visible + .wt-time-badge {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.wt-tutorial-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-size: 0.9em;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 6px 0;
}

.wt-tutorial-link:hover {
  color: var(--primary-darker);
  text-decoration: none;
  gap: 8px;
}

.wt-tutorial-link i {
  font-size: 1.1em;
}

/* ===== Participation Card - Enhanced with Checkboxes ===== */
.wt-participation-card {
  margin-top: 30px;
}

.wt-participation-card .ws-form-card-header {
  flex-wrap: wrap;
  gap: 12px 15px;
}

.wt-participation-card .ws-form-card-header h3 {
  margin-right: auto;
}

.wt-participation-hint {
  color: var(--text-light);
  font-size: 0.9em;
  font-weight: 400;
}

.wt-participation-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.wt-participation-option {
  cursor: pointer;
  display: block;
}

.wt-participation-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wt-participation-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.25s ease;
  height: 100%;
}

.wt-participation-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.wt-participation-checkbox i {
  font-size: 12px;
  color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wt-participation-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.wt-participation-icon i {
  font-size: 22px;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.wt-participation-text {
  flex: 1;
}

.wt-participation-text strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 1.05em;
}

.wt-participation-text span {
  color: var(--text-light);
  font-size: 0.9em;
  line-height: 1.5;
  display: block;
}

.wt-participation-option:hover .wt-participation-content {
  border-color: var(--primary-light);
  background: var(--bg-light);
}

.wt-participation-option:hover .wt-participation-checkbox {
  border-color: var(--primary);
}

.wt-participation-option:hover .wt-participation-icon {
  background: var(--primary-light);
}

.wt-participation-option:hover .wt-participation-icon i {
  color: var(--primary);
}

.wt-participation-option input:checked + .wt-participation-content {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
}

.wt-participation-option
  input:checked
  + .wt-participation-content
  .wt-participation-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

.wt-participation-option
  input:checked
  + .wt-participation-content
  .wt-participation-checkbox
  i {
  opacity: 1;
}

.wt-participation-option
  input:checked
  + .wt-participation-content
  .wt-participation-icon {
  background: var(--primary);
}

.wt-participation-option
  input:checked
  + .wt-participation-content
  .wt-participation-icon
  i {
  color: white;
}

/* Focus state for accessibility */
.wt-participation-option input:focus-visible + .wt-participation-content {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ===== Submit Section - Redesigned ===== */
.wt-submit-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  border: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.wt-submit-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.wt-submit-captcha {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wt-captcha-label {
  color: var(--text-medium);
  font-weight: 600;
  font-size: 0.95em;
}

.wt-captcha-label .required {
  color: #c0392b;
}

.wt-submit-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
  height: 100%;
}

.wt-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
  width: 100%;
}

.wt-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.wt-submit-btn:active {
  transform: translateY(0);
}

.wt-submit-btn:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

.wt-privacy-text {
  color: var(--text-light);
  font-size: 0.85em;
  line-height: 1.6;
  text-align: center;
}

.wt-privacy-text a {
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: none;
}

.wt-privacy-text a:hover {
  text-decoration: underline;
}

/* ===== How It Works Section - Styled ===== */
.wt-tech-info {
  padding: 60px 0;
  background: white;
  border-top: 1px solid var(--border);
}

.wt-tech-header {
  text-align: center;
  margin-bottom: 48px;
}

.wt-tech-header h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.wt-tech-header p {
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.wt-tech-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.wt-tech-step {
  flex: 1;
  max-width: 300px;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.wt-tech-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.wt-tech-step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px var(--primary-glow);
}

.wt-tech-step-icon i {
  font-size: 26px;
  color: white;
}

.wt-tech-step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85em;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wt-tech-step-content h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 1.1em;
}

.wt-tech-step-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
  font-size: 0.95em;
}

.wt-tech-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--border);
}

.wt-tech-arrow i {
  font-size: 24px;
}

.wt-tech-requirements {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.wt-tech-req-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 1.1em;
}

.wt-tech-req-title i {
  color: var(--primary);
  font-size: 1.2em;
}

.wt-tech-req-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.wt-tech-req-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  font-size: 0.95em;
}

.wt-tech-req-list span i {
  color: var(--primary);
  font-size: 0.9em;
}

/* ===== Prerequisites Section ===== */
.wt-prerequisites {
  padding: 40px 0;
  background: white;
  border-top: 1px solid var(--border);
}

.wt-prereq-wrapper {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
}

.wt-prereq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.wt-prereq-header i {
  font-size: 1.3em;
  color: var(--primary);
}

.wt-prereq-header h3 {
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
}

.wt-prereq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-bottom: 16px;
}

.wt-prereq-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-medium);
  line-height: 1.5;
}

.wt-prereq-item i {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.wt-prereq-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.wt-prereq-note {
  color: var(--text-light);
  font-size: 0.9em;
  margin: 0;
}

.wt-prereq-locations {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-medium);
  font-size: 0.9em;
  white-space: nowrap;
}

.wt-prereq-locations i {
  color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .wt-hero {
    padding-bottom: 80px;
  }

  .wt-intro-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wt-intro-sidebar {
    margin-top: -60px;
    flex-direction: row;
    gap: 16px;
  }

  .wt-intro-sidebar > * {
    flex: 1;
  }

  .wt-intro-main {
    padding-top: 30px;
  }

  .wt-prereq-list {
    grid-template-columns: 1fr;
  }

  .wt-prereq-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .wt-tech-flow {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .wt-tech-step {
    max-width: 400px;
    width: 100%;
  }

  .wt-tech-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .wt-submit-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wt-submit-captcha {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .wt-hero {
    padding: 35px 0 70px;
  }

  .wt-hero-dates {
    font-size: 1.05em;
  }

  .wt-intro-sidebar {
    flex-direction: column;
    margin-top: -50px;
  }

  .wt-intro-main {
    padding-top: 24px;
    gap: 24px;
  }

  .wt-form-section {
    padding: 35px 0;
  }

  .wt-section-desc {
    margin-left: 0;
  }

  .wt-workshops-grid {
    grid-template-columns: 1fr;
  }

  .wt-workshop-card {
    gap: 14px;
  }

  .wt-workshop-card::before {
    width: 100px;
    height: 100px;
    right: -15px;
    bottom: -15px;
  }

  .wt-workshop-number {
    width: 38px;
    height: 38px;
    font-size: 0.9em;
  }

  .wt-participation-options {
    grid-template-columns: 1fr;
  }

  .wt-participation-card .ws-form-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .wt-participation-hint {
    margin-top: -4px;
  }

  .wt-prerequisites {
    padding: 30px 0;
  }

  .wt-prereq-wrapper {
    padding: 20px;
  }

  .wt-tech-info {
    padding: 40px 0;
  }

  .wt-tech-header {
    margin-bottom: 32px;
  }

  .wt-tech-requirements {
    padding: 20px;
  }

  .wt-tech-req-list {
    flex-direction: column;
    gap: 12px;
  }

  .wt-submit-card {
    padding: 20px;
  }

  .wt-submit-btn {
    padding: 16px 32px;
  }
}

@media (max-width: 576px) {
  .wt-workshop-times {
    flex-direction: column;
  }

  .wt-time-option {
    min-width: auto;
  }

  .wt-time-badge {
    width: 100%;
  }

  .wt-glass-card {
    padding: 20px;
  }

  .wt-participation-content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .wt-participation-icon {
    width: 40px;
    height: 40px;
  }

  .wt-participation-icon i {
    font-size: 18px;
  }

  .wt-tech-step {
    padding: 24px 20px;
  }

  .wt-tech-step-icon {
    width: 52px;
    height: 52px;
  }

  .wt-tech-step-icon i {
    font-size: 22px;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  .wt-workshop-card,
  .wt-time-badge,
  .wt-participation-content,
  .wt-tech-step,
  .wt-submit-btn {
    transition: none;
  }
}
