.cr_wrap {
  max-width: clamp(320px, 92vw, 1080px);
  margin: 0 auto;
  padding-bottom: 15px;
  border-radius: 8px;
  background: #fff;
  margin: 30px auto 0;
}

/* Carousel */
.cr_carousel {
  position: relative;
  display: grid;
  grid-template-columns: 16px 1fr 16px;
  align-items: center;
  gap: 4px;
}

.cr_viewport {
  overflow: hidden;
  padding-bottom: 5px;
}

.cr_track {
  display: flex;
  width: 100%;
  transition: transform .45s ease;
  will-change: transform;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cr_slide {
  min-width: 100%;
}

/* Nav buttons */
.cr_nav {
  appearance: none;
  border: 0;
  background: transparent;
  width: 16px;
  height: 40px;
  cursor: pointer;
  position: relative;
}

.cr_nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.cr_prev::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent #333 transparent transparent;
}

.cr_next::before {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
}

.cr_nav[disabled] {
  opacity: .3;
  cursor: default;
}

/* Dots */
.cr_dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.cr_dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d2dae6;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.cr_dot[aria-selected="true"] {
  background: #3b82f6;
}

/* Card */
.cr_card {
  background: #fff;
  overflow: hidden;
  margin: 50px auto 0;
}

.cr_content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 900px) {
  .cr_content {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }
}

.cr_media {
  background: #eceff3;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.cr_media .cr_imgbox {
  display: grid;
  place-items: center;
  color: #2b2f35;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 26px);
  aspect-ratio: 16/9;
}

.cr_media iframe,
.cr_media img {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cr_details {
  display: grid;
  gap: 16px;
}

.cr_badge {
  background: #ff8a1f;
  color: #fff;
  text-align: center;
  padding: 12px 14px;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 32px);
}

.cr_badge .cr_big {
  font-size: clamp(24px, 3vw, 48px);
}

.cr_badge small {
  display: block;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: .95;
  padding-top: 5px;
}

.cr_prices {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 12px;
  width: 100%;
}

.cr_price-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cr_label {
  font-size: clamp(15px, 1.3vw, 17px);
  color: #5a6b85;
}

.cr_value {
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
}

.cr_value.cr_before {
  color: #255ad6;
}

.cr_value.cr_after {
  color: #f59e0b;
}

.cr_per {
  font-size: clamp(12px, 1.1vw, 16px);
  color: #5a6b85;
  margin-left: 3px;
}

.cr_arrow {
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.cr_quote {
  border: 2px dashed #eb6f00;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdfa;
}

.cr_quote .cr_name {
  font-weight: 800;
  /*font-size: clamp(13px, 1.3vw, 16px);*/
  font-size: 16px;
  margin-bottom: 12px;
}

.cr_quote p {
  margin: 0;
  /*font-size: clamp(13px, 1.3vw, 15px);*/
  font-size: 16px;
  color: #2a2f36;
}

@media (min-width: 768px) {
  .cr_nav {
    width: 16px;
    height: 40px;
  }

  .cr_nav::before {
    top: 50%;
    left: 85%;
  }

  .cr_prev::before {
    border-width: 16px 16px 16px 0;
  }

  .cr_next::before {
    border-width: 16px 0 16px 16px;
  }

  .cr_carousel {
    grid-template-columns: 32px 1fr 32px;
  }
}