.content {
  @include flex-direction(column);
  @include flex-align(center, center);

  gap: 1.6rem;
  align-items: flex-start;


  >label {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.2rem;
    color: #1B1B1C;

    @include min(tablet) {
      grid-column: 2;
    }
  }

  >h2,
  h3,
  h4 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.2rem;
    color: #1B1B1C;
    margin: 0;

    @include min(tablet) {
      grid-column: 2;
    }
  }
}

.subtitle {
  color: #64646d;
  text-align: center;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.2rem;
  margin-bottom: 1.6rem;

  @include min(tablet) {
    grid-column: 2;
  }
}

.item {
  width: 100%;
  height: 100%;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  gap: 3.2rem;

  .leftContainer {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;

    @include min(tablet) {
      flex-direction: row
    }
  }

  @include flex-direction(column);
  @include flex-align(start, space-between);

  border-bottom: 2px solid #D63B54;

  @include min(tablet) {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    flex-direction: row;
  }

  >a {
    height: 5.6rem;
    width: 100%;
  }

  >img {
    width: 100%;
    height: 34rem;
    object-fit: cover;
    border-radius: .8rem;

    @include min(tablet) {
      grid-row: 1 / span 2;
      grid-column: 1;
      width: 24rem;
      height: 24rem;
    }
  }
}

.desc {
  color: var(--spotlight-template-one-desc-image-text-mode, #515156);
  text-align: left;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.6rem;

  @include min(tablet) {
    grid-column: 2;
  }
}

.readMore {
  height: 13.5rem;
  overflow: hidden;
}

.scroll {
  max-height: 16.2rem;
  overflow-y: auto;
  padding-right: 1.6rem;

  &::-webkit-scrollbar {
    width: 0.6rem;
  }

  &::-webkit-scrollbar-track {
    background: #c4c4c4;
    border-radius: 0.5rem;
  }

  &::-webkit-scrollbar-thumb {
    background: #515156;
    border-radius: 0.5rem;
  }

  &::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}

.readMoreBtn {
  @include flex-direction(row);
  @include flex-align(center, start);

  width: 100%;
  color: #262629;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.7rem;
  cursor: pointer;

  >svg {
    margin-left: 0.4rem;
  }

  @include min(tablet) {
    grid-column: 2;
  }
}

.topSection {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  >h2,
  h3,
  h4 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.2rem;
    color: #1B1B1C;

    @include min(tablet) {
      grid-column: 2;
    }
  }

  span {
    margin-right: 1rem;
    background-color: #D63B54;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 100%;
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: 500;
    color: #FDFEFD;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -4.3rem;
  }
}

.number {
  background-color: #D63B54;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 100%;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 500;
  color: #FDFEFD;
  display: flex;
  justify-content: center;
  align-items: center;
}