.whatdidtheysay__title {
  color: var(--color-gray-dark);
  font-size: 64px;
  text-align: center;
  font-weight: 300;
  text-transform: capitalize;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.whatdidtheysay__title::before,
.whatdidtheysay__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--color-green);
  opacity: 0.5;
}

/* Slider */
.whatdidtheysay-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
}

.whatdidtheysay-slider__nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  padding: 0;
}

.whatdidtheysay-slider__nav:hover {
  opacity: 0.75;
}

.whatdidtheysay-slider__nav.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.whatdidtheysay-slider__nav.is-disabled .slide-arrow {
  filter: grayscale(1) brightness(0.75);
}

.whatdidtheysay-slider__nav .slide-arrow {
  width: 54px;
  height: 54px;
}

.whatdidtheysay-slider__nav .slide-arrow--left {
  transform: rotate(180deg);
}

.whatdidtheysay-slider__nav .slide-arrow--right {
  transform: rotate(0deg);
}

.whatdidtheysay-slider__wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
  padding: 10px 0;
}

.whatdidtheysay-slider__track,
.whatdidtheysay-slider__track.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 14px 0;
}

.whatdidtheysay-slider__slide,
.whatdidtheysay-slider__slide.swiper-slide {
  height: auto;
  display: flex;
}

/* Card */
.whatdidtheysay-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 22px 20px;
  position: relative;
  width: 100%;
  max-height: 298px;
  min-height: 240px;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 1px solid transparent;
  overflow: hidden;
}

.whatdidtheysay-card:hover {
  background-color: var(--color-gray-light);
  border-color: var(--color-blue);
}

.whatdidtheysay-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.whatdidtheysay-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatdidtheysay-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatdidtheysay-card__avatar-placeholder {
  font-size: 18px;
  font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
}

.whatdidtheysay-card__share {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.whatdidtheysay-card__share:hover {
  opacity: 1;
}

.whatdidtheysay-card__share img {
  width: 48px;
  height: 48px;
}

.whatdidtheysay-card__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 2px;
  flex-shrink: 0;
}

.whatdidtheysay-card__like {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.whatdidtheysay-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.whatdidtheysay-card__job {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  flex-shrink: 0;
  margin-bottom: 6px;
  line-height: 1.4;
}

.whatdidtheysay-card__text {
  font-weight: 300;
  color: #666;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-height: 0;
  font-size: 15px;
}

.whatdidtheysay-card__button {
  padding: 10px 20px;
  border: 1.5px solid var(--color-green);
  background: transparent;
  color: var(--color-green);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.whatdidtheysay-card__button:hover {
  background: var(--color-green);
  color: white;
}

/* View All */
.whatdidtheysay__view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.whatdidtheysay-view-all-button {
  min-height: 56px;
  padding: 0 115px;
  background-color: var(--color-green);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
  font-family: var(--font-family-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatdidtheysay-view-all-button:hover {
  box-shadow: 0 4px 12px rgba(59, 180, 74, 0.35);
  opacity: 0.95;
}

.whatdidtheysay-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

/* Responsive */

/* Mobil (max-width: 767px) */
@media (max-width: 767px) {
  .whatdidtheysay__title {
    font-size: 32px;
    gap: 12px;
    margin-bottom: 20px;
  }

  .whatdidtheysay-slider {
    margin-top: 30px;
    gap: 0;
  }

  /* Nav buttonları mobilde gizle */
  .whatdidtheysay-slider__nav {
    display: none !important;
  }

  .whatdidtheysay-slider__wrapper {
    padding: 0;
  }

  .whatdidtheysay-card {
    padding: 18px 16px;
    min-height: auto;
    max-height: none;
  }

  .whatdidtheysay-card__top {
    gap: 12px;
    margin-bottom: 12px;
  }

  .whatdidtheysay-card__avatar {
    width: 56px;
    height: 56px;
  }

  .whatdidtheysay-card__avatar-placeholder {
    font-size: 16px;
  }

  .whatdidtheysay-card__share {
    width: 40px;
    height: 40px;
  }

  .whatdidtheysay-card__share img {
    width: 40px;
    height: 40px;
  }

  .whatdidtheysay-card__name-row {
    gap: 8px;
    margin: 2px 0;
  }

  .whatdidtheysay-card__like {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .whatdidtheysay-card__name {
    font-size: 16px;
  }

  .whatdidtheysay-card__job {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .whatdidtheysay-card__text {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .whatdidtheysay-card__button {
    padding: 8px 16px;
    font-size: 12px;
    margin-top: 10px;
  }

  .whatdidtheysay__view-all {
    margin-top: 30px;
  }

  .whatdidtheysay-view-all-button {
    min-height: 40px;
    padding: 0 60px;
    font-size: 16px;
  }

  .whatdidtheysay-empty {
    padding: 40px 20px;
    font-size: 14px;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .whatdidtheysay__title {
    font-size: 48px;
    gap: 20px;
  }

  .whatdidtheysay-slider {
    margin-top: 50px;
  }

  .whatdidtheysay-card {
    padding: 20px 18px;
    min-height: 260px;
    max-height: 280px;
  }

  .whatdidtheysay-card__avatar {
    width: 64px;
    height: 64px;
  }

  .whatdidtheysay-card__name {
    font-size: 17px;
  }

  .whatdidtheysay-card__job {
    font-size: 11px;
  }

  .whatdidtheysay-card__text {
    font-size: 14px;
  }

  .whatdidtheysay-card__button {
    padding: 9px 18px;
    font-size: 12px;
  }

  .whatdidtheysay-view-all-button {
    padding: 0 80px;
    font-size: 16px;
  }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .whatdidtheysay__title {
    font-size: 56px;
  }

  .whatdidtheysay-card {
    min-height: 250px;
    max-height: 290px;
  }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .whatdidtheysay__title {
    font-size: 64px;
  }
}
