/* Premium Components CSS */

.premium-team-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.founder-card-refined {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.founder-card-refined::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #013f8c; /* Brand Blue */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.founder-card-refined:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(1, 63, 140, 0.06);
  border-color: rgba(1, 63, 140, 0.1);
}

.founder-card-refined:hover::before {
  opacity: 1;
}

.founder-img-wrapper {
  flex: 0 0 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.founder-card-refined:hover .founder-img-wrapper img {
  transform: scale(1.05);
}

.founder-bio-content {
  flex: 1;
}

.founder-name-refined {
  font-size: 28px;
  font-weight: 700;
  color: #013f8c; /* Brand Blue */
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.founder-text-refined {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  font-weight: 400;
  text-align: justify;
}

.founder-accent-line {
  width: 35px;
  height: 3px;
  background: #013f8c; /* Brand Blue */
  display: block;
  margin-bottom: 16px;
  border-radius: 2px;
}

.founder-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #64748b; /* Secondary */
  margin-bottom: 10px;
  display: block;
}

@media (max-width: 991px) {
  .founder-card-refined {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 24px;
  }

  .founder-img-wrapper {
    flex: 0 0 200px;
    height: 200px;
    margin: 0 auto;
  }

  .founder-text-refined {
    text-align: center;
    font-size: 15px;
  }

  .founder-accent-line {
    margin: 0 auto 16px;
  }

  .founder-name-refined {
    font-size: 24px;
  }
}
