/* ARSES Homepage — Quick Cards (below Hero) */

.arses-quick-cards {
  max-width: var(--container, 1400px);
  margin: 48px auto 0;
  padding: 0 24px;
}

.arses-quick-cards__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.arses-quick-cards__card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 300px;
  min-width: 0;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(13, 59, 46, 0.07);
  color: var(--text, #111);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.arses-quick-cards__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(13, 59, 46, 0.15);
}

.arses-quick-cards__media {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #f3f6f4;
}

.arses-quick-cards__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.arses-quick-cards__card:hover .arses-quick-cards__image {
  transform: scale(1.05);
}

.arses-quick-cards__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 20px 20px;
  background: #fff;
}

.arses-quick-cards__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  color: #0d3b2e;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.arses-quick-cards__desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted, #6b7280);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arses-quick-cards__action {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary, #1f7a5c);
  transition: transform 0.3s ease, color 0.3s ease;
}

.arses-quick-cards__card:hover .arses-quick-cards__action {
  transform: translateX(3px);
  color: var(--primary-dark, #165a44);
}

@media (max-width: 1100px) {
  .arses-quick-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .arses-quick-cards {
    margin-top: 32px;
    padding: 0 16px;
  }

  .arses-quick-cards__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .arses-quick-cards__grid::-webkit-scrollbar {
    height: 6px;
  }

  .arses-quick-cards__grid::-webkit-scrollbar-thumb {
    background: rgba(31, 122, 92, 0.25);
    border-radius: 999px;
  }

  .arses-quick-cards__card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
    min-height: 280px;
  }

  .arses-quick-cards__media {
    height: 200px;
  }
}
