/* details */
.page-service_details {
  margin-top: 7.5rem;
  max-width: 83.3%;
  width: 100%;
  margin-inline: auto;
  background-color: var(--default-color);
  border-radius: 20px;
  padding: 0 5rem 0 7.5rem;
  margin-bottom: 5rem;
}
.page-service_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 5rem 0;
}
.page-service_item:not(:last-child) {
  border-bottom: 1px solid var(--bg-blue-color);
}
.page-service_item-contents {
  width: 50%;
}
.contents_img {
  width: 30%;
}
.contents_category {
  margin-top: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.contents_title {
  margin-top: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.contents_details {
  margin-top: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
}
.ls-6 {
  letter-spacing: 0.06rem;
}
.contents_button {
  margin-top: 1rem;
}
.contents_btn-arrow {
  background-color: var(--default-color);
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-service_item-img {
  width: 42%;
}
.page-service_item-img img {
  border-radius: 15px;
}

@media (max-width: 768px) {
  .page-service_details {
    margin-top: 5rem;
    max-width: 91.46%;
    padding: 0 2rem;
  }
  .page-service_item {
    flex-direction: column-reverse;
    padding-left: 0%;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .page-service_item-contents {
    width: 100%;
  }
  .page-service_item-img {
    width: 100%;
    height: 50%;
  }
  .page-service_item-img img {
    aspect-ratio: 280 / 210;
    object-fit: cover;
  }
}
@media (max-width: 450px) {
  .contents_category {
    font-size: 0.75rem;
  }
  .contents_title {
    font-size: 2rem;
  }
}
