/**
* Theme Name: WiHelp Child
* Description: This is a child theme of WiHelp, generated by Merlin WP.
* Author: <a href="https://pavothemes.com/">Pavothemes</a>
* Template: wihelp
* Version: 1.2.19
*/

/* Popup wrapper */
.mfp-content .white-popup {
  display: flex;
  gap: 30px;
  max-width: 800px;
  padding: 30px;
  background: #fff;
	position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Image left */
.mfp-content .team-image {
  flex: 0 0 35%;
}

.mfp-content .team-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* Content right */
.mfp-content .content {
  flex: 1;
}

/* Team name */
.mfp-content .team-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 5px;
}

/* Job title */
.mfp-content .team-job {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

/* Social icons */
.mfp-content .team-icon-socials ul {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0 0 15px;
  list-style: none;
}

.mfp-content .team-icon-socials li.social {
  display: inline-flex;
}

/* Link bao icon */
.mfp-content .team-icon-socials li.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
}

/* SVG icon */
.mfp-content .team-icon-socials li.social svg {
  width: 30px;
  height: 30px;
  fill: #000;
  transition: all 0.3s ease;
}

/* Hover */
.mfp-content .team-icon-socials li.social a:hover svg {
  fill: #555;
  transform: scale(1.1);
}

/* Description */
.mfp-content .description {
  font-size: 14px;
  line-height: 1.6;
  color: #535353;
}

@media (max-width: 578px) {
  .mfp-content .white-popup {
    flex-direction: column;
        padding: 15px;
        width: 360px;
  }

  .mfp-content .team-image {
    flex: 100%;
  }
}