.programme .content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 2rem auto;
}

.programme .content .item {
  width: calc(33.33% - 2.7rem);
  margin-top: 4rem;
  background: #f8f8f8;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.programme .content .item .img {
  overflow: hidden;
}

.programme .content .item img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.programme .content .item .text {
  overflow: hidden;
  padding: 2.7rem 5rem 3.4rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.programme .content .item .title {
  color: #333;
  font-size: 2.2rem;
  line-height: 3rem;
  overflow: hidden;
}

.programme .content .item .line {
  width: 3.2rem;
  height: 0.1rem;
  background: var(--color);
  margin: 1.5rem auto 1.2rem;
}

.programme .content .item button {
  border: 0.1rem solid var(--color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--color);
  font-size: 1.5rem;
  margin-top: 3rem;
  background: #f8f8f8;
}

.programme .content .item .sub {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.programme .content .item:hover {
  -webkit-filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.06));
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.06));
  background: #fff;
}

.programme .content .item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.programme .content .item:hover button {
  background: #fff;
}

.programme.en .content .item .title {
  font-weight: 700;
}

.programme.en .content .item .sub {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .programme .content {
    margin: 1rem 0;
  }

  .programme .content .item {
    margin-top: 1.5rem;
    width: 100%;
  }

  .programme .content .item .text {
    padding: 1rem;
  }

  .programme .content .item .text .title {
    font-size: 1.6rem;
    line-height: 1.5;
    white-space: normal;
    text-overflow: clip;
    word-break: break-word;
  }

  .programme .content .item .text .line {
    margin: 0.5rem auto;
  }

  .programme .content .item .text .sub {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .programme .content .item .text .viewmore {
    display: none;
  }
}
