/* End slide: "Learn more" workshop cards */

.end-slide-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
}

.end-slide-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.end-slide-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.025em;
}

.end-slide-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
}

.end-slide-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 900px;
  perspective: 1000px;
}

.end-slide-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  padding: 1.75rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease;
  border: 1px solid #e2e8f0;
  background: #fff;
  opacity: 0;
  transform: translateY(12px);
}

.end-slide-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.end-slide-card-tilt {
  transition: box-shadow 0.2s ease;
}

.end-slide-card:hover {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.end-slide-card:not(.end-slide-card-tilt):hover {
  transform: translateY(-4px);
}

.end-slide-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.end-slide-card-agile .end-slide-card-icon {
  background: #ede9fe;
  color: #6d28d9;
}

.end-slide-card-git .end-slide-card-icon {
  background: #fce7f3;
  color: #be185d;
}

.end-slide-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
}

.end-slide-card-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  flex: 1;
}

.end-slide-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.end-slide-card:hover .end-slide-card-link {
  text-decoration: underline;
}

.end-slide-card-agile:hover { border-color: #c4b5fd; }
.end-slide-card-git:hover { border-color: #f9a8d4; }
