.cols__content .article {
    overflow: auto;
}

  #top-warning-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }

  .warning-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffed00;
    color: #000;
    padding: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 100%;
  }

  .warning-bar span {
    flex: 1;
    text-align: center;
  }

  .warning-bar a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
  }

  .close-button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    color: #000;
  }

  .close-button:focus {
    outline: 2px solid #000;
  }

  body.warning-visible {
    padding-top: 4rem; /* přizpůsob délce warning baru */
  }