/* ===== Testimonial layout s preciznim poravnanjem naslova ===== */

.qe-testimonial-wrapper {
  display: grid !important;
  grid-template-columns: 300px 1fr; /* fleksibilno – tekst širi */
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "img name"
    "img byline"
    "img text";
  column-gap: 60px; /* razmak između slike i teksta */
  row-gap: 8px;
  align-items: start;

  background-color: #f7f7f7;
  padding: 50px 60px;
  border-radius: 12px;
  position: relative;
  margin: 0 auto 50px auto;
  max-width: 1200px;
}

/* Parne kartice – zrcalni raspored */
.qe-testimonial-wrapper:nth-child(even) {
  grid-template-columns: 1fr 300px;
  grid-template-areas:
    "name img"
    "byline img"
    "text img";
}

/* Omogućuje djeci da zauzmu grid-areas */
.qe-testimonial-meta,
.qe-testimonial-author {
  display: contents !important;
}

/* Slika */
.qe-testimonial-img {
  grid-area: img;
  width: 300px;
  min-width: 300px;
  height: 300px;
  justify-self: start;
  align-self: start;
}
.qe-testimonial-img img.avatar {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: none;
}

/* Naslov (IME) */
.qe-testimonial-name {
  grid-area: name;
  margin: 0 0 4px 0;
  font-weight: 700;
  font-size: 1.25rem;
  font-style:normal;
  color: #000;
}

/* Plavi podnaslov */
.qe-testimonial-byline {
  grid-area: byline;
  margin: 0 0 12px 0;
  font-size: 1.05rem;
  color: #0081c9;
  font-style: normal;
}

/* Glavni tekst */
.qe-testimonial-text {
  grid-area: text;
  margin: 0;
  padding: 0; /* nema unutarnjeg ograničenja */
  border: none;
  background: transparent;
  text-align: left;
  line-height: 32px !important;
  font-size: 20px !important;
  color: #25254a;
  width: 100%!important;
  max-width: 100% !important; /* koristi svu širinu */
  padding-left: 0px!important;
}

.qe-testimonial-text p {
  margin: 0;
  font-style: italic;
  line-height: 32px !important;
  font-size: 20px !important;
}

/* Ukloni forsiranje donjeg poravnanja */
.qe-testimonial-author {
  margin-top: 0 !important;
  text-align: left;
}

/* ===== RAZMAK I RAZDJELNA CRTA ===== */
.qe-testimonial-wrapper:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cfcfcf;
}

/* — Responsivno — sve u kolonu na mobitelu */
@media (max-width: 768px) {
  .qe-testimonial-wrapper,
  .qe-testimonial-wrapper:nth-child(even) {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "img"
      "name"
      "byline"
      "text";
    row-gap: 10px;
    column-gap: 0;
    padding: 30px 25px;
  }

  .qe-testimonial-img {
    justify-self: center;
  }

  .qe-testimonial-img img.avatar {
    width: 120px;
    height: 120px;
  }

  .qe-testimonial-text {
    padding: 0 !important;
  }
}
