/* =========================================================
   KTI INTERNASIONAL LANDING PAGE
   Prefix: rk-kti-
   ========================================================= */

.rk-kti-page {
  --rk-kti-primary: #3610a8;
  --rk-kti-primary-dark: #220870;
  --rk-kti-primary-soft: #eee9ff;
  --rk-kti-red: #dc151b;
  --rk-kti-yellow: #ffd51f;
  --rk-kti-cyan: #38c9ef;
  --rk-kti-dark: #151326;
  --rk-kti-text: #2d2b36;
  --rk-kti-muted: #6e6a78;
  --rk-kti-border: #e8e5ef;
  --rk-kti-soft: #f7f6fb;
  --rk-kti-white: #ffffff;
  --rk-kti-shadow: 0 20px 55px rgba(30, 20, 70, 0.12);

  overflow: hidden;
  color: var(--rk-kti-text);
  background: var(--rk-kti-white);
  font-family: inherit;
}

.rk-kti-page *,
.rk-kti-page *::before,
.rk-kti-page *::after {
  box-sizing: border-box;
}

.rk-kti-page img {
  display: block;
  max-width: 100%;
}

.rk-kti-page a {
  text-decoration: none;
}

.rk-kti-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.rk-kti-section {
  padding: 88px 0;
}

.rk-kti-section--soft {
  background:
    linear-gradient(rgba(54, 16, 168, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 16, 168, 0.025) 1px, transparent 1px),
    var(--rk-kti-soft);
  background-size: 32px 32px;
}

.rk-kti-section--dark {
  color: var(--rk-kti-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(56, 201, 239, 0.18), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(255, 213, 31, 0.1), transparent 25%),
    linear-gradient(135deg, #1b0a59 0%, #321095 55%, #241071 100%);
}

.rk-kti-section--promo {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 213, 31, 0.15), transparent 25%),
    linear-gradient(135deg, #f1eeff, #ffffff 52%, #e8faff);
}

/* HERO */

.rk-kti-hero {
  position: relative;
  padding: 70px 0 78px;
  background:
    linear-gradient(rgba(54, 16, 168, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 16, 168, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8f6ff 58%, #ebfaff 100%);
  background-size: 38px 38px, 38px 38px, auto;
}

.rk-kti-hero::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 460px;
  height: 460px;
  content: "";
  border-radius: 50%;
  background: rgba(56, 201, 239, 0.16);
  filter: blur(4px);
}

.rk-kti-hero::after {
  position: absolute;
  bottom: -160px;
  left: -140px;
  width: 360px;
  height: 360px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 213, 31, 0.14);
}

.rk-kti-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.rk-kti-badge,
.rk-kti-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--rk-kti-primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rk-kti-badge {
  padding: 10px 16px;
  margin-bottom: 22px;
  color: var(--rk-kti-white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rk-kti-primary), #5922d6);
  box-shadow: 0 10px 25px rgba(54, 16, 168, 0.22);
}

.rk-kti-hero h1 {
  max-width: 730px;
  margin: 0;
  color: var(--rk-kti-dark);
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.rk-kti-hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--rk-kti-primary);
  font-size: 0.57em;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.rk-kti-hero__lead {
  max-width: 720px;
  margin: 27px 0 0;
  color: #514d5d;
  font-size: 1.08rem;
  line-height: 1.75;
}

