  .programs-section {
    width: 100%;
    background: #f0efee;
    color: #333333;
  }

  .programs-section__inner {
    width: 100%;
    max-width: 1691px;
    margin: 0 auto;
    padding: 20px 54px 147px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .programs-section__header {
    padding-left: 72px;
    display: flex;
    align-items: flex-start;
  }

  .programs-section__title {
    width: 100%;
    max-width: 843px;
    margin: 0;
    font-size: 50px;
    line-height: 43px;
    letter-spacing: -1px;
    color: #333333;
  }

  .programs-section__title span {
    color: #b72323;
  }

  .programs-section__rule {
    width: calc(100% + 108px);
    height: 1px;
    margin: 47px -54px 0;
    display: block;
    background: #b7b7b7;
  }

  .programs-section__cards {
    width: 100%;
    margin-top: 69px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 18px 20px;
  }

  .program-card {
    width: 100%;
    max-width: 770.86px;
    min-height: 423px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 0 0 calc(50% - 10px);
    align-items: stretch;
    background: #656565;
  }

  .program-card__image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .program-card__content {
    width: 100%;
    max-width: 571px;
    min-height: 423px;
    padding: 142px 48px 50px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
  }

  .program-card h2 {
    width: 100%;
    margin: 0;
    font-size: 46px;
    font-style: italic;
    line-height: 33px;
    letter-spacing: -1.38px;
    color: rgba(255, 255, 255, 0.7);
  }

  .program-card__lead {
    width: 100%;
    max-width: 394px;
    margin: 37px 0 0;
    font-size: 18px;
    line-height: 29px;
    color: #ffffff;
  }

  .program-card__copy {
    width: 100%;
    max-width: 571px;
    margin: 3px 0 0;
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
  }

  .program-card__button {
    width: 215px;
    height: 43px;
    margin-top: 37px;
    padding: 0 13px 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f2f2f2;
    font-size: 15px;
    line-height: 17.36px;
    text-decoration: none;
    white-space: nowrap;
    color: #000000;
    transition:
      background-color 0.3s ease,
      color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
  }

  .program-card__button-icon {
    width: 21px;
    height: 20px;
    display: block;
    flex: 0 0 21px;
    object-fit: cover;
    object-position: center;
  }

  .program-card:hover .program-card__image {
    transform: scale(1.04);
  }

  .program-card__button:hover,
  .program-card__button:focus-visible {
    background-color: #ffffff;
    color: #750b04;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
  }

  @media (max-width: 1100px) {

    .programs-section {
      min-height: auto;
    }

    .programs-section__inner {
      padding: 48px 32px 72px;
    }

    .programs-section__header {
      padding-left: 0;
    }

    .programs-section__rule {
      width: calc(100% + 64px);
      margin: 42px -32px 0;
    }

    .programs-section__cards {
      margin-top: 52px;
      gap: 24px;
    }

    .program-card {
      max-width: none;
      flex-basis: calc(50% - 12px);
    }

    .program-card__content {
      padding: 116px 34px 42px;
    }

    .programs-section__title {
      font-size: 46px;
      line-height: 44px;
    }

    .program-card__lead,
    .program-card__copy {
      font-size: 17px;
      line-height: 25px;
    }
  }

  @media (max-width: 760px) {

    .programs-section__inner {
      padding: 42px 20px 58px;
    }

    .programs-section__title {
      font-size: 38px;
      line-height: 36px;
      letter-spacing: -0.76px;
    }

    .programs-section__rule {
      width: calc(100% + 48px);
      margin: 32px -24px 0;
    }

    .programs-section__cards {
      margin-top: 36px;
      gap: 22px;
    }

    .program-card {
      min-height: 423px;
      flex-basis: 100%;
    }

    .program-card__content {
      padding: 120px 20px 38px;
    }

    .program-card h2 {
      font-size: 36px;
      line-height: 34px;
    }

    .program-card__lead,
    .program-card__copy {
      font-size: 16px;
      line-height: 24px;
    }

    .program-card__lead {
      margin-top: 30px;
    }
  }

  @media (max-width: 400px) {

    .program-card__image {
      object-position: -250px center;
    }

  }
