#ast-scroll-top {background-color:#333!important;}
.wrapper1 {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 16px;
  margin: 0;
  background: #fff;
}




    /* HEADER */

.yds-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.yds-header-container {
  max-width: 1200px;
  min-height: 58px;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.yds-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.yds-logo img {
  display: block;
  width:60px;
  height: auto;
}


/* MENU DESKTOP */

.yds-nav {
  display: block;
}

.yds-menu {
  display: flex;
  align-items: center;
  gap: 24px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.yds-menu li {
  margin: 0;
  padding: 0;
}

.yds-menu a {
  display: block;
  padding: 18px 0;

  color: #111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.yds-menu a:hover {
  color: #666;
}


/* HAMBURGER - DOMYŚLNIE UKRYTY */

.yds-menu-toggle {
  display: none;
}

.yds-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.yds-menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  transition: 0.25s ease;
}


/* MOBILE */

@media (max-width: 768px) {
  .yds-header-container {
    min-height: 56px;
  }

  .yds-menu-button {
    display: flex;
  }

  .yds-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;

    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .yds-menu {
    display: block;
    padding: 8px 0;
  }

  .yds-menu a {
    padding: 16px 20px;
    font-size: 16px;
  }

  .yds-menu a:hover {
    background: #f5f5f5;
  }

  .yds-menu-toggle:checked ~ .yds-nav {
    display: block;
  }

  .yds-menu-toggle:checked + .yds-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .yds-menu-toggle:checked + .yds-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .yds-menu-toggle:checked + .yds-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* /HEADER */


/* news list */

ul.post-list-v1 {
  --post-list-font-size: 16px;
  --post-list-line-height: 1.45;

  color: #67768e;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: var(--post-list-font-size);
  line-height: var(--post-list-line-height);
}

ul.post-list-v1 li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid rgb(233, 235, 233);
}

ul.post-list-v1 li:first-child {
  border-top: 0;
}

ul.post-list-v1 h3,
ul.post-list-v1 p,
ul.post-list-v1 .post-meta,
ul.post-list-v1 .post-meta span,
ul.post-list-v1 a {
  font-size: var(--post-list-font-size);
  line-height: var(--post-list-line-height);
}

ul.post-list-v1 h3 {
  margin: 0;
  padding: 0;
  color: #111;
  font-weight: 700;
}

ul.post-list-v1 p {
  margin: 0;
  padding: 0;
  color: #67768e;
}

ul.post-list-v1 .post-meta {
  margin: 0;
  padding: 0;
  color: #67768e;
  white-space: nowrap;
}

ul.post-list-v1 .post-meta span {
  display: inline;
}

ul.post-list-v1 a,
ul.post-list-v1 a:visited,
ul.post-list-v1 a:hover,
ul.post-list-v1 a:active,
ul.post-list-v1 h3 a,
ul.post-list-v1 h3 a:visited,
ul.post-list-v1 h3 a:hover,
ul.post-list-v1 h3 a:active {
  color: #111;
  text-decoration: none!important;
}