/*
 * About Us - Bootstrap Custom Styles
 * Page-specific styles only (common styles in common-bootstrap.css)
 */

/* ========================================
   ICANA LOGO
   ======================================== */

.icana-logo {
  width: 120px;
  height: auto;
}

/* ========================================
   ADVANTAGE ITEMS
   ======================================== */

.advantage-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ========================================
   LEADERSHIP TEAM
   ======================================== */

.leader-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.leader-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.leader-title {
  font-size: 1.25rem;
  color: var(--primary-hover);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 992px) {
  .leader-photo {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .advantage-icon {
    width: 60px;
    height: 60px;
  }

  .leader-photo {
    width: 120px;
    height: 120px;
  }

  .leader-title {
    font-size: 1.1rem;
  }
}
