/* Extracted from the vendor TIGER list at commit 695d452. */
.prototype-tiger-list-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: var(--section-padding);
  background: #fff;
  scroll-margin-top: calc(var(--header-h, 70px) + 16px);
}

.prototype-tiger-list-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(var(--content, 1064px), 100%);
  gap: 20px;
  text-align: left;
}

.prototype-tiger-list-copy h2 {
  width: 100%;
  margin: 0;
  color: var(--cuhk-purple, #7d2882);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: var(--fw-medium, 500);
  letter-spacing: -.045em;
  line-height: 1.1;
}

.prototype-tiger-list-copy p {
  width: 100%;
  margin: 0;
  color: var(--ink, #1d1d1f);
  font-size: clamp(18px, 1.7vw, 20px);
  font-weight: var(--fw-light, 300);
  letter-spacing: -.025em;
  line-height: 1.65;
}

.prototype-tiger-list-section .tiger-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(608px, 100%);
  max-width: 608px;
  margin: clamp(48px, 7vw, 80px) auto 0;
}

.prototype-tiger-list-section .tiger-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 0 29px 0 0;
  border-radius: 50px;
  background: #f3f3f3;
  transition: transform .2s, box-shadow .2s;
}

.prototype-tiger-list-section .tiger-pill:is(:hover, :focus-visible) {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.prototype-tiger-list-section .tiger-pill:focus-visible {
  outline: 3px solid var(--cuhk-purple, #7d2882);
  outline-offset: 4px;
}

.prototype-tiger-list-section .tiger-dot {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  margin: -5px 0;
  overflow: hidden;
  border-radius: 50%;
}

.prototype-tiger-list-section .tiger-dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prototype-tiger-list-section .tiger-letter {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 60px;
  color: #f3f3f3;
  font-size: 48px;
  font-weight: var(--fw-medium, 500);
  line-height: 1;
  opacity: .7;
  pointer-events: none;
  transform: translateY(-50%);
}

.prototype-tiger-list-section .tiger-pill .label {
  min-width: 0;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: var(--fw-medium, 500);
  line-height: 1.1;
  white-space: nowrap;
}

.prototype-tiger-list-section .tiger-pill.t .label { color: var(--t); }
.prototype-tiger-list-section .tiger-pill.i .label { color: var(--i); }
.prototype-tiger-list-section .tiger-pill.g .label { color: var(--g); }
.prototype-tiger-list-section .tiger-pill.e .label { color: var(--e); }
.prototype-tiger-list-section .tiger-pill.r .label { color: var(--r); }

.prototype-tiger-list-copy .reference-read-more {
  margin-top: 0;
}

.prototype-tiger-list-section .tiger-leap-aspiration {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: max-content;
  max-width: min(90vw, 608px);
  margin: 0;
  color: var(--cuhk-purple, #7d2882);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: var(--fw-medium, 500);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 0 2px 16px rgba(255, 255, 255, .95);
}

.prototype-tiger-list-section .tiger-leap-burst {
  position: absolute;
  pointer-events: none;
}

@media (max-width: 767px) {
  .prototype-tiger-list-section {
    padding-right: var(--pad, 20px);
    padding-left: var(--pad, 20px);
  }

  .prototype-tiger-list-copy {
    align-items: flex-start;
    width: 100%;
    text-align: left;
  }

  .prototype-tiger-list-section .tiger-list {
    gap: 28px;
  }

  .prototype-tiger-list-section .tiger-pill {
    height: 52px;
    padding-right: 16px;
  }

  .prototype-tiger-list-section .tiger-dot {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    margin: -2px 0;
  }

  .prototype-tiger-list-section .tiger-letter {
    width: 56px;
    height: 52px;
    font-size: 36px;
  }

  .prototype-tiger-list-section .tiger-pill .label {
    font-size: clamp(13px, 4vw, 16px);
    white-space: normal;
  }

  .prototype-tiger-list-section .tiger-leap-aspiration {
    max-width: calc(100vw - 2 * var(--pad));
    font-size: clamp(18px, 5.5vw, 24px);
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .homepage-prototype .prototype-tiger-list-section {
    padding-inline: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .homepage-prototype .prototype-tiger-list-copy {
    width: calc(100% - 168px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prototype-tiger-list-section .tiger-pill {
    transition: none;
  }
}
