/* ===== Results Section ===== */
.results {
  padding: 80px 0;
  background: var(--color-white);
}

.results__header {
  text-align: center;
  margin-bottom: 16px;
}

.results__description {
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  color: var(--color-black);
}

/* Photo Grid - horizontal scrolling rows */
.results__grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  overflow: hidden;
}

.results__row {
  display: flex;
  gap: 15px;
  animation: scrollRow 30s linear infinite;
}

.results__row:nth-child(2) {
  animation-direction: reverse;
}

@keyframes scrollRow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.results__photo {
  flex: 0 0 200px;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-gray-card);
}

.results__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Social Link */
.results__social {
  text-align: center;
  margin-top: 50px;
}

.results__social-text {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--color-black);
}

.results__social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.results__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 20px;
  font-weight: var(--fw-medium);
  text-transform: lowercase;
  transition: transform var(--transition), box-shadow var(--transition);
}

.results__social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.results__social-btn svg,
.results__social-btn img {
  width: 32px;
  height: 32px;
}

/* === Responsive === */
@media (max-width: 992px) {
  .results__social-text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .results {
    padding: 50px 0;
  }
  .results__description {
    font-size: 16px;
  }
  .results__photo {
    flex: 0 0 150px;
    height: 120px;
  }
  .results__social-text {
    font-size: 18px;
  }
  .results__social-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

@media (max-width: 576px) {
  .results__social-links {
    flex-direction: column;
    align-items: center;
  }
  .results__social-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
