.programme__container {
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-areas: "leftSide rightSide";
  gap: 60px;
}

.programme__container .right__side {
  grid-area: rightSide;
  position: sticky;
  top: 140px;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: max-content;
}

.programme__container .right__side .content {
  width: 100%;
}

.programme__container .right__side .content .course__type {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.programme__container .right__side .content .divider {
  height: 1px;
  width: 100%;
  margin: 40px auto;
  background-color: var(--border-color2);
}

.programme__container .right__side .content .time__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programme__container .right__side .content .time__price .time {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.programme__container .right__side .content .time__price .time img {
  width: 16px;
}

.programme__container .right__side .content .time__price .price {
  font-weight: 500;
}

.programme__container .right__side .content .primary__btn,
.programme__container .right__side .content .secondary__btn {
  margin-top: 30px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.programme__container .right__side .content .secondary__btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.programme__container .right__side .content .download {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  gap: 10px;
}

.programme__container .right__side .content .download:hover {
  text-decoration: underline;
}

/* .programme__container .right__side img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.programme__container .left__side {
  grid-area: leftSide;
}

.programme__container .left__side h1,
.programme__container .left__side h2,
.programme__container .left__side h3,
.programme__container .left__side h4,
.programme__container .left__side h5 {
  margin-bottom: 16px;
  font-weight: 600;
}

.programme__container .left__side p {
  font-size: 14px;
  line-height: 24px;
}

.programme__container .left__side ul:not([style*="list-style-type: none"]) {
  margin: 16px 0;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.programme__container .left__side ol {
  padding-left: 30px;
}

.programme__container .left__side ul li {
  position: relative;
  font-size: 14px;
  padding-left: 24px;
  display: flex;
  align-items: center;
}

.programme__container
  .left__side
  ul
  li:not([style*="list-style-type: none"])::before {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url(../assets/icons/check-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive style */

@media screen and (max-width: 600px) {
  .programme__container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rightSide"
      "leftSide";
  }

  .programme__container .right__side {
    position: relative;
    top: 0;
  }
}
