html[lang] {
  margin: 0!important;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: auto;

  @supports (overflow-y: overlay) {
    overflow-y: overlay;
  }
}

/**
 * Moving admin bar to bottom to avoid it affects on overall vertical positioning
 */
body.admin-bar {
  margin-top: 0!important;
  margin-bottom: 32px!important;
  min-height: calc(100vh - 32px)!important;
}
#wpadminbar {
	top: auto!important;
	bottom: 0!important;
}

@media screen and (max-width: 742px) {
  body.admin-bar {
    margin-top: 0!important;
    margin-bottom: 42px!important;
  }
  #wpadminbar {
    position: fixed!important;
    top: auto!important;
    bottom: 0!important;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar {
    margin-top: 0!important;
    margin-bottom: 42px!important;
  }
  #wpadminbar {
    position: fixed!important;
    top: auto!important;
    bottom: 0!important;
  }
}
/**/


html {
  overflow-y: scroll;
  scrollbar-color: #7f7f7f var(--background-color);
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 5px;
  width: 0;
}

html::-webkit-scrollbar-thumb {
  background: #7f7f7f;
  border-radius: 5px;
  border: 2px solid var(--background-color);
}

html::-webkit-scrollbar-thumb:hover {
  background: #626977;
}

body {
  font-family: "Inter", sans-serif;
  color: #000;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  flex-direction: column;
  display: flex;
  padding-top: var(--header-height, 134px);
  position: relative;
  z-index: 0;
  word-break: break-word;
  margin: 0;
  padding: 0;
}

body.input-focused {
  padding-top: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:focus-visible {
  outline: var(--accent-color, #0071eb) solid 2px;
}

:not(.categories-menu) a:not([class]):hover {
  text-decoration: underline;
}

button::-moz-focus-inner {
  border: 0;
}



.header {
  height: 150px;
  width: 100vw;
  background: #000;
  color: #fff;
  border-bottom: 1px solid yellow;
}

.header__container {
  display: flex;
  height: 100%;
}

.header__logo-image img {
  max-height: 100%;
}


.post-item__link img {
  height: 400px;
}