/* =========================================================
   NORDIC BRIDGE TALENT
   ABOUT PAGE
   ========================================================= */


/* =========================================================
   ABOUT INTRO
   ========================================================= */
/* =========================================================
   ABOUT PAGE RESET
   ========================================================= */



.about-intro {
  margin-top: 0;
}

.about-intro {
  width: 100%;
  background: var(--cream);
}

.about-intro-inner {
  width: min(
    calc(100% - 96px),
    1200px
  );

  margin: 0 auto;

  padding-top: 20px;
  padding-bottom: 20px;
}

.about-intro .section-label {
  margin: 0 0 4px;

  color: #DB219D;

  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;

  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-intro h1 {
  margin: 0;

  color: #1A1A18;

  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 46px;

  letter-spacing: 0;
}

.about-intro-text {
  margin: 4px 0 0;

  color: #252525;

  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


/* =========================================================
   FOUNDER PROFILES
   ========================================================= */

.founder-profile {
  width: 100%;

  background: var(--cream);

  padding: 0 0 20px;
}

.founder-profile-card {
    width: 100%;
    max-width: 1200px;
    height: 480px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 430px 1fr;

    background: #ffffff;

    border: 1px solid #C9C5B9;
    border-radius: 16px;

    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   FOUNDER VISUAL
   ========================================================= */

.founder-visual {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #F1F1EC;
}

.founder-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.founder-initials {
  color: #777772;

  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}


/* =========================================================
   FOUNDER CONTENT
   ========================================================= */

.founder-content {
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-content h2 {
  margin: 0;

  color: #1A1A18;

  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  
}

.founder-role {
  margin: 0 0 14px;

  color: #6B6B66;

  font-family: "DM Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.founder-lead {
  margin: 0 0 12px;

  color: #6B6B66;

  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.founder-content p:not(.founder-role):not(.founder-lead) {
  margin: 0 0 10px;

  color: #6B6B66;

  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}


/* =========================================================
   LINKEDIN
   ========================================================= */

.founder-linkedin {
  display: block;
  margin-top: 4px;

  width: 40px;
  height: 40px;

  line-height: 0;
  text-decoration: none;
}

.founder-linkedin img {
  display: block;

  width: 30px;
  height: 30px;

  object-fit: contain;
}

.founder-linkedin:hover {
  opacity: 0.75;
}


/* =========================================================
   CARLOS QUOTE
   ========================================================= */

.founder-quote {
  width: min(
    calc(100% - 96px),
    1200px
  );

  margin: 0 auto;

  padding: 0 0 20px;
}

.founder-quote blockquote {
  margin: 0;

  padding-left: 16px;

  border-left: 4px solid #DB219D;

  color: #1B3F6E;

  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  line-height: 32px;
}

.founder-quote blockquote span {
  white-space: nowrap;
}


/* =========================================================
   ABOUT CLOSING / THREE PRINCIPLES
   ========================================================= */

.about-closing {
  width: 100%;

  background: var(--cream);

  padding: 0 0 30px;
}

.about-closing-inner {
  width: min(
    calc(100% - 96px),
    1200px
  );

  margin: 0 auto;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    width: 100%;
    height: 174px;
    padding: 30px 0;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 24px;

    background: #E8EFF7;
    text-align: center;
}

.final-cta h1 {
    width: 398px;
    height: 46px;
    margin: 0;

    font-family: "Frank Ruhl Libre", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: 0;

    color: #1B3F6E;
    text-align: center;

    white-space: nowrap;
}

.final-cta .button {
    width: 119px;
    height: 44px;
    min-width: 119px;
    flex-shrink: 0;

    padding: 0 24px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 2px solid #1B3F6E;
    border-radius: 28px;

    background: #1B3F6E;
    color: #FFFFFF;

    text-align: center;
    text-decoration: none;
}

.final-cta .button span {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
}


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

@media (max-width: 1100px) {

  .about-intro-inner,
  .founder-profile-card,
  .founder-quote,
  .about-closing-inner {
    width: calc(100% - 48px);
  }

  .founder-profile-card {
    grid-template-columns: 1fr 1.2fr;
  }

}


@media (max-width: 767px) {

  .about-intro-inner,
  .founder-profile-card,
  .founder-quote,
  .about-closing-inner {
    width: calc(100% - 32px);
  }

  .about-intro-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-intro h1 {
    font-size: 34px;
    line-height: 38px;
  }

  .founder-profile {
    padding-bottom: 16px;
  }

  .founder-profile-card {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
}

  .founder-visual {
    min-height: 220px;
  }

  .founder-content {
    padding: 24px;
  }

  .founder-quote {
    padding-bottom: 20px;
  }

  .founder-quote blockquote {
    font-size: 24px;
    line-height: 29px;
  }

}

.final-cta h1 {
  width: calc(100% - 32px);
  height: auto;
  white-space: normal;
  font-size: 28px;
  line-height: 34px;
}
/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-intro {
  width: 100%;
  background: #F7F6F2;
}

.about-intro-inner {
  width: min(1200px, calc(100% - 96px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 20px;
}

.about-intro .section-label {
  margin: 0 0 6px;
}

.about-intro h1 {
  margin: 0 0 4px;

  color: #181817;
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: 0;
}

.about-intro-text {
  margin: 0;

  color: #181817;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 767px) {

  .about-intro-inner {
    width: calc(100% - 32px);
    padding: 24px 0 20px;
  }

  .about-intro h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .about-intro-text {
    font-size: 16px;
    line-height: 24px;
  }

}