.rk-kti-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.rk-kti-meta-item {
  min-height: 89px;
  padding: 17px 18px;
  border: 1px solid rgba(54, 16, 168, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 9px 24px rgba(35, 18, 90, 0.06);
}

.rk-kti-meta-item__label {
  display: block;
  margin-bottom: 5px;
  color: var(--rk-kti-muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.rk-kti-meta-item strong {
  color: var(--rk-kti-dark);
  font-size: 0.94rem;
  line-height: 1.35;
}

.rk-kti-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.rk-kti-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.rk-kti-btn:hover {
  transform: translateY(-2px);
}

.rk-kti-btn--primary {
  color: var(--rk-kti-white);
  background: linear-gradient(135deg, var(--rk-kti-primary), #5420d0);
  box-shadow: 0 13px 27px rgba(54, 16, 168, 0.25);
}

.rk-kti-btn--primary:hover,
.rk-kti-btn--primary:focus {
  color: var(--rk-kti-white);
  box-shadow: 0 17px 34px rgba(54, 16, 168, 0.31);
}

.rk-kti-btn--secondary {
  color: var(--rk-kti-primary);
  border-color: rgba(54, 16, 168, 0.22);
  background: var(--rk-kti-white);
}

.rk-kti-btn--secondary:hover,
.rk-kti-btn--secondary:focus {
  color: var(--rk-kti-primary);
  background: var(--rk-kti-primary-soft);
}

.rk-kti-btn--yellow {
  color: #17121e;
  background: var(--rk-kti-yellow);
  box-shadow: 0 12px 25px rgba(255, 213, 31, 0.23);
}

.rk-kti-btn--yellow:hover,
.rk-kti-btn--yellow:focus {
  color: #17121e;
  background: #ffe04d;
}

.rk-kti-btn--block {
  width: 100%;
}

.rk-kti-hero__note {
  margin: 15px 0 0;
  color: var(--rk-kti-muted);
  font-size: 0.86rem;
}

.rk-kti-image-card {
  position: relative;
  max-width: 455px;
  padding: 11px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(54, 16, 168, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--rk-kti-shadow);
  transform: rotate(1.2deg);
}

.rk-kti-image-card::before {
  position: absolute;
  z-index: -1;
  inset: -18px;
  content: "";
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(54, 16, 168, 0.18),
    rgba(56, 201, 239, 0.15)
  );
}

.rk-kti-image-card img {
  width: 100%;
  border-radius: 18px;
}

/* TRUST */

.rk-kti-trust {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--rk-kti-border);
  border-bottom: 1px solid var(--rk-kti-border);
  background: var(--rk-kti-white);
}

.rk-kti-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rk-kti-trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 150px;
  padding: 34px 30px;
}

.rk-kti-trust-item + .rk-kti-trust-item {
  border-left: 1px solid var(--rk-kti-border);
}

.rk-kti-trust-item__number {
  display: flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--rk-kti-primary);
  border-radius: 13px;
  background: var(--rk-kti-primary-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.rk-kti-trust-item strong {
  display: block;
  margin: 1px 0 7px;
  color: var(--rk-kti-dark);
  font-size: 1.02rem;
}

.rk-kti-trust-item p {
  margin: 0;
  color: var(--rk-kti-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* HEADINGS */

.rk-kti-section-heading {
  max-width: 680px;
}

.rk-kti-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.rk-kti-section-heading--center .rk-kti-eyebrow {
  margin-inline: auto;
}

.rk-kti-section-heading h2 {
  margin: 11px 0 0;
  color: var(--rk-kti-dark);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.rk-kti-section-heading > p {
  margin: 18px 0 0;
  color: var(--rk-kti-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.rk-kti-section-heading--light h2,
.rk-kti-section-heading--light p {
  color: var(--rk-kti-white);
}

.rk-kti-section-heading--light p {
  opacity: 0.75;
}

.rk-kti-section--dark .rk-kti-eyebrow {
  color: var(--rk-kti-yellow);
}

/* INTRO */

.rk-kti-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}

.rk-kti-intro__content {
  padding-left: 28px;
  border-left: 4px solid var(--rk-kti-primary);
}

.rk-kti-intro__content p {
  margin: 0;
  color: #55515f;
  font-size: 1rem;
  line-height: 1.85;
}

.rk-kti-intro__content p + p {
  margin-top: 18px;
}

/* BENEFITS */

.rk-kti-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 45px;
}

.rk-kti-benefit-card {
  position: relative;
  min-height: 255px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--rk-kti-border);
  border-radius: 20px;
  background: var(--rk-kti-white);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.rk-kti-benefit-card:hover {
  border-color: rgba(54, 16, 168, 0.22);
  box-shadow: 0 18px 40px rgba(36, 22, 78, 0.09);
  transform: translateY(-5px);
}

.rk-kti-benefit-card::after {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  content: "";
  border-radius: 50%;
  background: var(--rk-kti-primary-soft);
}

.rk-kti-benefit-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--rk-kti-white);
  border-radius: 14px;
  background: var(--rk-kti-primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.rk-kti-benefit-card h3 {
  position: relative;
  z-index: 2;
  margin: 21px 0 10px;
  color: var(--rk-kti-dark);
  font-size: 1.18rem;
  line-height: 1.35;
}

.rk-kti-benefit-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--rk-kti-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* MODULES */

.rk-kti-module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 45px;
}

.rk-kti-module {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 20px;
  min-height: 160px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
}

.rk-kti-module__day {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 40px;
  padding: 8px 10px;
  color: #21143c;
  border-radius: 10px;
  background: var(--rk-kti-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.rk-kti-module h3 {
  margin: 0 0 9px;
  color: var(--rk-kti-white);
  font-size: 1.08rem;
  line-height: 1.4;
}

.rk-kti-module p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* AUDIENCE */

.rk-kti-audience {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 85px;
  align-items: center;
}

.rk-kti-audience__list {
  display: grid;
  gap: 12px;
}

.rk-kti-audience-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border: 1px solid var(--rk-kti-border);
  border-radius: 14px;
  background: var(--rk-kti-white);
  box-shadow: 0 9px 25px rgba(30, 20, 70, 0.045);
}

.rk-kti-audience-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  color: var(--rk-kti-primary);
  border-radius: 11px;
  background: var(--rk-kti-primary-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

.rk-kti-audience-item p {
  margin: 0;
  color: var(--rk-kti-dark);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

/* OFFER */

.rk-kti-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 80px;
  align-items: center;
}

.rk-kti-offer__content h2 {
  margin: 12px 0 16px;
  color: var(--rk-kti-dark);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.rk-kti-offer__content > p {
  max-width: 580px;
  margin: 0;
  color: var(--rk-kti-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.rk-kti-date-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 27px 0 20px;
}

.rk-kti-date-list span {
  display: inline-flex;
  padding: 11px 15px;
  color: var(--rk-kti-primary);
  border: 1px solid rgba(54, 16, 168, 0.14);
  border-radius: 10px;
  background: var(--rk-kti-white);
  font-size: 0.9rem;
  font-weight: 800;
}

.rk-kti-offer__schedule-note {
  font-size: 0.86rem !important;
}

.rk-kti-price-card {
  padding: 36px;
  border: 1px solid rgba(54, 16, 168, 0.15);
  border-radius: 24px;
  background: var(--rk-kti-white);
  box-shadow: var(--rk-kti-shadow);
}

.rk-kti-price-card__label {
  display: inline-flex;
  padding: 8px 13px;
  color: var(--rk-kti-white);
  border-radius: 999px;
  background: var(--rk-kti-primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rk-kti-price-card__original {
  margin-top: 24px;
  color: var(--rk-kti-muted);
  font-size: 0.9rem;
}

.rk-kti-price-card__original del {
  margin-left: 5px;
}

.rk-kti-price-card__price {
  display: flex;
  align-items: flex-start;
  margin: 7px 0 12px;
  color: var(--rk-kti-primary);
}

.rk-kti-price-card__price span {
  margin-top: 10px;
  margin-right: 6px;
  font-size: 1.15rem;
  font-weight: 900;
}

.rk-kti-price-card__price strong {
  font-size: clamp(2.7rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.rk-kti-price-card p {
  margin: 0 0 24px;
  color: var(--rk-kti-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.rk-kti-price-card small {
  display: block;
  margin-top: 13px;
  color: var(--rk-kti-muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

/* FACILITIES */

.rk-kti-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.rk-kti-facility {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 17px 20px 17px 54px;
  border: 1px solid var(--rk-kti-border);
  border-radius: 14px;
  background: var(--rk-kti-white);
  color: var(--rk-kti-dark);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.4;
}

.rk-kti-facility::before {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  content: "✓";
  color: var(--rk-kti-white);
  border-radius: 50%;
  background: var(--rk-kti-primary);
  font-size: 0.72rem;
  font-weight: 900;
}

/* FAQ */

.rk-kti-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
}

.rk-kti-faq {
  display: grid;
  gap: 12px;
}

.rk-kti-faq details {
  overflow: hidden;
  border: 1px solid var(--rk-kti-border);
  border-radius: 14px;
  background: var(--rk-kti-white);
}

.rk-kti-faq summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--rk-kti-dark);
  cursor: pointer;
  list-style: none;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
}

.rk-kti-faq summary::-webkit-details-marker {
  display: none;
}

.rk-kti-faq summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 25px;
  height: 25px;
  content: "+";
  color: var(--rk-kti-primary);
  border-radius: 50%;
  background: var(--rk-kti-primary-soft);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  transform: translateY(-50%);
}

.rk-kti-faq details[open] summary::after {
  content: "–";
}

.rk-kti-faq details p {
  padding: 0 22px 21px;
  margin: 0;
  color: var(--rk-kti-muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

/* FINAL CTA */

.rk-kti-final-cta {
  padding: 72px 0;
  color: var(--rk-kti-white);
  background:
    radial-gradient(circle at 85% 15%, rgba(56, 201, 239, 0.2), transparent 25%),
    linear-gradient(135deg, #251078, var(--rk-kti-primary) 58%, #260b7e);
}

.rk-kti-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 65px;
  align-items: center;
}

.rk-kti-final-cta__eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--rk-kti-yellow);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rk-kti-final-cta h2 {
  max-width: 730px;
  margin: 0;
  color: var(--rk-kti-white);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.rk-kti-final-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.rk-kti-final-cta__action {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  min-width: 250px;
}

.rk-kti-final-cta__action span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .rk-kti-hero__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
  }

  .rk-kti-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rk-kti-offer {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 45px;
  }

  .rk-kti-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .rk-kti-section {
    padding: 68px 0;
  }

  .rk-kti-hero {
    padding: 54px 0 64px;
  }

  .rk-kti-hero__grid,
  .rk-kti-intro,
  .rk-kti-audience,
  .rk-kti-offer,
  .rk-kti-faq-wrap,
  .rk-kti-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .rk-kti-hero__visual {
    order: -1;
  }

  .rk-kti-image-card {
    max-width: 390px;
    margin-inline: auto;
    transform: none;
  }

  .rk-kti-hero__content {
    text-align: center;
  }

  .rk-kti-badge {
    margin-inline: auto;
  }

  .rk-kti-hero h1,
  .rk-kti-hero__lead {
    margin-inline: auto;
  }

  .rk-kti-hero__actions {
    justify-content: center;
  }

  .rk-kti-trust__grid {
    grid-template-columns: 1fr;
  }

  .rk-kti-trust-item {
    min-height: auto;
  }

  .rk-kti-trust-item + .rk-kti-trust-item {
    border-top: 1px solid var(--rk-kti-border);
    border-left: 0;
  }

  .rk-kti-intro,
  .rk-kti-audience,
  .rk-kti-faq-wrap {
    gap: 38px;
  }

  .rk-kti-module-list {
    grid-template-columns: 1fr;
  }

  .rk-kti-offer {
    gap: 38px;
  }

  .rk-kti-price-card {
    max-width: 500px;
  }

  .rk-kti-final-cta__inner {
    gap: 35px;
    text-align: center;
  }

  .rk-kti-final-cta h2,
  .rk-kti-final-cta p {
    margin-inline: auto;
  }

  .rk-kti-final-cta__action {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .rk-kti-container {
    width: min(100% - 28px, 1180px);
  }

  .rk-kti-section {
    padding: 56px 0;
  }

  .rk-kti-hero h1 {
    font-size: 2.6rem;
  }

  .rk-kti-hero h1 span {
    font-size: 0.55em;
  }

  .rk-kti-hero__lead {
    font-size: 0.98rem;
  }

  .rk-kti-hero__meta,
  .rk-kti-benefit-grid,
  .rk-kti-facility-grid {
    grid-template-columns: 1fr;
  }

  .rk-kti-meta-item {
    min-height: auto;
  }

  .rk-kti-hero__actions {
    display: grid;
  }

  .rk-kti-btn {
    width: 100%;
  }

  .rk-kti-benefit-card {
    min-height: auto;
  }

  .rk-kti-module {
    grid-template-columns: 1fr;
  }

  .rk-kti-module__day {
    width: fit-content;
    min-width: 76px;
  }

  .rk-kti-price-card {
    padding: 27px 22px;
  }

  .rk-kti-price-card__price strong {
    font-size: 3.2rem;
  }

  .rk-kti-date-list {
    display: grid;
  }

  .rk-kti-date-list span {
    justify-content: center;
    text-align: center;
  }
}
