header.navbar {
  .navbar-inner {
    min-height: auto;
    padding-block: 1rem;

    .brand {
      padding: 0;

      img {
        width: 112px;
        height: 32px;
      }
    }

    .btn-navbar,
    .nav-collapse {
      display: none;
    }
  }
}

section#docsSearch {
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      120% 120% at 100% 100%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(135deg, #4f46e5 0%, #06b6d4 45%, #22c55e 100%);
  padding-block: 4rem;

  h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
  }

  input[type="text"],
  input[type="search"] {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);

    &:focus {
      border-color: #fff;
      box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.35),
        0 10px 28px rgba(0, 0, 0, 0.16);
    }
  }
}

section.category-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;

  .category {
    display: block;
    text-align: left;
    width: inherit;
    margin: 0;
    padding: 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e6eaf1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      border-color 160ms ease,
      background-color 160ms ease;
    grid-column: span 12;

    &:hover {
      transform: translateY(-2px);
      border-color: #b9cdfa;
      box-shadow: 0 12px 24px rgba(41, 98, 255, 0.16);
      background: #f9fbff;
    }

    &:focus-visible,
    &:focus-within {
      outline: 3px solid #7aa7ff;
      outline-offset: 3px;
      border-color: #5d8ef5;
      box-shadow:
        0 0 0 6px rgba(93, 142, 245, 0.2),
        0 12px 24px rgba(41, 98, 255, 0.16);
      background: #f9fbff;
    }

    @media (min-width: 768px) {
      grid-column: span 6;
    }

    @media (min-width: 1200px) {
      grid-column: span 4;
    }
  }
}

section#main-content {
  background: none;

  .contentWrapper {
    border-radius: 1rem;
  }
}
