body {
  font-family: "Geologica";
  overflow-x: hidden;
  background: #f0f2f4;
}

.win_bg {
  background: #f0f2f4;
}

.win_main_wrap {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 20px;
  margin-bottom: 20px;
}

.winners-menu-wrap {
  font-family: Inter;
  border-radius: 12px;
  background: white;
  font-size: 14px;
}

.header {
  padding: 30px 0;
  align-items: center;
  justify-content: space-between;

  .header_logo img {
    width: 80px;
  }

  .header_links {
    display: flex;
    gap: 20px;

    .header_link {
      cursor: pointer;
      position: relative;
    }

    .header_link.active:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 4px;
      background-color: #efcc8e;
      border-radius: 6px;
      transform: translateY(10px); /* немного опускаем ниже текста */
    }
  }

  .header_logo {
    width: 100px;
  }
}

.navigation {
  margin: 20px 0 0 0;
  display: flex;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  align-items: center;

  .navigation_main {
    color: #1760a4;
  }
}
.navigation a {
  color: #1760a4;
}

.links {
  margin: 20px 0;
  display: flex;
  gap: 10px;

  .link {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 24px;
    padding: 5px 15px;
    transition: all 0.3s ease-in-out;
  }

  .link:hover {
    background-color: black;
    color: white;
  }
}

.main div {
  margin: 25px 0;
  font-weight: 500;
  font-size: 48px;
  color: #1760a4;
}
.page__wrapper {
  padding: 0px !important;
}
.wrap-np {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.years {
  display: grid;
  gap: 10px;
  background: white;
  padding: 30px;
  border-radius: 12px;
}
.winners-menu {
  display: grid;
  background: #fff;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 8px;

  a {
    padding: 15px 20px;
    border-radius: 8px;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #758393;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
    background: #fff;
  }
  a:hover {
    background-color: #1760a4;
    color: white;
  }
}
.years button {
  border: none;
  text-align: start;
  border-radius: 8px;
  padding: 15px 20px;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #758393;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  background: #fff;
}

.years button:hover {
  background-color: #1760a4;
  color: white;
}

.information-container {
  display: flex;
  background: #f0f2f4;
  gap: 20px;
  flex-direction: row;
  overflow: hidden;
  max-width: 100%;
  user-select: none;
}

.information {
  border-radius: 12px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;

  img {
    width: 50px;
    height: 50px;
  }
}

.p {
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1e;
}

.words {
  font-weight: 500;
  font-size: 24px;
  display: grid;
  gap: 5px;
  color: #1760a4;
}

.best {
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.best_title {
  font-size: 20px;
  font-weight: 500;
  color: #1760a4;
  padding-top: 20px;
}

.TOO span {
  color: #0b2136;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .wrap {
    padding: 30px 50px;
  }

  .information-container {
    padding: 0 50px;
  }

  .win_main_wrap {
    grid-template-columns: 1fr;
  }

  .winners-menu-wrap {
    margin: 30px;
  }
}

@media (max-width: 1024px) {
  .wrap {
    padding: 20px 30px;
  }
  .main p {
    font-size: 36px;
  }
  .words {
    font-size: 20px;
    line-height: 60px;
  }
  .information {
    width: 100%;
    height: auto;
    padding: 40px 30px;
  }

  .information-container {
    padding: 0 30px;
  }

  .years {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 5px 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;

    .years a {
      flex-shrink: 0;
    }
  }

  .information {
    width: 80%;
    gap: 20px;

    .best {
      display: grid;
      gap: 10px;
    }

    .best_title {
      font-size: 16px;
      line-height: normal;
    }

    .TOO {
      font-size: 14px;
      line-height: normal;
    }

    .words {
      display: grid;
      gap: 10px;
      line-height: normal;
    }
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 20px;
  }

  .information-container {
    padding: 0 20px;
  }

  .main div {
    font-size: 32px;
  }
}

.go_up a {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid #1760a4;
  background: white;
  color: #1760a4;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
