.ibx-wrap {
  --gap: 24px;
  --radius: 16px;
  --shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.ibx-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ibx-title {
  font: 600 20px/1.2 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  margin-top: 20px;
}

.ibx-arrows {
  display: flex;
  gap: 10px;
}

.ibx-btn {
  font-size: 15px;
  width: 40px;
  height: 40px;
  border-radius: 25%;
  border: 1px solid #e7e7e7;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.ibx-btn:hover {
  transform: translateY(-1px);
}

.ibx-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  background-color: #E0E0E0;
  transform: none;
}

.is-hidden {
  display: none !important;
}

.ibx-swiper {
  padding: 4px;
  -webkit-user-select: none;
  user-select: none;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.ibx-pagination {
  position: static;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ibx-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e9eef1;
  border: 1px solid #cfd8dc;
  opacity: 1;
  transition: transform .2s ease, background .2s ease, border .2s ease;
  cursor: pointer;
}

.ibx-pagination .swiper-pagination-bullet:hover {
  transform: scale(1.1);
}

.ibx-pagination .swiper-pagination-bullet-active {
  background: #21a66b;
  border-color: #21a66b;
}

.ibx-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  width: 100%;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s ease, transform .2s ease, opacity .2s ease;
  height: 100%;
}

.ibx-card:hover,
.ibx-card:focus {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, .12);
  border-radius: var(--radius);
  transform: translateY(-2px);
  outline: none;
}

.ibx-card.is-disabled {
  pointer-events: none;
  opacity: .55;
  filter: grayscale(.15);
  transform: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  border-color: #21a66b;
}

.ibx-media {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ibx-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ibx-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ibx-subtitle {
  color: #21a66b;
  font: 700 14px/1.2 system-ui;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.ibx-card-title {
  font: 700 18px/1.25 system-ui;
  margin: 0 0 6px;
}

.ibx-text {
  color: #333;
  font: 400 14px/1.5 system-ui;
}

.ibx-presentation-line {
  margin: 0;
}

@media (max-width: 1199px) {
  .ibx-card {
    grid-template-columns: 110px 1fr;
    gap: 16px;
  }

  .ibx-media {
    width: 110px;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .ibx-card {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }

  .ibx-media {
    width: 96px;
    height: 100%;
  }
}
