/* Page-specific styles for about.html. Shared site styles live in main.css. */

.about-hero.hero--composed::before{
  border-color:rgba(195,150,76,.16);
}

.about-hero.hero--composed{
  align-items:flex-start;
}

.about-hero .hero__inner{
  grid-template-columns:1fr;
  width:min(var(--max), calc(100% - 48px));
  row-gap:28px;
}

.about-hero .hero__content,
.about-hero .hero__summary{
  grid-column:1 / -1;
  width:100%;
}

.about-hero h1{
  max-width:none;
}

.about-hero .hero__summary{
  margin-top:0;
}

.about-hero .hero__summary p{
  max-width:none;
  font-size:clamp(18px, 1.65vw, 23px);
  line-height:1.58;
}

.about-hero__actions{
  margin-top:32px;
}

.about-hero__actions .btn{
  width:150px;
  flex:0 0 150px;
}

.about-content{
  width:min(var(--max), calc(100% - 48px));
  margin:90px auto 0;
}

.about-content + .about-content{
  margin-top:80px;
}

.about-content .section-head{
  max-width:900px;
}

.about-content .section-head p:not(.section-kicker){
  margin:20px 0 0;
  color:var(--mid-gray);
  font-size:19px;
  max-width:800px;
}

.about-content .section-head p + p{
  margin-top:14px;
}

.about-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.about-card{
  padding:26px 28px;
  background:#fff;
  border:var(--box-light-border);
  border-top:4px solid var(--gold);
  box-shadow:0 14px 34px rgba(0,32,74,.08);
}

.about-card:nth-child(3n+2){
  border-top-color:var(--blue);
}

.about-card:nth-child(3n+3){
  border-top-color:var(--navy);
}

.about-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:20px;
  line-height:1.25;
  font-weight:950;
}

.about-card p{
  margin:0;
  color:var(--mid-gray);
  font-size:16px;
  line-height:1.6;
}

.about-card__link{
  display:inline-block;
  margin-top:14px;
  color:var(--blue);
  font-weight:950;
  letter-spacing:.06em;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
}

.dark-cta--about{
  width:min(var(--max), calc(100% - 48px));
  margin:100px auto 90px;
  padding:36px 54px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:58px;
  align-items:center;
  justify-content:normal;
}

.dark-cta--about > div{
  min-width:0;
}

.dark-cta--about > .btn{
  justify-self:start;
}

.dark-cta--about h2{
  max-width:860px;
  margin-bottom:14px;
}

.dark-cta--about p:not(.eyebrow){
  margin-top:0;
}

.about-privacy .section-head{
  max-width:820px;
}

.about-privacy__updated{
  color:var(--mid-gray);
  font-size:14px;
  font-style:italic;
}

.about-privacy h3{
  margin:26px 0 8px;
  color:var(--navy);
  font-size:17px;
  font-weight:950;
}

.about-privacy .section-head p:not(.section-kicker):not(.about-privacy__updated){
  font-size:15.5px;
  line-height:1.65;
  color:var(--mid-gray);
  margin-top:0;
}

@media (max-width:1100px){
  .about-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:720px){
  .about-content{
    width:calc(100% - 36px);
    margin-top:64px;
  }

  .about-content + .about-content{
    margin-top:56px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-card{
    padding:22px;
  }

  .dark-cta--about{
    width:calc(100% - 36px);
    margin-top:72px;
    padding:36px 24px;
    grid-template-columns:1fr;
    gap:28px;
  }
}
