.age-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  margin-right: 8px;
  border-radius: 999px;
  background: #1d2730;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.desk-nav {
  display: none;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}
.desk-nav a {
  color: #1d2730;
  text-decoration: none;
}
.desk-nav a:hover {
  color: #44be4c;
}
@media (min-width: 900px) {
  .desk-nav {
    display: flex;
  }
  .site-header--style2 .btn-mobile-menu {
    display: none;
  }
}
.rank-list {
  display: grid;
  gap: 10px;
  margin: 1.5rem 0 2rem;
}
.rank-row {
  display: grid;
  grid-template-columns: 48px 120px 1fr auto;
  gap: 12px 16px;
  align-items: center;
  padding: 12px 16px;
  background: #f0f3f7;
  border-radius: 12px;
}
.rank-row .nr {
  font-weight: 800;
  font-size: 1.1rem;
  color: #4a5b68;
}
.rank-row .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.rank-row .logo img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.rank-row .meta strong {
  display: block;
  font-size: 1.05rem;
}
.rank-row .meta span {
  color: #44be4c;
  font-weight: 700;
}
.rank-row .acts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.rank-row .btn-rev,
.rank-row .btn-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.rank-row .btn-rev {
  background: #fff;
  color: #1d2730;
  box-shadow: inset 0 0 0 1px #e8ecf2;
}
.rank-row .btn-go {
  background: #44be4c;
  color: #fff;
}
@media (max-width: 720px) {
  .rank-row {
    grid-template-columns: 36px 1fr;
  }
  .rank-row .logo {
    display: none;
  }
  .rank-row .acts {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .rank-row .acts a {
    flex: 1;
  }
}
.home-note {
  font-size: 0.95rem;
  color: #4a5b68;
}
.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 99;
  background: #fff;
  padding: 8px 12px;
}
