.alalot-hub,
.alalot-hub-routes {
  --ah-ink: #0b2e53;
  --ah-muted: #4f6877;
  --ah-teal: #16766a;
  --ah-gold: #c9a454;
  --ah-line: #dce8ed;
  --ah-paper: #ffffff;
  --ah-soft: #f3f8f8;
  --ah-alert: #fff3ef;
  color: var(--ah-ink);
}

.alalot-hub {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 0 clamp(2.5rem, 6vw, 5rem);
  font-size: 1rem;
  line-height: 1.9;
}

.alalot-hub *,
.alalot-hub-routes * {
  box-sizing: border-box;
}

.alalot-hub a,
.alalot-hub-routes a {
  text-underline-offset: 3px;
}

.alalot-hub-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: #657b87;
  font-size: 0.82rem;
}

.alalot-hub-breadcrumb a {
  color: #436879;
  text-decoration: none;
}

.alalot-hub-intro {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.35rem, 4vw, 2.75rem);
  border: 1px solid rgba(14, 72, 108, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 9% 8%, rgba(201, 164, 84, 0.2), transparent 28%),
    linear-gradient(145deg, #f8fbfd 0%, #eaf5f2 100%);
  box-shadow: 0 20px 52px rgba(8, 48, 78, 0.1);
}

.alalot-hub-intro::after {
  position: absolute;
  inset: auto -65px -90px auto;
  width: 220px;
  height: 220px;
  border: 35px solid rgba(22, 118, 106, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.alalot-hub-eyebrow {
  display: inline-block;
  color: var(--ah-teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.alalot-hub-lead {
  position: relative;
  z-index: 1;
  max-width: 830px;
  margin: 0.55rem 0 1rem !important;
  color: #244a63;
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  font-weight: 650;
  line-height: 1.85;
}

.alalot-hub-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
}

.alalot-hub-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.25rem 0.8rem;
  border: 1px solid rgba(22, 118, 106, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #165e57;
  font-size: 0.78rem;
  font-weight: 800;
}

.alalot-hub-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.alalot-hub-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.58rem 1rem;
  border: 1px solid #b9ced6;
  border-radius: 12px;
  background: #fff;
  color: var(--ah-ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.alalot-hub-actions a.primary {
  border-color: var(--ah-teal);
  background: var(--ah-teal);
  color: #fff;
}

.alalot-hub-actions a:hover,
.alalot-hub-actions a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(8, 48, 78, 0.12);
}

.alalot-hub-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  padding: 0.85rem;
  border: 1px solid var(--ah-line);
  border-radius: 16px;
  background: #fff;
}

.alalot-hub-toc strong {
  margin-inline-end: 0.25rem;
  color: var(--ah-ink);
  font-size: 0.84rem;
}

.alalot-hub-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.25rem 0.7rem;
  border-radius: 9px;
  background: var(--ah-soft);
  color: #23596b;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.alalot-hub-toc a:hover,
.alalot-hub-toc a:focus-visible {
  background: #deeeeb;
}

.alalot-hub-section {
  scroll-margin-top: 110px;
  margin: 0 0 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--ah-line);
  border-radius: 22px;
  background: var(--ah-paper);
  box-shadow: 0 10px 30px rgba(8, 48, 78, 0.045);
}

.alalot-hub-section h2 {
  margin: 0 0 0.65rem;
  color: var(--ah-ink);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.55;
}

.alalot-hub-section h3 {
  color: #174663;
  line-height: 1.55;
}

.alalot-hub-section p {
  margin: 0 0 0.9rem;
  color: #405d6c;
  line-height: 1.95;
}

.alalot-hub-section p:last-child {
  margin-bottom: 0;
}

.alalot-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.alalot-hub-grid article {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(14, 72, 108, 0.11);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f8fbfc);
}

.alalot-hub-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.alalot-hub-grid p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.82;
}

.alalot-hub-note {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-inline-start: 4px solid var(--ah-gold);
  border-radius: 12px;
  background: #fff9eb;
  color: #59471e;
}

.alalot-hub-alert {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-inline-start: 4px solid #c45542;
  border-radius: 14px;
  background: var(--ah-alert);
  color: #66372e;
}

.alalot-hub-alert ul {
  margin: 0.55rem 0 0;
}

.alalot-hub-alert p {
  color: #66372e;
}

.alalot-hub-checklist,
.alalot-hub-numbered {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: ah-list;
}

.alalot-hub-checklist li,
.alalot-hub-numbered li {
  position: relative;
  margin: 0 0 0.58rem;
  padding: 0.72rem 3rem 0.72rem 0.85rem;
  border-radius: 12px;
  background: var(--ah-soft);
  color: #405d6c;
}

.alalot-hub-checklist li::before,
.alalot-hub-numbered li::before {
  position: absolute;
  inset: 0.72rem 0.8rem auto auto;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 50%;
  background: #dcefeb;
  color: var(--ah-teal);
  font-size: 0.76rem;
  font-weight: 900;
  content: "✓";
}

.alalot-hub-numbered li {
  counter-increment: ah-list;
}

.alalot-hub-numbered li::before {
  content: counter(ah-list);
}

.alalot-hub-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.alalot-hub-split > div {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 15px;
  background: var(--ah-soft);
}

.alalot-hub-split strong {
  color: var(--ah-teal);
}

.alalot-hub-split span {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(14, 72, 108, 0.1);
  color: #496575;
  font-size: 0.9rem;
}

.alalot-hub-clusters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.alalot-hub-clusters a {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid rgba(14, 72, 108, 0.12);
  border-radius: 15px;
  background: #f8fbfc;
  color: var(--ah-ink);
  text-decoration: none;
}

