/* ===== Pulse Home – Unique Section (scoped) ===== */

.unoque-section {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #222;
}

.unoque-section > .container {
  max-width: 1200px;
  margin: 0 auto;
}

.unoque-section > .container > h2.text-center {
margin-top: 2em;
}

/* Grid wrapper for the cards */
.unoque-section .wrap.unoque-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  justify-items: center;
  align-items: stretch; /* equal card heights */
}

/* Card */
.unoque-section .wrap.unoque-slider > .inner-wrap {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.unoque-section .wrap.unoque-slider > .inner-wrap:hover {
    cursor: auto;
}

/* Icon/Image (uniform height so titles align) */
.unoque-section .wrap.unoque-slider > .inner-wrap > img {
  width: 100%;
  height: 75px;          /* tweak if needed */
  object-fit: contain;   /* keeps icons proportional */
  display: block;
  margin: 0 auto 16px;
}

/* Title (get_sub_field('text')) */
.unoque-section .wrap.unoque-slider > .inner-wrap > .unoque-text {
  font-weight: 600;
  margin: 8px 0 10px;
  min-height: 48px;      /* keeps title blocks same height across cards */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: #333;
}

/* Description */
.unoque-section .wrap.unoque-slider > .inner-wrap > .unoque-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    overflow-y: auto;
    text-align: left;
}

.clients-say-section .wrap .slider-box .text {
    max-height: 165px !important;
    overflow-y: scroll;
}

/* ===== Responsive (scoped) ===== */
@media (max-width: 992px) {
  .unoque-section .wrap.unoque-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .unoque-section .wrap.unoque-slider {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .unoque-section .wrap.unoque-slider > .inner-wrap {
    max-width: 90%;
  }
  .unoque-section .wrap.unoque-slider > .inner-wrap > img {
    height: 75px; /* keep consistent on mobile */
  }
}

.home-service .wrap .inner-wrap .content-box .text {
        -webkit-line-clamp: 4 !important;
    }