.zyss-shorts-section {
  width: 100%;
  padding: 70px 20px;
  background: #f7fbfd;
  font-family: inherit;
  overflow: hidden;
  box-sizing: border-box;
}

.zyss-shorts-section *,
.zyss-shorts-section *::before,
.zyss-shorts-section *::after {
  box-sizing: border-box;
}

.zyss-shorts-container {
  max-width: 1220px;
  margin: 0 auto;
}

.zyss-shorts-header {
  text-align: center;
  margin-bottom: 42px;
}

.zyss-shorts-header span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 18px;
  background: rgba(0, 107, 166, 0.10);
  color: #006BA6;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.zyss-shorts-header h2 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
}

.zyss-shorts-header p {
  margin: 0 auto;
  max-width: 620px;
  color: #5f6b76;
  font-size: 18px;
  line-height: 1.8;
}

.zyss-shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.zyss-short-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 12px;
  border: 1px solid rgba(0, 107, 166, 0.12);
  box-shadow: 0 14px 35px rgba(0, 58, 92, 0.08);
  transition: all 0.28s ease;
}

.zyss-short-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(0, 58, 92, 0.14);
  border-color: rgba(0, 107, 166, 0.28);
}

.zyss-short-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
}

.zyss-short-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.zyss-short-title {
  margin: 12px 4px 2px;
  color: #172033;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1024px) {
  .zyss-shorts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 720px;
    margin: 0 auto;
  }

  .zyss-shorts-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .zyss-shorts-section {
    padding: 50px 0 55px;
  }

  .zyss-shorts-container {
    max-width: 100%;
  }

  .zyss-shorts-header {
    padding: 0 18px;
    margin-bottom: 28px;
  }

  .zyss-shorts-header h2 {
    font-size: 28px;
  }

  .zyss-shorts-header p {
    font-size: 16px;
  }

  .zyss-shorts-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 5px 18px 22px;
    max-width: none;
    margin: 0;
  }

  .zyss-shorts-grid::-webkit-scrollbar {
    display: none;
  }

  .zyss-short-card {
    flex: 0 0 76%;
    max-width: 76%;
    min-width: 76%;
    scroll-snap-align: center;
    border-radius: 24px;
    padding: 10px;
  }

  .zyss-short-video {
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .zyss-short-card {
    flex: 0 0 82%;
    max-width: 82%;
    min-width: 82%;
  }
}
