/**
 * Bloc Créateur sur Page Expérience
 * Style inspiré de WeCandoo - Moderne et Professionnel
 * Créé le 27/10/2025
 */

.andala-creator-block {
  padding: 4rem 0;
  background: linear-gradient(135deg, #FFF8F6 0%, #FFFFFF 100%);
}

.andala-creator-block__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 1rem;
}

.andala-creator-block__separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #88C9BF 0%, #009688 100%);
  border: none;
  margin: 1rem auto 3rem;
  border-radius: 2px;
}

.andala-creator-block__content {
  align-items: center;
  gap: 2rem;
  display: flex !important;
  flex-wrap: nowrap !important;
}

/* Photo du créateur */
.andala-creator-block__photo-col {
  text-align: center;
  margin-bottom: 0;
  flex: 0 0 250px;
  max-width: 250px;
}

.andala-creator-block__photo-wrapper {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.andala-creator-block__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.andala-creator-block__photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.andala-creator-block__metier {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #009688;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Description */
.andala-creator-block__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
  flex: 1;
}

.andala-creator-block__description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 2rem;
}

.andala-creator-block__description strong {
  color: #2C3E50;
  font-weight: 600;
}

.andala-creator-block__description em {
  font-style: italic;
  color: #009688;
}

.andala-creator-block__description u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Bouton Actions */
.andala-creator-block__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.andala-creator-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #88C9BF 0%, #009688 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.andala-creator-block__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 150, 136, 0.4);
  color: #fff;
  text-decoration: none;
}

.andala-creator-block__btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.andala-creator-block__btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .andala-creator-block {
    padding: 3rem 0;
  }
  
  .andala-creator-block__title {
    font-size: 1.75rem;
  }
  
  .andala-creator-block__content {
    gap: 1.5rem;
  }
  
  .andala-creator-block__photo-col {
    margin-bottom: 1.5rem;
  }
  
  .andala-creator-block__description {
    text-align: left;
    font-size: 1rem;
  }
  
  .andala-creator-block__btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 769px) {
  .andala-creator-block__photo-col {
    margin-bottom: 0;
  }
  
  .andala-creator-block__actions {
    justify-content: flex-start;
  }
}
