:root {
  --lz-bg: #f7f9fc;
  --lz-ink: #172033;
  --lz-muted: #667085;
  --lz-line: #e4e7ec;
  --lz-card: #fff;
  --lz-yellow: #ffb000;
  --lz-teal: #00a6a6;
}

body {
  margin: 0;
  background: var(--lz-bg);
  color: var(--lz-ink);
  font-family: Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
}

.lz-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.lz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--lz-line);
  backdrop-filter: blur(12px);
}

.lz-nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.lz-brand {
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.lz-menu {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lz-menu a {
  text-decoration: none;
  color: var(--lz-muted);
  font-weight: 700;
}

.lz-search {
  display: flex;
  border: 1px solid var(--lz-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.lz-search input,
.lz-search button {
  border: 0;
  padding: 10px 12px;
}

.lz-search button {
  background: var(--lz-yellow);
  font-weight: 800;
}

.lz-hero {
  padding: 58px 0 38px;
  background: linear-gradient(135deg, #101828, #1f2a44);
  color: #fff;
}

.lz-eyebrow {
  color: var(--lz-yellow);
  font-weight: 800;
}

.lz-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  margin: 12px 0;
  letter-spacing: 0;
}

.lz-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.8;
}

.lz-section {
  padding: 34px 0;
}

.lz-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.lz-section-head h1,
.lz-section-head h2 {
  margin: 0;
}

.lz-grid,
.lz-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lz-card,
.lz-category {
  background: var(--lz-card);
  border: 1px solid var(--lz-line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .06);
}

.lz-card img,
.lz-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: #eef2f6;
}

.lz-card strong {
  display: block;
  padding: 12px;
  line-height: 1.5;
}

.lz-pagination {
  margin: 28px 0 0;
  direction: rtl;
}

.lz-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lz-pagination .page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--lz-line);
  border-radius: 6px;
  background: #fff;
  color: var(--lz-ink);
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
}

.lz-pagination .page-numbers.current {
  background: #101828;
  border-color: #101828;
  color: #fff;
}

.lz-pagination a.page-numbers:hover {
  border-color: var(--lz-teal);
  color: var(--lz-teal);
}

.lz-category {
  min-height: 140px;
  background: linear-gradient(135deg, var(--lz-teal), var(--lz-yellow));
  background-size: cover;
  background-position: center;
  color: #fff;
  display: grid;
  align-items: end;
  padding: 16px;
}

.lz-category strong {
  font-size: 20px;
}

.lz-footer {
  margin-top: 40px;
  padding: 28px 0;
  background: #101828;
  color: #fff;
}

.lz-footer p {
  color: rgba(255, 255, 255, .7);
}

.lz-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
}

.lz-footer-links a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-weight: 700;
}

.lz-page {
  background: #fff;
  border: 1px solid var(--lz-line);
  border-radius: 8px;
  padding: 24px;
}

.lz-page-content {
  line-height: 1.9;
  color: var(--lz-muted);
}

.lz-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.lz-signup-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 20px;
  align-items: stretch;
}

.lz-signup-band img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--lz-line);
  background: #fff;
}

.lz-signup-band .sarkosa-signup {
  height: 100%;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--lz-line);
  border-radius: 8px;
  background: #fff;
}

body.logged-in .lz-signup-band {
  grid-template-columns: 1fr;
}

body.logged-in .lz-signup-band > img,
body.logged-in img[src*="registration-benefits.png"] {
  display: none;
}

@media (max-width: 900px) {
  .lz-nav {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .lz-grid,
  .lz-category-grid,
  .lz-signup-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .lz-grid,
  .lz-category-grid,
  .lz-signup-band {
    grid-template-columns: 1fr;
  }
}