.alalot-hub-clusters a:hover,
.alalot-hub-clusters a:focus-visible {
  border-color: rgba(22, 118, 106, 0.38);
  background: #eef7f5;
}

.alalot-hub-clusters span {
  color: var(--ah-muted);
  font-size: 0.89rem;
  line-height: 1.75;
}

.alalot-hub-inline-link {
  color: var(--ah-teal);
  font-weight: 850;
}

.alalot-hub-library {
  background: linear-gradient(145deg, #f7fbfc, #eef6f4);
}

.alalot-hub-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.alalot-hub-article-grid article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(14, 72, 108, 0.11);
  border-radius: 16px;
  background: #fff;
}

.alalot-hub-article-grid article > span {
  color: #66808e;
  font-size: 0.72rem;
}

.alalot-hub-article-grid h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1rem;
}

.alalot-hub-article-grid h3 a {
  color: var(--ah-ink);
  text-decoration: none;
}

.alalot-hub-article-grid p {
  margin: 0 0 0.65rem;
  color: var(--ah-muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.alalot-hub-read {
  margin-top: auto;
  color: var(--ah-teal);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.alalot-hub-faq-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.alalot-hub-faq details {
  overflow: hidden;
  border: 1px solid var(--ah-line);
  border-radius: 13px;
  background: #fbfdfd;
}

.alalot-hub-faq summary {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 3rem;
  color: var(--ah-ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.alalot-hub-faq summary::-webkit-details-marker {
  display: none;
}

.alalot-hub-faq summary::after {
  position: absolute;
  inset: 50% auto auto 1rem;
  width: 1.35rem;
  height: 1.35rem;
  transform: translateY(-50%);
  color: var(--ah-teal);
  content: "+";
}

.alalot-hub-faq details[open] summary::after {
  content: "−";
}

.alalot-hub-faq details p {
  margin: 0;
  padding: 0 1rem 0.9rem;
  color: var(--ah-muted);
}

.alalot-hub-references {
  background: #f8fbfc;
}

.alalot-hub-references ul {
  margin: 0.75rem 0 0;
}

.alalot-hub-references a {
  color: #175c70;
}

.alalot-hub-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1.2rem;
  border-radius: 18px;
  background: var(--ah-ink);
  color: #fff;
}

.alalot-hub-review span,
.alalot-hub-review strong,
.alalot-hub-review p {
  display: block;
}

.alalot-hub-review span {
  color: #ead39a;
  font-size: 0.78rem;
  font-weight: 800;
}

.alalot-hub-review strong {
  margin: 0.15rem 0;
  font-size: 1.08rem;
}

.alalot-hub-review p {
  margin: 0;
  color: #d9e6ed;
  font-size: 0.86rem;
}

.alalot-hub-review > a {
  flex: 0 0 auto;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 11px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.alalot-hub-disclaimer {
  margin: 1rem 0 0 !important;
  padding: 0.95rem 1rem;
  border: 1px solid #ead7d0;
  border-radius: 14px;
  background: var(--ah-alert);
  color: #66372e;
  font-size: 0.88rem;
  line-height: 1.85;
}

.alalot-hub-updated {
  margin: 0.55rem 0 0 !important;
  color: #718793;
  font-size: 0.75rem;
}

.alalot-hub-routes {
  margin: clamp(2rem, 5vw, 3.5rem) 0 1rem;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  border: 1px solid var(--ah-line);
  border-radius: 26px;
  background: linear-gradient(145deg, #f8fbfd, #edf6f3);
  box-shadow: 0 18px 42px rgba(8, 48, 78, 0.075);
}

.alalot-hub-routes header {
  max-width: 780px;
  margin-bottom: 1.1rem;
}

.alalot-hub-routes h2 {
  margin: 0.3rem 0 0.4rem;
  color: var(--ah-ink);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.5;
}

.alalot-hub-routes header p {
  margin: 0;
  color: var(--ah-muted);
  line-height: 1.8;
}

.alalot-hub-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.alalot-hub-route-grid > a {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem;
  border: 1px solid rgba(14, 72, 108, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--ah-ink);
  text-decoration: none;
}

.alalot-hub-route-grid > a:hover,
.alalot-hub-route-grid > a:focus-visible {
  border-color: rgba(22, 118, 106, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(8, 48, 78, 0.08);
}

.alalot-hub-route-grid strong {
  line-height: 1.55;
}

.alalot-hub-route-grid span {
  color: var(--ah-muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.alalot-hub-route-grid em {
  color: var(--ah-teal);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 850;
}

@media (max-width: 900px) {
  .alalot-hub-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .alalot-hub {
    font-size: 0.96rem;
  }

  .alalot-hub-intro,
  .alalot-hub-section,
  .alalot-hub-routes {
    border-radius: 19px;
  }

  .alalot-hub-grid,
  .alalot-hub-split,
  .alalot-hub-clusters,
  .alalot-hub-article-grid,
  .alalot-hub-route-grid {
    grid-template-columns: 1fr;
  }

  .alalot-hub-actions a {
    flex: 1 1 calc(50% - 0.65rem);
  }

  .alalot-hub-actions a.primary {
    flex-basis: 100%;
  }

  .alalot-hub-review {
    align-items: flex-start;
    flex-direction: column;
  }

  .alalot-hub-review > a {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .alalot-hub-actions a,
  .alalot-hub-clusters a,
  .alalot-hub-route-grid > a {
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  }
}

@media print {
  .alalot-hub-actions,
  .alalot-hub-breadcrumb,
  .alalot-hub-routes {
    display: none !important;
  }

  .alalot-hub-section,
  .alalot-hub-intro {
    break-inside: avoid;
    box-shadow: none;
  }
}

