/* =============================================
   About page
   ============================================= */

/* ORIGIN */
.origin{padding:100px 60px;background:#fff;max-width:900px;margin:0 auto}
.origin h2{font-size:30px;font-weight:500;color:#1a1a1a;margin-bottom:20px;letter-spacing:-0px}
.origin p{font-size:19px;color:#6b6b6b;line-height:1.8;margin-bottom:20px}
.origin .pullquote{font-family:var(--serif);font-size:25px;font-style:italic;color:#1a1a1a;line-height:1.6;margin:40px 0;padding:30px 0 30px 30px;border-left:3px solid var(--blue)}

/* TEAM */
.team{padding:0 60px 100px;background:#fff}
.team-header{text-align:center;margin-bottom:60px}
.team-header h2{font-size:35px;font-weight:500;color:#1a1a1a;letter-spacing:-0px}
.team-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;max-width:1000px;margin:0 auto}
.team-card{display:flex;flex-direction:column}
.team-photo{width:100%;aspect-ratio:1;border-radius:18px;background:#f2f2ef;margin-bottom:25px;display:flex;align-items:center;justify-content:center;font-size:60px;font-weight:500;color:rgba(0,68,238,.15);overflow:hidden}
.team-photo img{width:100%;height:100%;object-fit:cover}
.team-card h3{font-size:23px;font-weight:500;color:#1a1a1a;margin-bottom:3px}
.team-role{font-size:16px;color:var(--blue);font-weight:500;margin-bottom:15px}
.team-bio{font-size:16px;color:#6b6b6b;line-height:1.8}
.team-bio .highlight{color:#1a1a1a;font-weight:500}
.team-linkedin{display:inline-flex;align-items:center;gap:8px;margin-top:18px;font-size:15px;color:var(--blue);text-decoration:none;transition:opacity .2s}
.team-linkedin:hover{opacity:.7}

/* CREDENTIALS */
.credentials{padding:100px 60px;background:#f8f4ea;border-top:1px solid #eee;border-bottom:1px solid #eee;text-align:center}
.credentials h2{font-size:35px;font-weight:500;color:#1a1a1a;margin-bottom:10px;letter-spacing:-0px}
.credentials>p{font-size:19px;color:#6b6b6b;line-height:1.7;max-width:650px;margin:0 auto 60px}
.cred-grid{display:grid;grid-template-columns:1fr 1fr;gap:3px;max-width:875px;margin:0 auto}
.cred-card{padding:40px 35px;background:#fff;text-align:left;transition:background .3s,transform .3s,box-shadow .3s}
.cred-card:hover{background:#fcfcfa;transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,.06)}
.cred-card:first-child{border-radius:18px 0 0 0}
.cred-card:nth-child(2){border-radius:0 18px 0 0}
.cred-card:nth-child(3){border-radius:0 0 0 18px}
.cred-card:last-child{border-radius:0 0 18px 0}
.cred-badge{display:inline-block;padding:5px 15px;background:rgba(0,68,238,.06);border-radius:8px;font-size:14px;font-weight:500;color:var(--blue);margin-bottom:15px}
.cred-card h3{font-size:18px;font-weight:500;color:#1a1a1a;margin-bottom:8px;line-height:1.3}
.cred-card p{font-size:15px;color:#999;line-height:1.6}

/* TESTIMONIALS */
.testimonials{padding:100px 60px;background:#fff;text-align:center}
.testimonials h2{font-size:35px;font-weight:500;color:#1a1a1a;margin-bottom:60px;letter-spacing:-0px}
.test-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px;max-width:875px;margin:0 auto}
.test-card{text-align:left;padding:30px;border:1px solid #eee;border-radius:18px;transition:border-color .3s,transform .3s,box-shadow .3s}
.test-card:hover{border-color:#ccc;transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,.06)}
.test-card blockquote{font-family:var(--serif);font-size:18px;font-style:italic;line-height:1.7;color:#1a1a1a;margin-bottom:18px}
.test-card cite{font-size:15px;color:#999;font-style:normal;display:block}

/* MOBILE */
@media(max-width:960px){
  .origin{padding:60px 25px}
  .origin .pullquote{font-size:21px}
  .team{padding:0 25px 60px}
  .team-grid{grid-template-columns:1fr}
  .credentials{padding:60px 25px}
  .credentials h2{font-size:28px}
  .cred-grid{grid-template-columns:1fr;gap:3px}
  .cred-card{border-radius:0!important}
  .cred-card:first-child{border-radius:18px 18px 0 0!important}
  .cred-card:last-child{border-radius:0 0 18px 18px!important}
  .testimonials{padding:60px 25px}
  .test-grid{grid-template-columns:1fr}
}
