.rank-divisions {
  margin-top: 0.25rem;
}

.division-button {
  width: 60px;
  height: 60px;
  font-weight: 500;
  border-radius: 0.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.division-button:hover {
  background-color: rgb(35, 29, 38);
  margin-top: -0.25rem;
}

.division-button.active {
  background-color: rgb(25, 23, 28);
  color: white;
}

.lp-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: center;
}

@media (max-width: 1280px) {
  .lp-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
