.service-introduction-section {
  width: 100%;
  min-height: 200px;
  background-color: rgb(var(--color-background));
}

.service-introduction-container {
  width: 100%;
}

/* Content Side */
.service-introduction__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 606px;
}

/* Image Side */
.service-introduction__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 560px;
  min-height: 420px;
  position: relative;
}

.service-introduction__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.service-introduction__image-wrapper:empty {
  min-height: 420px;
  background: rgba(var(--color-foreground), 0.03);
  border-radius: 8px;
}

/* Mobile Responsive - 959px 断点 */
@media (max-width: 959px) {
  .service-introduction-container {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: stretch !important;
  }

  .service-introduction__content {
    width: 100%;
    max-width: 100%;
  }

  .service-introduction__image-wrapper {
    order: -1;
    margin-bottom: 0 !important;
    width: 100%;
    min-height: 250px;
    aspect-ratio: 4/3;
  }
  
  .service-introduction__image-wrapper img {
    object-fit: cover;
  }
}

