/* =========================
   FOUNDER PAGE
========================= */

.founder {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;

  padding: 24px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}

.founder__media {
  position: relative;
}

.founder__img {
  width: 100%;
  height: 100%;
  min-height: 360px;

  object-fit: cover;

  border-radius: 20px;

  display: block;
}

.founder__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder__name {
  margin: 0;

  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.founder__role {
  color: rgb(255, 0, 0);

  font-weight: 900;
  font-size: 15px;
}

.founder__content p {
  margin: 0;

  line-height: 1.9;
  color: rgba(0, 0, 0, 0.966);
}

.founder__highlight {
  margin-top: 8px;

  padding: 18px 20px;

  border-radius: 20px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 0, 0, 0.555),
      rgba(0,0,0,0.04)
    );

  border-left: 4px solid red;

  font-weight: 700;

  line-height: 1.7;
}

@media (max-width: 980px) {

  .founder {
    grid-template-columns: 1fr;
  }

  .founder__img {
    min-height: 320px;
  }
}

/* TEAM HERO */
.team-hero{
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;

  margin-top: 0;
  padding: 4rem 7%;

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.68) 42%,
      rgba(0,0,0,.35) 100%
    ),
    url("../images/image/founder.png");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* REMOVE EXTRA GAP AFTER HEADER */
.site-header{
  margin-bottom: 0 !important;
}

.team-hero .wrap{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.team-hero__content{
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 760px;
}

.team-hero__eyebrow{
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;

  margin-bottom: 1.2rem;

  color: #ffb3b3;
}

.team-hero h1{
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: .92;
  font-weight: 800;

  margin-bottom: 1.6rem;

  color: #fff;
}

.team-hero p{
  font-size: 1.08rem;
  line-height: 1.9;

  color: rgba(255,255,255,.92);

  max-width: 680px;
}

/* LARGE TABLETS */
@media (max-width: 1100px){

  .team-hero{
    padding: 4rem 5%;
    background-position: 62% center;
  }

  .team-hero__content{
    max-width: 650px;
  }

  .team-hero h1{
    font-size: clamp(3rem, 8vw, 5rem);
  }

}

/* TABLETS */
@media (max-width: 820px){

  .team-hero{
    min-height: 90vh;

    padding: 4rem 2rem;

    background-position: 68% center;
  }

  .team-hero__content{
    max-width: 100%;
  }

  .team-hero h1{
    font-size: clamp(2.7rem, 9vw, 4.5rem);

    line-height: .96;
  }

  .team-hero p{
    font-size: 1rem;
    line-height: 1.8;
  }

}

/* MOBILE */
@media (max-width: 600px){

  .team-hero{
    min-height: 100vh;

    align-items: flex-end;

    padding:
      5rem
      1.4rem
      3rem;

    background-position: center;
  }

  .team-hero__eyebrow{
    font-size: .72rem;
    letter-spacing: .16em;

    margin-bottom: .9rem;
  }

  .team-hero h1{
    font-size: clamp(2.8rem, 13vw, 4.2rem);

    line-height: .94;

    margin-bottom: 1.2rem;
  }

  .team-hero p{
    font-size: .98rem;
    line-height: 1.75;

    max-width: 100%;
  }

}

/* SMALL MOBILE */
@media (max-width: 420px){

  .team-hero{
    padding:
      5rem
      1.1rem
      2.5rem;
  }

  .team-hero h1{
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  .team-hero p{
    font-size: .94rem;
  }

}