/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: var(--text-color);
}

.titlecolor{
	color: #0693e3!important;
}

.team-section-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* --- Project Leader Section --- */
.leader-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.leader-photo-box {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid var(--theme-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.leader-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-info-box {
  max-width: 800px;
}

.leader-info-box h4 {
  font-size: 1.8em;
  color: var(--theme-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.leader-info-box span {
  font-size: 1.2em;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: normal;
  display: block;
}

.leader-info-box p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* Desktop layout for leader section */
@media (min-width: 768px) {
  .leader-section {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .leader-photo-box {
    margin-right: 40px;
    margin-bottom: 0;
  }
}

/* --- Section Divider --- */
.divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 60px 0;
}

/* --- Project Staff Grid Section --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1px)); /* The closing parenthesis was missing here */
  gap: 25px;
  justify-content: center;
}

.staff-member {
  background-color: var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.staff-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.staff-img-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
}

.staff-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-info-container h2 {
  font-size: 1.1em;
  color: var(--theme-color);
  margin: 0 0 5px 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.staff-info-container span {
  font-size: 0.9em;
  color: #666;
  margin: 0;
}