.wm-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: sans-serif;
  text-align: left;
  position: relative;
}

.wm-content {
  max-width: 1600px;
  margin: 0 auto;
}

.wm-title {
  color: #192846;
  font-size: 42px;
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.wm-description {
  color: #192846;
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 60px;
  line-height: 1.5;
}

.wm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* --- Flip Card Logic --- */
.wm-flip-card {
  height: 380px;
  perspective: 1200px;
}

.wm-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.wm-flip-card:hover .wm-flip-card__inner,
.wm-flip-card--is-flipped .wm-flip-card__inner {
  transform: rotateY(180deg);
}

.wm-flip-card__front, 
.wm-flip-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 60px 60px 60px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.wm-flip-card__front {
  background: #EFF1FA;
}

.wm-flip-card__back {
  background: #EFF1FA;
  color: #192846;
  transform: rotateY(180deg);
  text-align: center;
  line-height: 1.6;
}

.wm-flip-card__back p {
  margin: 0;
  font-size: 16px;
}

.wm-flip-card__back b {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.wm-flip-card__avatar-wrapper {
  width: 110px;
  height: 110px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.wm-flip-card__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.wm-flip-card__label {
  color: #192846;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .wm-section {
    padding: 40px 20px;
  }

  .wm-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .wm-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .wm-flip-card {
    height: 320px;
  }

  .wm-flip-card__label {
    font-size: 18px;
  }
}