/* ================================
   CourierNet – Footer styling
   ================================ */

/* Celý region patičky */
.region-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #111827; /* černé pozadí */
  padding: 40px 20px;
}

/* Jednotlivé bloky v patičce */
.couriernet-footer-block {
  flex: 1 1 300px;
  margin: 0 10px;
  color: #e5e7eb; /* světle šedý text */
  line-height: 1.6;
}

/* Nadpisy bloků */
.couriernet-footer-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Odstavce */
.couriernet-footer-block p {
  font-size: 0.95rem;
  margin: 0 0 10px 0;
}

/* Odkazy */
.couriernet-footer-link {
  color: #3b82f6; /* modrý odkaz */
  text-decoration: underline;
  font-weight: 500;
}

/* ================================
   Mobilní zobrazení
   ================================ */
@media (max-width: 768px) {
  .region-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .couriernet-footer-block {
    margin-bottom: 30px;
  }
}