@import url("fonts.css");
:root {
  --color-bg: #1e1f22;
  --font-main: "Nunito Sans", sans-serif;
  --color-main: #f6f7f7;
  --color-1: #868893;
  --color-2: #54565f;
}

*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

html,
body {
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-main);
  background: var(--color-bg);
}

.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.binomo-them-header {
  position: fixed;
  padding: 16px;
  border-bottom: 1px solid var(--color-2);
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  z-index: 10;
}
.binomo-them-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}
.binomo-them-navbar {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.binomo-them-iconbar {
  width: 14px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-2px);
  background: var(--color-1);
  transition: transform 0.25s;
}
.binomo-them-iconbar:first-child {
  width: 18px;
  transform: translate(-50%, -50%) translateY(-6px);
}
.binomo-them-iconbar:last-child {
  width: 18px;
  transform: translate(-50%, -50%) translateY(6px);
}
.show .binomo-them-iconbar {
  transform: translate(-50%, -50%) translateX(-2px) scale(0, 1);
}
.show .binomo-them-iconbar:first-child {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.show .binomo-them-iconbar:last-child {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.binomo-them-logo img {
  display: block;
  width: 108px;
}
.binomo-them-logo a {
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 23px;
  font-weight: 700;
}
.binomo-them-menu {
  position: absolute;
  top: 57px;
  left: 0;
  height: 100vh;
  width: 100%;
  background: var(--color-bg);
  transform: translateX(-100%);
  transition: transform 0.25s;
}
.binomo-them-menu.fix {
  transition: none !important;
}
.show .binomo-them-menu {
  transform: translateX(0);
}
.binomo-them-menu-item {
  display: flex;
  flex-direction: column;
}
.binomo-them-menu-item a {
  text-decoration: none;
  font-size: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--color-2);
}
.binomo-them-main-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.binomo-them-main-img img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}
.binomo-them-main-img h1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(30, 31, 34, 0) 0%, #1E1F22 90%);
  padding: 0 16px 16px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

main {
  padding: 57px 16px 0;
}

.anons__wrapper {
  text-decoration: none;
}

.anons__info {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  gap: 20px;
  color: #aeb9ba;
}

.anons__date,
.anons__burns,
.anons__society {
  display: flex;
  align-items: center;
  gap: 5px;
}
.anons__date img,
.anons__burns img,
.anons__society img {
  margin-top: -2px;
}

.anons__society img {
  margin-top: 0;
  margin-bottom: -2px;
}

.anons__content-wrapper {
  padding: 10px 16px;
}

.anons__description,
.article_text_content {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.article_text_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 6px 0 0;
}

.anons__read {
  font-size: 16px;
  font-weight: 700;
  padding: 0 24px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffdd3c;
  color: #1e1f22;
  max-width: 230px;
  transition: background-color 0.25s;
}
.anons__read:hover {
  background: #ffefa3;
}

.full-article__asside {
  top: 73px;
}

.recommendations {
  margin: 0 0 4px;
  background: #2a2b30;
  border-radius: 8px;
}

.recommendations-title {
  color: #FFDC3C;
}

@media (min-width: 400px) {
  .binomo-them-main-img h1 {
    font-size: 24px;
  }
}
@media (min-width: 600px) {
  .news-anons {
    gap: 40px;
  }
  .binomo-them-main-img h1 {
    font-size: 28px;
  }
  .binomo-them-full-page {
    gap: 40px;
  }
  .recommendations {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .recommendations {
    margin-bottom: 0;
    max-width: 340px;
  }
  .container {
    width: 720px;
  }
  .binomo-them-nav {
    width: 750px;
  }
  .binomo-them-navbar {
    display: none;
  }
  .binomo-them-menu {
    position: static;
    height: auto;
    transform: none;
    transition: none;
  }
  .binomo-them-menu-item {
    flex-direction: row;
    justify-content: space-evenly;
    flex: 2;
  }
  .binomo-them-menu-item a {
    position: relative;
    border: none;
    font-weight: 700;
    padding: 5px 0;
    font-size: 14px;
  }
  .binomo-them-menu-item a:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    background: currentColor;
    height: 2px;
    transform: scale(0, 1);
    transition: transform 0.25s;
  }
  .binomo-them-menu-item a:hover:after {
    transform: scale(1, 1);
  }
  .binomo-them-main-img h1 {
    font-size: 24px;
  }
  .binomo-them-full-page {
    margin-bottom: 24px;
  }
  .binomo-them-full-page .binomo-them-main-img img {
    max-height: 460px;
  }
  .grid-container {
    gap: 40px;
  }
  .full-article__header {
    height: auto !important;
    max-height: 460px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
  .binomo-them-nav {
    width: 970px;
  }
  .binomo-them-menu-item a {
    font-size: 16px;
  }
  .binomo-them-main-img h1 {
    font-size: 28px;
  }
  .recommendations {
    max-width: 465px;
  }
}
