/* Hizmet detay sayfası */
.service-detail__grid {
  display: grid;
  gap: 1.75rem 2.25rem;
  align-items: start;
}
@media (min-width: 900px) {
  .service-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2rem 2.5rem;
  }
}

.service-detail__figure {
  margin: 0;
  position: relative;
}

.service-detail__figure-deco {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  pointer-events: none;
  opacity: 0.82;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.service-detail__figure-deco svg {
  width: 100%;
  height: 100%;
  display: block;
}
.service-detail__media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.6);
}
.service-detail__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(62vh, 480px);
  object-fit: cover;
  vertical-align: middle;
}
.service-detail__media--placeholder {
  aspect-ratio: 16 / 10;
  min-height: 200px;
  max-height: min(62vh, 480px);
  background: linear-gradient(160deg, rgba(15, 118, 110, 0.5), rgba(30, 58, 95, 0.55));
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail__placeholder-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  opacity: 0.6;
}

.service-detail__placeholder-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  padding: 1.5rem;
}

.service-detail__placeholder-svg svg {
  width: min(200px, 70%);
  height: auto;
  opacity: 0.75;
}

.service-detail__text {
  min-width: 0;
  position: relative;
}

.service-detail__text-accent {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  opacity: 0.75;
}

.service-detail__text-accent svg {
  width: min(140px, 100%);
  height: auto;
}

@media (min-width: 900px) {
  .service-detail__text-accent {
    justify-content: flex-start;
  }
}
.service-detail__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-detail__body {
  font-size: 1rem;
  line-height: 1.65;
  color: #cbd5e1;
}
.service-detail__body.prose-block p {
  margin-bottom: 1rem;
}
.service-detail__body.prose-block ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
  list-style: disc;
  color: #cbd5e1;
}
.service-detail__body.prose-block li {
  margin-bottom: 0.65rem;
}
.service-detail__body.prose-block li strong {
  color: #f1f5f9;
  font-weight: 600;
}
.service-detail__back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.service-detail__back a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
}
.service-detail__back a:hover {
  color: #5eead4;
}
