.stksc-wrap {
  margin: 0;
  background: #101114;
  border-radius: 4px;
  padding: 10px;
  overflow: hidden;
}

.stksc-content {
  display: flex;
  min-height: 410px;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
}

.stksc-left {
  width: 424px;
  flex: 0 0 424px;
  min-width: 0;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;
  overflow: hidden;
}

.stksc-subtitle {
  font-family: "The Seasons", "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.2em;
  color: #c3c3c3;
  margin: 0 0 14px;
}

.stksc-title {
  font-family: "The Seasons", "Times New Roman", serif;
  margin: 0 0 16px;
  font-size: 46px;
  line-height: 54px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: #ffffff;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.stksc-description {
  font-family: "Strawford", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  max-width: 340px;
  color: #d7d7d7;
  margin: 0 0 22px;
}

.stksc-button {
  font-family: "Strawford", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  padding: 9px 18px;
  width: fit-content;
}

.stksc-button:hover,
.stksc-button:focus {
  color: #101114;
  background: #ffffff;
  text-decoration: none;
}

.stksc-nav {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}

.stksc-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.stksc-arrow::before {
  display: block;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

.stksc-arrow-prev::before {
  content: "\2190";
}

.stksc-arrow-next::before {
  content: "\2192";
}

.stksc-arrow:hover,
.stksc-arrow:focus {
  background: #ffffff;
  color: #101114;
}

.stksc-right {
  width: auto;
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}

.stksc-panel {
  position: relative;
  display: block;
  flex: 0 0 280px;
  width: 280px;
  height: 812px;
  overflow: hidden;
  min-height: 812px;
  cursor: pointer;
}

.stksc-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
}

.stksc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  transition: background 0.25s ease;
  z-index: 1;
  pointer-events: none;
}

.stksc-hover-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease;
  z-index: 2;
  text-decoration: none;
}

.stksc-hover-arrow::before {
  content: "\2192";
  display: block;
  transform: translateY(-1px);
}

.stksc-panel.is-active .stksc-overlay,
.stksc-panel:hover .stksc-overlay {
  background: rgba(0, 0, 0, 0.12);
}

.stksc-panel:hover .stksc-hover-arrow,
.stksc-panel:focus .stksc-hover-arrow,
.stksc-panel:focus-visible .stksc-hover-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 991px) {
  .stksc-content {
    flex-direction: column;
  }

  .stksc-left,
  .stksc-right {
    width: 100%;
    flex: 1 1 auto;
  }

  .stksc-right {
    min-height: 280px;
  }

  .stksc-panel {
    flex: 1 1 auto;
    width: auto;
    height: auto;
    min-height: 280px;
  }

  .stksc-title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .stksc-wrap {
    padding: 0;
    border-radius: 0;
  }

  .stksc-content {
    flex-direction: column;
    gap: 0;
  }

  .stksc-right {
    order: 1;
    width: 100%;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: hidden;
    min-height: 0;
    padding: 0 8px 8px;
  }

  .stksc-left {
    order: 2;
    width: 100%;
    flex: 0 0 auto;
    padding: 20px 16px 28px;
  }

  .stksc-panel {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    height: 300px;
    min-height: 300px;
  }

  .stksc-subtitle {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.12em;
  }

  .stksc-title {
    font-size: 54px;
    line-height: 62px;
    margin-bottom: 14px;
  }

  .stksc-description {
    max-width: 100%;
  }

  .stksc-button {
    min-width: 190px;
    justify-content: center;
  }

  .stksc-nav {
    margin-top: 18px;
  }

  .stksc-panel.is-active .stksc-hover-arrow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.stksc-left.is-animating-out-up .stksc-subtitle,
.stksc-left.is-animating-out-up .stksc-title,
.stksc-left.is-animating-out-up .stksc-description,
.stksc-left.is-animating-out-up .stksc-button {
  animation: stkscOutUp 0.22s ease forwards;
}

.stksc-left.is-animating-out-down .stksc-subtitle,
.stksc-left.is-animating-out-down .stksc-title,
.stksc-left.is-animating-out-down .stksc-description,
.stksc-left.is-animating-out-down .stksc-button {
  animation: stkscOutDown 0.22s ease forwards;
}

.stksc-left.is-animating-in-up .stksc-subtitle,
.stksc-left.is-animating-in-up .stksc-title,
.stksc-left.is-animating-in-up .stksc-description,
.stksc-left.is-animating-in-up .stksc-button {
  animation: stkscInUp 0.3s ease forwards;
}

.stksc-left.is-animating-in-down .stksc-subtitle,
.stksc-left.is-animating-in-down .stksc-title,
.stksc-left.is-animating-in-down .stksc-description,
.stksc-left.is-animating-in-down .stksc-button {
  animation: stkscInDown 0.3s ease forwards;
}

.stksc-left.is-animating-out-up .stksc-title,
.stksc-left.is-animating-out-down .stksc-title,
.stksc-left.is-animating-in-up .stksc-title,
.stksc-left.is-animating-in-down .stksc-title {
  animation-delay: 0.03s;
}

.stksc-left.is-animating-out-up .stksc-description,
.stksc-left.is-animating-out-down .stksc-description,
.stksc-left.is-animating-in-up .stksc-description,
.stksc-left.is-animating-in-down .stksc-description {
  animation-delay: 0.06s;
}

.stksc-left.is-animating-out-up .stksc-button,
.stksc-left.is-animating-out-down .stksc-button,
.stksc-left.is-animating-in-up .stksc-button,
.stksc-left.is-animating-in-down .stksc-button {
  animation-delay: 0.09s;
}

@keyframes stkscOutUp {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-100%); }
}

@keyframes stkscOutDown {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(100%); }
}

@keyframes stkscInUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stkscInDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
