.service-page .service-list {
  width: 100%;
  padding: 0 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page .service-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 15, 0.7);
}

.service-page a.service-row {
  cursor: pointer;
}

.service-page .service-row__text {
  width: 100%;
  background: #111111;
  /* padding: 34px 24px; */
  /* min-height: 300px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-page .service-row--accent .service-row__text {
  background: #e8843c;
}

.service-page .service-row__logo {
  width: auto;
  height: 40px;
  align-self: flex-start;
  flex: 0 0 auto;
  object-fit: contain;
}

.service-page .service-row__sub {
  margin: 8px 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.service-page .service-row__desc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.75;
  white-space: pre-line;
}

.service-page .service-row__media {
  position: relative;
  width: 100%;
  height: 208px;
  overflow: hidden;
}

.service-page .service-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.service-page .service-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-page a.service-row:hover .service-row__media img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .service-page .service-row {
    flex-direction: row;
  }

  .service-page .service-row__text {
    width: 38%;
    padding: 24px 40px;
    min-height: 208px;
  }

  .service-page .service-row__media {
    width: 62%;
    height: 208px;
  }
}

@media (max-width: 768px) {
  .service-page .service-row__text {
    padding: 24px;
  }
  .service-page .service-row__logo {
    height: 32px;
  }
}