.pr-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pr-columns-1 { grid-template-columns: 1fr !important; }
.pr-columns-2 { grid-template-columns: repeat(2, 1fr) !important; }
.pr-columns-4 { grid-template-columns: repeat(4, 1fr) !important; }

.pr-testi-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pr-testi-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.pr-testi-photo img {
    width: 180px;
    height: 180px;
    /*max-width: 30vw;*/         /* won't get too big on small screens */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.4rem;
}

.pr-testi-short-bio {
    color: #666;
    font-size: 0.95rem;
    /*margin-bottom: 1.4rem*/;
    line-height: 1.5;
}

.pr-testi-name {
    font-size: 1.2rem !important;
    margin: 0px 0 0.4rem 0; /* ← top margin 60px as requested */
    font-weight: 500;
}

.pr-testi-designation {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.pr-testi-quote {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .pr-testi-grid {
        grid-template-columns: 1fr !important;
    }
}

.fullscreen-slide-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
  width: 100vw;
}

.fullscreen-slide {
  flex: 0 0 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

/* Optional: hide scrollbar but keep swipe */
.fullscreen-slide-wrapper::-webkit-scrollbar {
  display: none;
}
.fullscreen-slide-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}