
/* Main10 Team trading card page */

.team-hero-current {
  background: linear-gradient(135deg, #d61e28 0%, #c41721 100%);
  color: #fff;
}

.team-hero-current .container {
  max-width: 980px;
}

.team-hero-current .breadcrumbs,
.team-hero-current .breadcrumbs a,
.team-hero-current .crumb-current {
  color: rgba(255,255,255,0.92);
}

.team-hero-current .crumb-sep {
  color: rgba(255,255,255,0.85);
}

.team-kicker {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-hero-current h1 {
  margin: 0 0 1rem;
  color: #fff;
}

.team-hero-current p:last-child {
  max-width: 760px;
  color: rgba(255,255,255,0.95);
  font-size: 1.12rem;
}

.team-trading-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 42%, #f6f6f6 100%);
}

.team-trading-intro {
  max-width: 780px;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.team-trading-intro__eyebrow {
  margin: 0 0 0.6rem;
  color: #cf2027;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-trading-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.team-trading-intro p {
  margin: 0;
  color: #4c5562;
  font-size: 1.05rem;
}

.team-trading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 400px));
  justify-content: center;
  gap: 2.25rem 2rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: normal !important;
  border: 0 !important;
}

.team-profile-copy {
  color: #111;
}


.team-trading-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  perspective: 1400px;
}

.team-trading-card__inner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 7;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(.22,.61,.36,1);
}

@media (hover: hover) and (pointer: fine) {
  .team-trading-card:hover .team-trading-card__inner,
  .team-trading-card:focus-visible .team-trading-card__inner {
    transform: rotateY(180deg);
  }
}

.team-trading-card.is-flipped .team-trading-card__inner {
  transform: rotateY(180deg);
}

.team-trading-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 20px 44px rgba(15, 18, 24, 0.2);
}

.team-trading-card__face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-trading-card__face--back {
  transform: rotateY(180deg);
}

.team-trading-card__flip-cue {
  display: none;
}

/* Real team profile copy is kept in the HTML using .sr-only so it remains available to screen readers/search engines without visually duplicating the card text. */

.team-cta-wrap {
  padding: 0 0 5rem;
  background: #f6f6f6;
}

.team-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #cf2027 0%, #b51c22 100%);
  color: #fff;
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  box-shadow: 0 18px 38px rgba(207, 32, 39, 0.22);
}

.team-cta h2,
.team-cta p {
  color: #fff;
}

.team-cta h2 {
  margin: 0 0 0.6rem;
}

.team-cta p:last-child {
  margin: 0;
}

.team-cta__kicker {
  margin: 0 0 0.55rem;
  color: rgba(255,255,255,0.9);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 54px;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.team-cta__button:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 1050px) {
  .team-trading-grid {
    grid-template-columns: minmax(280px, 400px);
    gap: 2rem;
  }

  .team-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .team-hero-current {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .team-trading-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .team-trading-intro {
    margin-bottom: 2rem;
  }

  .team-trading-card__flip-cue {
  display: none;
}

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