@import url("https://fonts.googleapis.com/css?family=Exo+2:400,700&subset=cyrillic");
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
}

.nav-action .button {
  display: inline-block;
  text-decoration: none;
  background: #f5f5f5;
  color: #222;
  padding: 0.6em 1em;
  border-radius: 4px;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  text-align: left;
  transition: all 0.2s ease-in-out;
}

.nav-action .button strong {
  display: block;
  font-weight: 600;
}

.nav-action .button span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
}

.nav-action .button:hover {
  background: #eaeaea;
  color: #000;
  border-color: #ccc;
}

.nav {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 1rem; /* space-x-4 */
  padding: 8px 20px; /* py-2 px-5 */
  border-radius: 9999px; /* rounded-full */
  border: 1px solid rgba(214, 218, 222, 1); /* border-border-primary */
  font-size: 14px; /* text-sm */
}

.nav__link {
  color: rgba(107, 114, 128, 1); /* text-gray-500 */
  font-weight: 500; /* font-medium */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.nav__link:hover,
.nav__link:focus {
  color: rgba(15, 23, 42, 1); /* text-text-primary */
}

.nav__link--active {
  color: rgba(15, 23, 42, 1); /* active state */
}

li {
  list-style: none; /* removes bullet/number */
}