{% require_css %}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=League+Spartan:wght@300;400;600;700&display=swap" rel="stylesheet">
{% end_require_css %}

{% scope_css %}
/* ============================================
   AutomateNow Team Display Module
   ============================================ */

.team-display {
  width: 100%;
  box-sizing: border-box;
  padding: 60px 20px;
}

.team-display__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Header */
.team-display__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

.team-display__title {
  width: 440px;
  max-width: 100%;
  font-family: "League Spartan", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  margin: 0;
  padding: 0;
  text-align: left;
}

.team-display__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 287px;
  height: 35px;
  border-radius: 30px;
  background-color: #FF6B35;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 0 20px;
  box-sizing: border-box;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.team-display__cta:hover {
  background-color: #E55A2B;
}

/* Grid */
.team-display__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 40px;
  justify-items: center;
}

/* Card */
.team-card {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.team-card__photo-wrapper {
  width: 271px;
  height: 271px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  box-sizing: border-box;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding-top: 65px;
  overflow: visible;
}

.team-card__name-role {
  width: 300px;
  max-width: 100%;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.team-card__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  margin: 0;
}

.team-card__role {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  margin: 4px 0 0 0;
}

.team-card__description {
  width: 338px;
  max-width: 100%;
  min-height: 180px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #000000;
  margin: 0;
  margin-bottom: 4px;
}

.team-card__description p {
  margin: 0 0 8px 0;
}

.team-card__highlight {
  width: 338px;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #000000;
  margin: 0 0 16px 0;
}

/* Social Buttons */
.team-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.team-card__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: transparent;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.team-card__social-btn--linkedin {
  width: 26px;
  height: 28px;
}

.team-card__social-btn--email {
  width: 27px;
  height: 20px;
  border-radius: 12px;
  background-color: transparent;
  font-size: 12px;
}

.team-card__social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
  .team-display__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .team-display__title {
    width: 100%;
  }

  .team-display__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .team-display {
    padding: 40px 16px;
  }

  .team-display__header {
    align-items: flex-start;
  }

  .team-display__title {
    font-size: 32px;
  }

  .team-display__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .team-display__title {
    font-size: 28px;
  }

  .team-display__cta {
    width: 100%;
  }
}

{% end_scope_css %}


