/* ========== Lead ========== */
.lead{
  padding: 64px 0 0;
  text-align: center;
}
.lead-inner{
  width: 848px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
}
.lead-title{
  margin: 0 0 48px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1.4;
  color: var(--text);
}
.lead-text{
  margin: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.8;
  color: var(--text);
}
.lead-cta{
  margin-top: 16px;
  text-align: right;
}

@media screen and (max-width: 480px){
  .lead-inner{ max-width: calc(100% - 40px); }
  .lead-title{ letter-spacing: -0.08em; }
  .lead-title .br-768{ display: none; }
}

/* ========== Programs title ========== */
.programs-title-wrap{
  padding: 120px 0 0;
  text-align:center;
}
.programs-title{
  margin: 0 auto;
  width: min(1100px, calc(100% - 60px));
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}

/* ========== Programs ========== */
.programs{
  padding: 79px 0 0;
  width: min(1100px, calc(100% - 60px));
  margin: 0 auto;
}
.cards{
  display:flex;
  justify-content:center;
  gap: 40px;
  margin-top: 0;
}
.card{
  display:block;
  width: 320px;
}
.card-media{
  height: 220px;
  overflow:hidden;
  display:block;
  transition: opacity .5s ease, transform .5s ease;
  transform: scale(1);
  will-change: transform;
}
.card-media:hover{
  opacity: .8;
  transform: scale(1.02);
}
.card-title{
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  margin-top: 8px;
}
.card img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.credit{
  margin: 72px auto 0;
  width: 1000px;
  max-width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}

@media screen and (max-width: 480px){
  .programs-title{ width: calc(100% - 40px); }
  .programs{ width: calc(100% - 40px); }
  .cards{
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .card{
    width: 260px;

  }
}