.ainew-catshow {
  background: #F8FAFC;
  padding: 34px 0 64px;
}

.ainew-catshow__container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.ainew-catshow__hero {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .05);
}

.ainew-catshow__badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #F3E8FF;
  color: #7C3AED;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ainew-catshow__hero h1 {
  margin: 0;
  color: #0F172A;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.1;
}

.ainew-catshow__hero p {
  margin: 10px 0 0;
  color: #475569;
  font-size: 16px;
}

.ainew-catshow__hero-btn {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: #FFFFFF !important;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(124, 58, 237, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.ainew-catshow__hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(124, 58, 237, .28);
}

.ainew-catshow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ainew-catshow-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 18px;
  height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ainew-catshow-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, .32);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.ainew-catshow-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0F172A;
  text-decoration: none !important;
  margin-bottom: 15px;
  min-height: 48px;
}

.ainew-catshow-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #F3E8FF;
  color: #7C3AED;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.ainew-catshow-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ainew-catshow-card__title {
  font-size: 17px;
  font-weight: 950;
  line-height: 1.25;
  color: #0F172A;
}

.ainew-catshow-card__content {
  display: grid;
  gap: 12px;
  max-height: 232px;
  overflow: hidden;
  position: relative;
}

.ainew-catshow-card__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #FFFFFF);
  pointer-events: none;
}

.ainew-catshow-card__group {
  min-width: 0;
}

.ainew-catshow-card__subtitle {
  display: inline-flex;
  color: #0F172A;
  font-weight: 850;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none !important;
  margin-bottom: 7px;
}

.ainew-catshow-card__subtitle:hover {
  color: #6D28D9;
}

.ainew-catshow-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 30px;
  overflow: hidden;
}

.ainew-catshow-card__pills a {
  color: #475569;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all .18s ease;
}

.ainew-catshow-card__pills a:hover {
  color: #7C3AED;
  background: #F3E8FF;
  border-color: #C4B5FD;
}

.ainew-catshow-card__more {
  margin-top: auto;
  padding-top: 14px;
  color: #7C3AED;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.ainew-catshow-card__more:hover {
  color: #5B21B6;
}

@media (max-width: 1100px) {
  .ainew-catshow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ainew-catshow {
    padding: 24px 0 44px;
  }

  .ainew-catshow__container {
    width: min(100% - 24px, 1320px);
  }

  .ainew-catshow__hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
    border-radius: 18px;
  }

  .ainew-catshow__hero h1 {
    font-size: 26px;
  }

  .ainew-catshow__hero p {
    font-size: 14px;
  }

  .ainew-catshow__hero-btn {
    width: 100%;
  }

  .ainew-catshow__grid {
    grid-template-columns: 1fr;
  }

  .ainew-catshow-card {
    height: 340px;
  }
}