/*Programs & Workshop section*/
section {
  max-width: 1500px;
}

.btn {
  width: fit-content !important;
}

.pw-container {
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
  overflow: hidden;
}

.pw-item {
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.pw-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  overflow: hidden;
  flex-grow: 1;
}

.pw-text p {
  line-height: 1.5rem;
}

.pw-text a i {
  font-size: 1.6rem;
  color: #666362;
}

.btn {
  width: 130px;
}

.pw-img {
  max-width: 500px;
  max-height: 500px;
  overflow: hidden;
}

.pw-img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  overflow: hidden;
}

.pw-img iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/*Media Queries*/
@media only screen and (max-width: 393px) {
  .program-intro h2 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .pw-text {
    width: 500px;
  }

  .pw-img iframe {
    width: 500px;
  }

  .pw-container {
    gap: 8rem;
  }
}

@media only screen and (min-width: 1024px) {
  .pw-item {
    flex-direction: row;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .reverse .btn {
    margin-left: auto;
  }
}

@media only screen and (min-width: 1440px) {
  .pw-item {
    gap: 5rem;
  }
}
