.results-section {
  height: 965px;
  background: var(--color-background-secondary);
}

.results-section .page-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.results-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-5);
}

.result-card {
  display: flex;
  width: 325.33px;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.result-image {
  display: flex;
  width: 100%;
  height: 325.33px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-3);
  border-radius: var(--radius-card);
  background: var(--color-background-primary);
  box-shadow: var(--shadow-card);
}

.result-image img {
  width: 293.33px;
  height: 293.33px;
  object-fit: cover;
}

.result-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 400;
  line-height: var(--line-height-lg);
}

.result-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  text-align: center;
}

.results-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .result-card {
    width: calc((100% - 64px) / 3);
  }

  .result-image {
    height: auto;
    aspect-ratio: 1;
  }

  .result-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 1023px) {
  .results-section {
    height: auto;
  }

  .result-card {
    width: calc((100% - 64px) / 3);
  }

  .result-image {
    height: auto;
    aspect-ratio: 1;
  }

  .result-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 767px) {
  .results-section .page-container {
    gap: var(--space-7);
  }

  .results-section .section-description br {
    display: none;
  }

  .results-grid {
    flex-direction: column;
    gap: var(--space-5);
  }

  .result-card {
    width: 100%;
    gap: var(--space-2);
  }

  .result-image img {
    width: 100%;
    height: 100%;
  }
}
