.service-section {
  margin-top: 120px;
  width: 100%;
  padding: 0 320px;
}

.service-description {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.service-description p {
  font-weight: 900;
  font-size: 2.5rem;
  flex: 1;
  min-width: 662px;
}

.service-description span {
  flex: 1;
}

.service-cards {
  height: 100%;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 18px;
}

.service-card {
  height: 320px;
  border: 1px solid rgb(181 181 181 / 50%);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 24px;
  transition: all 0.5s;
}

.service-card:hover {
  background-color: black;
}

.service-card:hover h4 {
  color: white;
}

.service-card:hover img {
  filter: brightness(10);
}

.service-card img {
  height: 96px;
}

.service-card h4 {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* (1870px) */
@media (max-width: 1870px) {
  .service-section {
    padding: 0 240px;
  }
}

/* (1700px) */
@media (max-width: 1700px) {
  .service-section {
    padding: 0 160px;
  }

  .service-description p {
    min-width: 620px;
  }
}

/* (1300px) */
@media (max-width: 1300px) {
  .service-section {
    padding: 0 120px;
    margin-top: 72px;
  }

  .service-description {
    flex-direction: column;
  }
  .service-description p {
    min-width: unset;
  }
}

/* (1199px) */
@media (max-width: 1199px) {
  .service-section {
    padding: 0 80px;
  }
}

/* (991px) */
@media (max-width: 991px) {
  .service-section {
    padding: 0 28px;
  }
}

/* (900px) */
@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* (600px) */
@media (max-width: 600px) {
  .service-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-card {
    pointer-events: none;
    height: 260px;
  }

  /* Aktiver Zustand per Scroll */
  .service-card.is-active {
    background: #000;
    color: #fff;
    transform: translateY(-4px);
  }

  .service-card.is-active img {
    /* explizit gewünscht: brightness 10 */
    filter: brightness(10);
  }
}

/* (379px) */
@media (max-width: 379px) {
  .service-description p {
    font-size: 2rem;
  }
}
