/* Fan accordion cards */
.ntl-cards-fan {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  height: 400px;
  overflow: hidden;
}
.ntl-card-fan__item {
  flex: 0 0 72px !important;
  background: #d5ff3f !important;
  border-radius: 24px;
  overflow: hidden !important;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative !important;
  user-select: none;
}
.ntl-card-fan__item:hover,
.ntl-card-fan__item.active {
  flex: 1 !important;
}
.ntl-card-fan__num {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 1;
}
.ntl-card-fan__item:hover .ntl-card-fan__num,
.ntl-card-fan__item.active .ntl-card-fan__num {
  opacity: 0;
}
.ntl-card-fan__inner {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 32px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.25s ease 0.3s;
  min-width: 280px;
  z-index: 2;
}
.ntl-card-fan__item:hover .ntl-card-fan__inner,
.ntl-card-fan__item.active .ntl-card-fan__inner {
  opacity: 1;
}
.ntl-card-fan__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}
.ntl-card-fan__title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px;
  line-height: 1.3;
}
.ntl-card-fan__desc {
  font-size: 14px;
  color: #000000;
  line-height: 1.55;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .ntl-cards-fan {
    flex-direction: column !important;
    height: auto;
    gap: 8px;
  }
  .ntl-card-fan__item {
    flex: 0 0 64px !important;
    border-radius: 16px;
  }
  .ntl-card-fan__item:hover,
  .ntl-card-fan__item.active {
    flex: 0 0 280px !important;
  }
  .ntl-card-fan__num {
    writing-mode: horizontal-tb;
  }
  .ntl-card-fan__inner {
    min-width: unset;
    padding: 24px;
    justify-content: flex-start;
  }
}
