/* Styly pro domovskou stránku */
.content-home {
    padding: 2rem;
    min-height: 400px;
    position: relative;
    border-radius: 3rem;
}

.content-home.with-bg {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    color: white;
}

.content-home[data-bg-image] {
    background-image: var(--bg-image);
}

/* Overlay for more readable with gradient */
.content-home.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--ktn-dark-blue) 30%, transparent 120%);
    
    z-index: 1;
    border-radius: 3rem;
}

.content-home.with-bg p {
    position: relative;
    z-index: 2;
}

.content-home.with-bg article {
    position: relative;
    z-index: 2;
}
.content-home article p:nth-child(1) {
    font-size: 1.3rem !important;
    font-weight: 400;
}


.content-home article p:nth-child(2) {
    font-size: 1.1rem !important;
    font-weight: 300;
}

.company-mission a {
    color: #fff;
}

.btn-mission {
    border: 4px solid var(--ktn-light-blue);
    color: var(--ktn-light-blue);
    transition: all 0.3s ease;
}

.btn-mission:hover {
    background-color: var(--ktn-light-blue);
    color: var(--ktn-dark-blue);
    text-decoration: none;
}

@media (max-width: 30em) { /* 30em = 480px */
  .content-home {
    border-radius: 1.5rem;
  }

  .content-home.with-bg::before {
    border-radius: 1.5rem;
  }
}

/* Accessibly hides content: remains for screen readers, is not visible visually.
   Do not use for elements that are to be interactively controlled by the keyboard. */
.visually-hidden {
    position:absolute !important;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    clip-path:inset(50%);
    white-space:nowrap;
    border:0;
      }