:root {
  --hocus-color-text: #1f1f1f;
  --hocus-color-bg: #ffffff;
  --hocus-color-muted: #5f5f5f;
  --hocus-color-border: #d9d9d9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  color: var(--hocus-color-text);
  background: var(--hocus-color-bg);
  font-family: Poppins, "Segoe UI", sans-serif;
}

.hocus-container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--hocus-color-border);
}

.site-footer {
  border-top: 1px solid var(--hocus-color-border);
  border-bottom: 0;
}

.site-header .hocus-container,
.site-footer .hocus-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.site-header__brand {
  color: inherit;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.site-header__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu a {
  color: inherit;
  text-decoration: none;
}

.site-footer__nav {
  flex: 1;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu a {
  color: inherit;
  text-decoration: none;
}

.hocus-placeholder {
  padding: 72px 0;
}

.entry-content {
  color: var(--hocus-color-muted);
}

/* Add horizontal borders between table rows */
.packages--comparison .packages__desktop > :nth-child(n + 7) {
  border-top: 1px solid var(--color-border);
}

@media (max-width: 767px) {
  .site-header .hocus-container,
  .site-footer .hocus-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__menu,
  .site-footer__menu {
    gap: 12px;
  }
}
