/* ===== EQUIPE PAGE STYLES ===== */

/* CEO Section */
.cs-ceo-section {
  padding: 4rem 0;
}

.cs-ceo-section .cs-dual {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.cs-ceo-photo-wrap {
  display: flex;
  justify-content: center;
}

.cs-ceo-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid var(--cs-orange);
  overflow: hidden;
  flex-shrink: 0;
}

.cs-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-ceo-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-ceo-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cs-heading, #fff);
  margin: 0;
  line-height: 1.2;
}

.cs-ceo-role {
  font-size: 1.1rem;
  color: var(--cs-orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cs-ceo-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cs-text, #ccc);
  margin: 0 0 1rem;
}

/* Social Links */
.cs-ceo-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cs-ceo-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cs-text, #ccc);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cs-ceo-social a:hover {
  color: var(--cs-orange);
}

.cs-ceo-social a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* CTA Button */
.cs-ceo-info .cs-btn {
  align-self: flex-start;
}

/* Values Section */
.cs-values-section {
  padding: 4rem 0;
}

.cs-values-section .cs-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cs-ceo-section .cs-dual {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cs-ceo-photo {
    width: 220px;
    height: 220px;
  }

  .cs-ceo-info {
    align-items: center;
  }

  .cs-ceo-social {
    justify-content: center;
  }

  .cs-ceo-info .cs-btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .cs-ceo-photo {
    width: 180px;
    height: 180px;
  }

  .cs-ceo-name {
    font-size: 1.6rem;
  }
}