#catchy-scroll {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  gap: 1rem;

  padding: 1rem 1rem 1.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
  box-sizing: border-box;

  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1rem;
}

#catchy-scroll::-webkit-scrollbar {
  display: none;
}

.catchy-card {
  flex: 0 0 auto;
  width: clamp(140px, 45vw, 180px);
  height: auto;
  border-radius: 30px;
  aspect-ratio: 9 / 19;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  text-decoration: none;
}

.card-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  z-index: 0;
}

.center-blur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.catchy-card .logo {
  width: 40px;
  height: auto;
  margin-bottom: 0.8rem;
  margin-top: -0.5rem;
  filter: invert(1);
}

.catchy-title {
  font-family: 'Kalam';
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.catchy-subtitle {
  font-size: 0.82rem;
  margin-top: 0.4rem;
  line-height: 1.2;
  color: #eaeaea;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
  .catchy-card {
    width: clamp(140px, 45vw, 180px);
    height: auto;
    aspect-ratio: 9 / 16
  }

  .catchy-title {
    font-size: 1.7rem;
  }

  .catchy-subtitle {
    font-size: 0.85rem;
  }

  .catchy-card .logo  {
    width: 40px;
  }
}
