.suite-nav {
  margin-top: 0.9rem;
}

.suite-nav-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: end;
}

.suite-nav-head h2 {
  margin: 0.2rem 0 0;
  color: #fff2df;
  font-size: 1.15rem;
}

.suite-nav-head p {
  margin: 0;
  color: rgba(246, 237, 222, 0.82);
  line-height: 1.5;
}

.suite-links {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.suite-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 191, 128, 0.28);
  background: rgba(12, 22, 33, 0.78);
  color: #f6edde;
  text-decoration: none;
  font-weight: 700;
}

.suite-link:hover {
  border-color: rgba(244, 191, 128, 0.7);
  background: linear-gradient(120deg, rgba(244, 191, 128, 0.18), rgba(130, 210, 235, 0.16));
}

.suite-link[aria-current="page"] {
  color: #261505;
  background: linear-gradient(120deg, #f4bf80, #ffe3bf);
  border-color: rgba(255, 236, 200, 0.92);
}

@media (max-width: 700px) {
  .suite-nav-head {
    flex-direction: column;
    align-items: start;
  }

  .suite-links {
    flex-direction: column;
  }

  .suite-link {
    width: 100%;
    justify-content: flex-start;
  }
}
