/* ########## Sidebar #####################  */
/* LAYOUT */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;

  max-width: 1200px;
  margin: auto;
  padding: 60px 14px;
}

/* SIDEBAR */
.legal-sidebar {
  position: sticky;
  top: 200px;
  height: fit-content;
}

.legal-sidebar h3 {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* LINKS */
.legal-link {
  display: block;
  padding: 10px 12px;
  margin-bottom: 6px;

  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;

  transition: 0.2s ease;
}

.legal-link:hover {
  background: #f3f4f6;
}

/* ACTIVE PAGE */
.legal-link.active {
  background: #111;
  color: #fff;
}

/* CONTENT */
.legal-content {
  max-width: 800px;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
  }

  .legal-link {
    white-space: nowrap;
    border: 1px solid #e5e7eb;
  }

  .legal-link.active {
    background: #111;
    color: #fff;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .legal-layout {
    padding: 30px 16px;
  }
}
