/* ============================================================
   TESTIMONIALS — sections/testimonials.css
   ============================================================ */

.testimonials {
  background: #1d3433;
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.testimonials::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.02);
  pointer-events: none;
}

/* ---- 2-column grid ---- */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* =======================
   LEFT side
   ======================= */
.testimonials__left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.testimonials__left .section-label {
  color: var(--clr-primary-light);
}

.testimonials__left-title {
  font-family: 'Nomiyola', 'Normiyola', 'Normiyola VIP', var(--ff-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 0.82;
  letter-spacing: 0.035em;
}

/* Big image with overlay text */
.testimonials__image-wrap {
  position: relative;
  border-radius: 0;
  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    18px 100%,
    0 calc(100% - 18px),
    0 18px
  );
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-2xl);
}
.testimonials__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(26,35,50,.85) 100%
  );
}

.testimonials__image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: var(--z-above);
  font-family: var(--ff-serif);
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: var(--lh-snug);
}
.testimonials__image-label span {
  font-family: var(--ff-script);
  font-size: var(--fs-22);
  color: var(--clr-primary-light);
  font-style: normal;
  display: block;
}

/* =======================
   RIGHT side — reviews
   ======================= */
.testimonials__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.testimonials .review-card {
  border-radius: 0;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.07);
}
