.centered-link {
  display: block;
  text-align: center;
  margin: 1.5em 0;
}

.link-button {
  display: inline-block;
  padding: 10px 18px;
  background-color: #005a9c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin: 5px;
  transition: background-color 0.2s ease;
}

.link-button:hover {
  background-color: #003f6f;
}

.link-button-yellow {
  display: inline-block;
  padding: 10px 18px;
  background-color: #005a9c;
  color: #ffd700; /* žltá */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin: 5px;
  transition: background-color 0.2s ease;
}

.link-button-yellow:hover {
  background-color: #003f6f;
  color: #ffffff;
}

.icon-link {
  color: #005a9c;
  text-decoration: none;
  font-weight: bold;
  margin: 0.5em;
}

.icon-link:hover {
  text-decoration: underline;
  color: #003f6f;
}
.language-switcher {
  text-align: right;
  margin: 1em;
}
.language-switcher img {
  vertical-align: middle;
}
body {
    border: 5px solid gray !important;
}
/* Journey banner responsive styles */
.journey-banner {
    background-image: url('/img/journey.png');
    background-size: 30vh;
    background-position: center;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-banner-text {
    color: white;
    font-size: 2vw;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

@media (max-width: 600px) {
    .journey-banner {
        height: 50vh;
    }
    .journey-banner-text {
        font-size: 4vw;
    }
}
.mw8 {
    max-width: 100% !important;
}

@media (min-width: 1200px) {
    .mw8 {
        max-width: 1200px !important;
    }
}
.ph3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.ph4-ns {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
ul {
    list-style: none;
    padding-left: 0;
}

ul li::before {
    content: "➤";
    margin-right: 0.5em;
    color: #005a9c;
}
