/* =========================================================
   ser.css  –  Services 内页样式
   ========================================================= */

/* ── Service Content ─────────────────────────────────────── */
.service-content {
  padding: 120px 40px 96px;
  max-width: 1024px;
  margin: 0 auto;
}
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left image */
.service-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.service-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Right text */
.service-text {
  padding-top: 8px;
}
.service-text .section-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.89rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}
.service-text .link-get {
  font-size: 0.89rem;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
  transition: color .3s ease, border-color .3s ease;
}
.service-text .link-get:hover {
  color: var(--green);
  border-color: var(--green);
}


/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .service-content {
    padding: 100px 24px 72px;
  }
  .service-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-img-wrap img {
    height: 280px;
  }
  .cta-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .cta-text h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 540px) {
  .service-img-wrap img {
    height: 220px;
  }
  .cta-text h2 {
    font-size: 1.4rem;
  }
}
