/* Programs Section */
.programs-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.programs-section .programs-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.programs-section .program-card {
  min-width: 288px;
  min-height: 415px;

  display: flex;
  flex-direction: column;
  gap: var(--container-gap);

  border-radius: 12px;
  padding: 20px 16px 0px;
}

.programs-section .card-green {
  background-color: #e7ebe4;
}

.programs-section .card-cream {
  background-color: #f9f7f7;
}

.programs-section .card-gray {
  background-color: #e5e9ec;
}

.programs-section .program-card .content {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .program-card .summary {
  display: flex;
  flex-direction: column;
  gap: var(--smaller-gap);
}

.programs-section .program-card .summary h3 {
  font-size: var(--h2-font-size-mobile);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.programs-section .program-card .summary p {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: left;
}

.programs-section .program-card .content .price {
  font-size: var(--h2-font-size-mobile);
  font-weight: 400;
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.programs-section .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programs-section .cta {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.programs-section .program-card button {
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #353535;
  background-color: transparent;
  cursor: pointer;
}

.programs-section .program-card button:hover {
  background-color: #ffffff;
}

.programs-section .program-card button span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #353535;
}

.programs-section .program-card .cta-link {
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #353535;
  background-color: transparent;
  cursor: pointer;
}

.programs-section .program-card .cta-link:hover {
  background-color: #ffffff;
}

.programs-section .program-card .cta-link span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #353535;
}

.programs-section .content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 184px;
  border-radius: var(--border-radius);
}

.programs-section .content-image img {
  width: 100%;
  min-height: 184px;
  height: auto;
  display: block;
}

@media (min-width: 1280px) {
  .programs-section .container {
    gap: 60px;
  }

  .programs-section .programs-panel {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .programs-section .program-first-card {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .programs-section .program-third-card {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .programs-section .program-card {
    min-height: 335px;
  }

  .programs-section .program-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--container-gap);
  }

  .programs-section .program-card .summary {
    gap: 16px;
  }

  .programs-section .program-card .summary h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
  }

  .programs-section .program-card .summary p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .programs-section .program-card .price {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    text-wrap: nowrap;
  }

  .programs-section .program-card button {
    max-width: 260px;
    cursor: pointer;
  }

  .programs-section .program-card button:hover {
    background-color: #ffffff;
  }

  .programs-section .program-card button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .programs-section .program-card .cta-link {
    max-width: 260px;
    cursor: pointer;
  }

  .programs-section .program-card .cta-link:hover {
    background-color: #ffffff;
  }

  .programs-section .program-card .cta-link span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .programs-section .content-image {
    max-width: 356px;
  }

  .programs-section .right {
    width: 582px;
    height: 342px;
    flex-direction: row;
    padding: 20px 0px 0px 20px;
    border-radius: 12px;
    gap: 0;
  }

  .programs-section .right-7 {
    width: 788px;
    height: 342px;
    flex-direction: row;
    padding: 20px 0px 0px 20px;
    border-radius: 12px;
    justify-content: space-between;
  }

  .programs-section .bottom {
    width: 582px;
    height: 720px;
    padding: 20px 20px 0px 20px;
    border-radius: 12px;
  }

  .programs-section .bottom .summary p {
    width: 449px;
  }

  .programs-section .right-bottom {
    width: 376px;
    height: 342px;
    padding: 20px 0px 0px 20px;
    border-radius: 12px;
  }

  .programs-section .right .content {
    max-width: 310px;
    padding-bottom: 32px;
  }

  .programs-section .right .content-image {
    max-width: 316px;
    height: 100%;
    align-items: end;
  }

  .programs-section .right .content-image img {
    max-width: 316px;
    height: 322px;
  }

  .programs-section .bottom .content-image {
    max-width: 664px;
    height: 100%;
    max-height: 439px;
    margin-top: auto;
    justify-content: flex-end;
  }

  .programs-section .bottom .content-image img {
    max-width: 664px;
    height: 100%;
  }

  .programs-section .right-bottom .content {
    height: 100%;
  }

  .programs-section .right-bottom .content-image {
    max-width: 204px;
    min-height: 159px;
  }

  .programs-section .right-bottom .content-image img {
    max-width: 204px;
    min-height: 159px;
  }

  .programs-section .right-7 .content {
    max-width: 356px;
  }

  .programs-section .right-7 .content-image {
    max-width: 356px;
  }

  .programs-section .right-7 .content-image img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .programs-section .right-bottom .details {
    max-height: 100%;
    height: 159px;
    flex-direction: row;
    justify-content: space-between;
    gap: 0px;
    margin-top: auto;
  }

  .programs-section .right-bottom .summary {
    margin: auto 0;
    margin-right: 16px;
  }

  .programs-section .cta {
    margin-bottom: 42px;
  }

  .programs-section .right-bottom button {
    width: 198px;
    cursor: pointer;
  }

  .programs-section .right-bottom .cta-link {
    width: 198px;
    cursor: pointer;
  }
}
