.topSection {
  @include flex-direction(column);
  @include flex-align(center, center);
  gap: 0.8rem;

  @include min(tablet) {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  > img {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: 100%;
    margin-bottom: 1.6rem;

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

    @include min(laptop){
      width: 12.6rem;
      height: 12.6rem;
    }
  }

  > label {
    color: var(--spotlight-template-two-label-image-text-mode, #1b1b1c);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.8rem;
    text-transform: capitalize;

    @include min(tablet) {
      font-size: 2.2rem;
      line-height: 3rem;
      grid-column: 2;
    }
  }

  > h2,
  h3,
  h4 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 3rem;

    @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 {
  border-radius: 1.6rem;
  background: var(--spotlight-template-two-backgorund-image-text-mode, #fff);
  box-shadow: 0px 4px 6px -2px rgba(27, 27, 28, 0.02), 0px 12px 16px -4px rgba(27, 27, 28, 0.05);
  width: 100%;
  height: 100%;
  padding: 2.4rem;
  gap: 1.6rem;
  @include flex-direction(column);
  @include flex-align(start, space-between);

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

.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.7rem;
  margin-bottom: 0.8rem;

  @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;
  }
}
