.spotlightsImage {
  max-width: var(--main-container-max);
  margin: 0 auto;
  @include flex-direction(column);
  @include flex-align(center, center);
  gap: 1.6rem;

  @include min(tablet) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.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(stretch, space-between);

  > a {
    min-height: 5.6rem;
    width: 100%;
    white-space: normal;
  }
}

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

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

  a > label,
  a > span,
  a > h1,
  a > h2,
  a > h3,
  > label,
  > span,
  > h1,
  > h2,
  > h3,
  > .titleTag {
    color: var(--spotlight-template-two-label-image-text-mode, #1b1b1c);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.8rem;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0 ;
  }

  a > span,
  > span {
    color: #64646d;
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.2rem;
    margin-bottom: 1.6rem;
  }
}

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

.scroll {
  max-height: 18rem;
  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;
  }
}

.scrollContent {
  padding: 2.4rem;
}
