/* ==========================================
   TESTIMONI PASIEN RSKO
========================================== */

.testimoni-pasien-section {
  background: #ffffff;
  padding: 90px 0;
  overflow: hidden;
}

.rsko-testimoni__inner {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

/* ==========================================
   HEADER
========================================== */

.rsko-testimoni__heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.rsko-testimoni__heading span {
  display: inline-block;
  color: #0f9f8f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rsko-testimoni__heading h2 {
  margin: 12px 0 14px;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 950;
}

.rsko-testimoni__heading p {
  color: #667085;
  font-size: 17px;
  line-height: 1.7;
}

/* ==========================================
   SLIDER WRAPPER
========================================== */

.rsko-testimoni__grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 28px;
}

.rsko-testimoni__grid::-webkit-scrollbar {
  height: 8px;
}

.rsko-testimoni__grid::-webkit-scrollbar-track {
  background: #edf2f7;
  border-radius: 999px;
}

.rsko-testimoni__grid::-webkit-scrollbar-thumb {
  background: #0f9f8f;
  border-radius: 999px;
}

/* ==========================================
   CARD
========================================== */

.rsko-testimoni-card {
  flex: 0 0 620px;
  max-width: 620px;

  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;

  align-items: center;

  padding: 24px;

  background: #ffffff;
  border-radius: 24px;

  border: 1px solid #edf2f7;

  box-shadow:
    0 8px 24px rgba(15, 23, 42, .05),
    0 24px 60px rgba(15, 23, 42, .08);

  scroll-snap-align: start;

  transition: all .3s ease;
}

.rsko-testimoni-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(15, 23, 42, .08),
    0 30px 70px rgba(15, 23, 42, .12);
}

/* ==========================================
   FOTO
========================================== */

.rsko-testimoni-card__photo {
  width: 100%;
  height: 260px;

  overflow: hidden;
  border-radius: 18px;

  background: #f3f4f6;
}

.rsko-testimoni-card__photo img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition: transform .4s ease;
}

.rsko-testimoni-card:hover
.rsko-testimoni-card__photo img {
  transform: scale(1.04);
}

/* ==========================================
   CONTENT
========================================== */

.rsko-testimoni-card__content {
  min-width: 0;
}

.rsko-testimoni-card__quote {
  color: #0f9f8f;
  font-size: 58px;
  font-weight: 900;
  line-height: .8;

  margin-bottom: 10px;
}

.rsko-testimoni-card__text {
  color: #475467;
  font-size: 15px;
  line-height: 1.9;

  margin-bottom: 18px;
}

.rsko-testimoni-card__text p {
  margin: 0;
}

.rsko-testimoni-card h3 {
  margin: 0 0 4px;

  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.rsko-testimoni-card__meta {
  margin: 0;

  color: #0f9f8f;
  font-size: 14px;
  font-weight: 800;

  font-style: italic;
}

/* ==========================================
   NAVIGATION BUTTONS
========================================== */

.rsko-testimoni-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.rsko-testimoni-nav button {
  width: 48px;
  height: 48px;

  border: 1px solid #dbe4ea;
  border-radius: 50%;

  background: #ffffff;
  color: #0f9f8f;

  cursor: pointer;

  font-size: 20px;
  font-weight: 900;

  transition: all .25s ease;
}

.rsko-testimoni-nav button:hover {
  background: #0f9f8f;
  color: #ffffff;
  border-color: #0f9f8f;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1200px) {

  .rsko-testimoni-card {
    flex-basis: 560px;
    max-width: 560px;

    grid-template-columns: 200px 1fr;
  }

  .rsko-testimoni-card__photo {
    height: 240px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

  .testimoni-pasien-section {
    padding: 70px 0;
  }

  .rsko-testimoni__inner {
    width: calc(100% - 28px);
  }

  .rsko-testimoni__heading h2 {
    font-size: 42px;
  }

  .rsko-testimoni-card {
    flex: 0 0 90%;

    max-width: none;

    grid-template-columns: 1fr;

    padding: 18px;
  }

  .rsko-testimoni-card__photo {
    height: 260px;
  }

  .rsko-testimoni-card__text {
    font-size: 14px;
  }

  .rsko-testimoni-card__quote {
    font-size: 44px;
  }
}