/* GPU-Free Gaming guide — service cards */

.hero-image--gpufree {
  max-width: min(720px, 100%);
  background: #000000;
}

.hero-image--gpufree img {
  width: 100%;
  height: auto;
  max-height: clamp(220px, 36vw, 420px);
  object-fit: contain;
  object-position: center;
}

.gpu-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.gpu-tagline {
  margin: 0 0 24px;
  color: color-mix(in oklab, var(--muted) 85%, transparent);
  font-size: 0.95rem;
}

.service-block {
  margin-bottom: 32px;
}

.service-block h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.service-block .service-desc {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nvidia-card {
  position: relative;
  background-image: url('../../../images/gaming/nvidia_wallpaper.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  box-shadow: var(--shadow);
}

.nvidia-card-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.nvidia-card-half:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nvidia-card-half a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: transform 0.3s ease;
  padding: 20px;
}

.nvidia-card-half a:hover {
  transform: scale(1.05);
}

.nvidia-card-half img {
  max-width: 80%;
  max-height: 180px;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.nvidia-download-label {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.08em;
}

.gpu-notes {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--round);
  background: color-mix(in oklab, var(--zms-700) 55%, transparent);
  border: 1px solid rgba(152, 186, 227, 0.2);
}

.gpu-notes h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--zms-100);
}

.gpu-notes p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.gpu-notes p:last-child {
  margin-bottom: 0;
}

.gpu-sys-req {
  display: inline-block;
  margin-top: 16px;
  color: var(--zms-100);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #76b900;
}

.gpu-sys-req:hover {
  color: #fff;
}

.more-services-head {
  margin: 40px 0 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(152, 186, 227, 0.25);
}

.more-services-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.service-slot {
  padding: 20px;
  border-radius: var(--round);
  border: 1px solid rgba(152, 186, 227, 0.25);
  background: color-mix(in oklab, var(--zms-700) 40%, transparent);
  min-height: 160px;
}

.service-slot h3 {
  margin: 8px 0 10px;
  font-size: 1.1rem;
}

.service-slot p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-slot--placeholder {
  border-style: dashed;
  border-color: rgba(152, 186, 227, 0.35);
  background: color-mix(in oklab, var(--zms-700) 25%, transparent);
}

.service-slot--add {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0.85;
}

.service-slot .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--muted);
}

@media (max-width: 768px) {
  .nvidia-card {
    flex-direction: column;
    min-height: auto;
  }

  .nvidia-card-half {
    min-height: 160px;
  }

  .nvidia-card-half:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nvidia-card-half img {
    max-height: 100px;
  }

  .nvidia-download-label {
    font-size: 1.5rem;
  }
}
