/* --- Styl pouze pro rozcestník Biodeur --- */
#biodeur-rozcestnik-safe {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 80px auto;
  border-radius: 20px;
  overflow: hidden;
  justify-content: center;
  font-family: "Rubik", sans-serif;
}

#biodeur-rozcestnik-safe .bio-blok {
  flex: 1 1 48%;
  max-width: 620px;
  margin: 10px;
  border-radius: 20px;
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#biodeur-rozcestnik-safe .bio-blok:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

#biodeur-rozcestnik-safe .bio-nohy {
  background: #fcd724;
}
#biodeur-rozcestnik-safe .bio-nehty {
  background: #afdbf5;
}

#biodeur-rozcestnik-safe .bio-obsah {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
#biodeur-rozcestnik-safe .bio-text {
  flex: 0 0 45%;
}
#biodeur-rozcestnik-safe .bio-text h2 {
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 0.4em;
}
#biodeur-rozcestnik-safe .bio-text p {
  font-size: 1.1rem;
  margin-bottom: 1.2em;
}
#biodeur-rozcestnik-safe .bio-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
}
#biodeur-rozcestnik-safe .bio-btn:hover {
  background: #019640;
}
#biodeur-rozcestnik-safe .bio-fotky {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
}
#biodeur-rozcestnik-safe .bio-fotky img {
  width: 30%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* mobilní zarovnání */
@media (max-width: 992px) {
  #biodeur-rozcestnik-safe {
    flex-direction: column;
    align-items: center;
  }
  #biodeur-rozcestnik-safe .bio-blok {
    flex: 1 1 100%;
    max-width: 90%;
  }
  #biodeur-rozcestnik-safe .bio-obsah {
    flex-direction: column;
    text-align: center;
  }
}
