.kp-info-repeater-box,
.kp-info-repeater-box *::before,
.kp-info-repeater-box *::after {
  box-sizing: border-box;
}

.kp-info-repeater-box {
  --kp-info-bg: #2348e6;
  --kp-info-text: #ffffff;
  --kp-info-icon: #ffffff;

  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 42px 56px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: var(--kp-info-bg);
  color: var(--kp-info-text);
}

.kp-info-repeater-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-width: 72px;
  height: 72px;
  color: var(--kp-info-icon);
  font-size: 42px;
  line-height: 1;
}

.kp-info-repeater-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

.kp-info-repeater-icon svg path {
  fill: currentColor;
}

.kp-info-repeater-text {
  min-width: 0;
  flex: 1;
}

.kp-info-repeater-title {
  margin: 0 0 10px 0;
  color: var(--kp-info-text);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.kp-info-repeater-content {
  color: var(--kp-info-text);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}

.kp-info-repeater-content p {
  margin: 0;
  color: inherit;
}

.kp-info-repeater-content p + p {
  margin-top: 0.8em;
}

.kp-info-repeater-content strong,
.kp-info-repeater-content b {
  font-weight: 800;
}

@media (max-width: 767px) {
  .kp-info-repeater-box {
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .kp-info-repeater-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .kp-info-repeater-title {
    font-size: 22px;
  }

  .kp-info-repeater-content {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .kp-info-repeater-box {
    flex-direction: column;
  }
}