.services-section {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  padding-bottom: 5rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch; /* ?? klíčové */
}

/* =========================
   KARTA – ZÁKLAD
   ========================= */
.service-card {
  background: #4a5056;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.28);

  display: flex;
  flex-direction: column;

  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;

  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #8B8B7A;
  box-shadow: 0 22px 45px rgba(0,0,0,0.38);
}

/* =========================
   VARIANTA – S FOTKOU
   ========================= */
.service-media {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.55)
  );
}

/* =========================
   OBSAH
   ========================= */
.service-body {
  padding: 1.8rem;
}

.service-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.service-body p,
.service-body li {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.service-body ul {
  padding-left: 1.2rem;
  margin: 0;
}

/* =========================
   VARIANTA – TEXTOVÁ
   ========================= */
.service-card--text {
  justify-content: flex-start; /* ?? obsah vždy odshora */
}

.service-card--text .service-body {
  padding: 2.5rem;
}

/* =========================
   GRID PRO O NÁS / KARIÉRU
   ========================= */
.services-grid--about {
  grid-template-columns: repeat(3, 1fr);
}
/* =========================
   SLUŽBY – mezery mezi kartami (stránka Služby)
   ========================= */
.section-light .service-card {
  margin-bottom: 3rem;
}

/* poslední bez mezery */
.section-light .service-card:last-child {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid--about {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-section {
    margin-top: -60px;
  }

  .services-grid,
  .services-grid--about {
    grid-template-columns: 1fr;
  }
}

/* =========================
   KARIÉRA – zvýraznění textů
   ========================= */
.service-card h4 {
  color: #ffffff;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card ul li {
  color: #e6e6e6;
}
