/* ===== Service Detail ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
  background: var(--blue, #003087);
  overflow: hidden;
}

.service-detail__header {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white, #fff);
  position: relative;
  overflow: hidden;
  background-color: var(--blue);
}

.service-detail__header > * {
  position: relative;
  z-index: 1;
}

.service-detail__header[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,20,70,0.6);
}

.service-detail__num {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.service-detail__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.service-detail__catch {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.service-detail__hero {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: rgba(0,48,135,0.5);
}

.service-detail__body {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--gray, #888);
  margin-bottom: 40px;
  max-width: 800px;
}

.service-detail__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
  max-width: 720px;
}

.service-detail__photo {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  background-color: var(--light, #f8f8f8);
}

@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__header { padding: 32px 24px; }
  .service-detail__hero { aspect-ratio: 16/9; }
  .service-detail__photos { grid-template-columns: 1fr; }
}
