/* Shared marketplace presentation used by Home and Explore. */
#home-v2-direct-services {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  margin-top: 32px;
}

#home-v2-direct-services::before { display: none; }

.home-v2-direct-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

.home-v2-direct-service-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #fbf7ff 100%);
  border: 1.5px solid rgba(123,44,191,0.18);
  box-shadow: 0 5px 16px rgba(123,44,191,0.12);
  text-decoration: none;
  color: #333;
  min-width: 0;
  min-height: 112px;
  justify-content: flex-start;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  box-sizing: border-box;
}

.home-v2-direct-service-card:hover,
.home-v2-direct-service-card:focus {
  border-color: rgba(123,44,191,0.35);
  box-shadow: 0 8px 24px rgba(123,44,191,0.18);
  transform: translateY(-2px);
  outline: none;
}

.home-v2-direct-service-card:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(123,44,191,0.12);
}

.home-v2-direct-service-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #5e2a9e;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  min-width: 0;
  max-width: 100%;
}

.home-v2-direct-service-desc {
  font-size: 0.75rem;
  color: #7a5e99;
  line-height: 1.35;
  text-align: left;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 600px) {
  .home-v2-direct-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (min-width: 900px) {
  .home-v2-direct-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .home-v2-direct-service-card { padding: 16px 14px; }
  .home-v2-direct-service-title { font-size: 0.90rem; }
  .home-v2-direct-service-desc { font-size: 0.77rem; }
}
