/*!Theme Name: itsupportguides v7
Author: OpenAI
Description: Lean, flat, accessible refresh for IT Support Guides.
Version: 7.0.1
License: GNU General Public License v2 or later
Text Domain: itsupportguides*/
/* Icon font used for the lightweight home feature and comment icons. */
@font-face {
  font-family: fontello;
  src:
    url("./font/fontello.woff2") format("woff2"),
    url("./font/fontello.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Design tokens keep colours and sizing changes in one place. */
:root {
  --bg: #f3f6fa;
  --panel: #fff;
  --panel-soft: #fffbe9;
  --soft: #f7fafc;
  --line: #d9e2ec;
  --line-strong: #b8c8da;
  --text: #0d1117;
  --muted: #516172;
  --blue: #224979;
  --blue-deep: #18345a;
  --link: #1e4f93;
  --link-hover: #143a6b;
  --visited: #5e3f8b;
  --accent: #f4df6c;
  --accent-strong: #e3c94b;
  --focus: #0b66c3;
  --success: #1f6b41;
  --error: #a93a32;
  --max: 88rem;
  --measure: 47rem;
  --tap: 3rem;
  --search-h: 3.25rem;
}
/* Keep default motion calm, then opt into smooth scrolling for keyboard focus. */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    18px/1.5 Arial,
    "Helvetica Neue",
    Helvetica,
    sans-serif;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body.mobile-menu-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
img,
svg,
video,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
pre,
table,
blockquote,
dl,
address,
fieldset {
  margin: 0 0 1rem;
}
fieldset {
  padding: 0;
  border: 0;
}
p,
ul,
ol {
  margin: 0 0 0.8rem;
}
ul,
ol {
  padding-left: 1.25rem;
}
hr {
  margin: 1.35rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}
small {
  font-size: 0.95em;
}
strong,
b {
  font-weight: 700;
}
code,
kbd,
pre,
samp,
var {
  font-family:
    ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}
pre {
  padding: 1rem 1.1rem;
  overflow: auto;
  border: 1px solid #1a2a40;
  border-radius: 14px;
  background: #0f1826;
  color: #f5f7fb;
  -webkit-overflow-scrolling: touch;
}
code {
  padding: 0.1em 0.34em;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef4fa;
  font-size: 0.94em;
  white-space: break-spaces;
}
pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  white-space: pre;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  padding: 0.72rem 0.82rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
th {
  background: #eef4fa;
}
blockquote {
  padding: 1rem 1.05rem;
  border-left: 4px solid var(--accent-strong);
  border-radius: 0 12px 12px 0;
  background: #fffbe9;
}
ins:not(.adsbygoogle) {
  background: rgba(244, 223, 108, 0.45);
  text-decoration: none;
}
::selection {
  background: rgba(244, 223, 108, 0.9);
  color: #111;
}
h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.entry-title,
.widget-title {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.12;
}
h1,
.page-title,
.entry-title {
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1,
.page-title,
.entry-title {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
}
h2,
.entry-content h2,
.hkb-entry-content h2 {
  font-size: 1.5rem;
}
h3,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.hkb-entry-content h3,
.hkb-entry-content h4,
.hkb-entry-content h5,
.hkb-entry-content h6 {
  font-size: 1.18rem;
}
.entry-meta,
.meta,
.comment-metadata,
.logged-in-as,
.comment-notes,
#commentform label,
.footer-links,
.site-info,
.widget,
.hkb-breadcrumbs,
.main-navigation a,
.itsg-tool__hint,
.itsg-tool__copy-status {
  font-size: 1rem;
  line-height: 1.35;
}
a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: none;
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
a:visited {
  color: var(--visited);
}
a:hover,
a:focus {
  color: var(--link-hover);
  text-decoration-color: var(--accent-strong);
}
a:focus {
  outline: 0;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.screen-reader-text,
.sr-only,
.hkb-screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-title a,
.main-navigation a,
.menu-toggle,
.hkb-site-search__button,
.term-list a,
.tagcloud a,
.widget_tag_cloud a,
.comment_count a,
#primary article .category a,
#primary nav a,
#primary nav span.current,
.blog-more a,
.footer-links a,
.site-info a,
.hkb-category__view-all,
#navtoc a,
.itsg-tool__button {
  text-decoration: none;
  color: #fff;
}
.entry-content a,
.hkb-entry-content a,
.page-content a,
.excerpt a,
.no-results .page-content a {
  box-shadow: inset 0 -2px 0 0 currentColor;
  text-decoration: none;
}
.entry-content a:hover,
.entry-content a:focus,
.hkb-entry-content a:hover,
.hkb-entry-content a:focus,
.page-content a:hover,
.page-content a:focus,
.excerpt a:hover,
.excerpt a:focus,
.no-results .page-content a:hover,
.no-results .page-content a:focus {
  background: rgba(244, 223, 108, 0.28);
  box-shadow: inset 0 -4px 0 0 var(--accent-strong);
}
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not(
    [type="reset"]
  ):not([type="button"]),
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-height: 2.95rem;
  padding: 0.7rem 0.88rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}
textarea {
  min-height: 8rem;
  resize: vertical;
}
label {
  display: block;
  margin: 0 0 0.35rem;
  font-weight: 700;
}
input[type="checkbox"],
input[type="radio"] {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0.5rem 0.15rem 0;
  vertical-align: top;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.menu-toggle,
.hkb-site-search__button,
.blog-more a,
.itsg-tool__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.menu-toggle:hover,
.menu-toggle:focus,
.blog-more a:hover,
.blog-more a:focus,
.itsg-tool__button:hover,
.itsg-tool__button:focus {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}
.itsg-tool__button--secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--blue);
}
.comment-form-cookies-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.comment-form-cookies-consent label {
  margin: 0;
  font-weight: 400;
}
.comment-notes,
.logged-in-as,
.itsg-tool__hint {
  color: var(--muted);
}
.gform-body > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gform-body > ul > li {
  margin: 0 0 1rem;
  list-style: none;
}
.gform-body > ul > li label {
  font-weight: 700;
}
/* Shared content wrappers. Templates opt into the sidebar or single-column layout. */
.ht-container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
#content {
  width: 100%;
}
.itsg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 1.75rem 0 3rem;
}
.itsg-layout--single {
  grid-template-columns: minmax(0, 1fr);
}
#primary,
#secondary {
  min-width: 0;
  width: 100%;
  margin: 1rem 0;
}
.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--blue-deep);
  color: #fff;
}
.site-branding {
  min-width: 0;
}
h1.site-title,
p.site-title {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1.02;
}
.site-title a,
.site-title a:visited {
  color: #fff;
}
.site-title a:hover,
.site-title a:focus {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--accent);
}
#site-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-width: 0;
}
.main-navigation {
  width: auto;
}
.menu-toggle {
  display: none;
  min-width: 5.5rem;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}
#menu,
.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.35rem;
}
#menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
#menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.7rem;
}
#menu > li > a {
  width: 100%;
}
.main-navigation li {
  position: relative;
  display: flex;
  align-items: stretch;
  float: none;
}
.main-navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.9rem;
  padding: 0.82rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none;
  white-space: nowrap;
}
.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation li:hover > a,
.main-navigation li.focus > a,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.main-navigation ul ul {
  position: absolute;
  left: -999em;
  top: calc(100% + 0.2rem);
  z-index: 1000;
  min-width: 15.5rem;
  padding: 0.55rem 0.45rem 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(24, 52, 90, 0.08);
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
  right: 0;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
  right: auto;
  top: 0;
  margin-left: 0.25rem;
}
.main-navigation ul ul a {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  min-height: 0;
  padding: 0.76rem 0.9rem;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  white-space: normal;
  line-height: 1.35;
}
.main-navigation ul ul a:hover,
.main-navigation ul ul a:focus,
.main-navigation ul ul li:hover > a,
.main-navigation ul ul li.focus > a {
  background: var(--soft);
  border-color: var(--line);
  color: var(--link-hover);
}
#page-header {
  padding: 1rem 0 1.35rem;
  background: var(--blue);
}
#page-header .ht-container {
  display: flex;
  justify-content: center;
}
#page-header .hkb-site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: stretch;
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}
body .hkb-site-search .hkb-site-search__field,
#primary .hkb-site-search .hkb-site-search__field {
  height: var(--search-h);
  min-height: 0;
  padding: 0 1rem;
  border-radius: 12px;
  line-height: 1.2;
}
#page-header .hkb-site-search .hkb-site-search__field {
  border-color: rgba(24, 52, 90, 0.12);
  background: #fff;
}
#primary .hkb-site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
  margin: 0 0 1.25rem;
  max-width: none;
}
#primary .hkb-site-search .hkb-site-search__field {
  border-radius: 12px;
  background: #fff;
}
.hkb-site-search .hkb-site-search__button,
#primary .hkb-site-search .hkb-site-search__button {
  height: var(--search-h);
  min-width: 8.5rem;
  padding: 0 1.15rem;
  border-radius: 12px;
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.hkb-site-search .hkb-site-search__button:hover,
.hkb-site-search .hkb-site-search__button:focus,
#primary .hkb-site-search .hkb-site-search__button:hover,
#primary .hkb-site-search .hkb-site-search__button:focus {
  background: #ffe980;
  border-color: #ffe980;
  color: #111;
}
.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
}
.search-form .search-submit {
  align-self: stretch;
}
#page-header-breadcrumbs {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hkb-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.45rem;
  margin: 0;
  padding: 0.75rem 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
}
.hkb-breadcrumbs li {
  display: flex;
  align-items: center;
  line-height: 1.25;
}
.hkb-breadcrumbs a,
.hkb-breadcrumbs [itemprop="name"] {
  display: flex;
  align-items: center;
  line-height: 1.25;
}
.hkb-breadcrumbs li:not(:last-child)::after {
  content: "/";
  display: inline-flex;
  align-items: center;
  margin-left: 0.3rem;
  color: #8896a7;
  font-weight: 400;
  line-height: 1;
}
.hkb-breadcrumbs a,
.hkb-breadcrumbs a:visited {
  color: var(--text);
  box-shadow: none;
}
.hkb-breadcrumbs a:hover,
.hkb-breadcrumbs a:focus {
  color: var(--link-hover);
  box-shadow: inset 0 -2px 0 var(--accent);
}
#homepage-features {
  padding: 1rem 0 0;
}
#homepage-features > .ht-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}
#homepage-features > .ht-container > a {
  color: inherit;
  text-decoration: none;
}
#homepage-features .hf-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.4rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
}
#homepage-features .hf-block i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  background: #eef4fa;
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1;
}
.fa {
  display: inline-flex;
  font: normal normal 1em/1 fontello;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-bullhorn:before {
  content: "\e801";
}
#homepage-features .hf-block h4,
#homepage-features .hf-block h5 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}
#homepage-features > .ht-container > a:hover .hf-block,
#homepage-features > .ht-container > a:focus .hf-block {
  border-color: var(--accent);
  background: #fffbe9;
}
#homepage-features > .ht-container > a:hover .hf-block i,
#homepage-features > .ht-container > a:focus .hf-block i {
  background: var(--accent);
  color: #111;
}
#homepage-widgets {
  padding: 2rem 0 0;
}
#homepage-widgets > .ht-container {
  padding-bottom: 3rem;
}
.ht-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
.ht_homepage_widgets,
#site-footer-widgets > .ht-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}
.blog-more {
  display: flex;
  justify-content: flex-start;
}
.itsg-panel,
#primary .hkb-category,
.itsg-tool__panel,
.no-results,
.not-found {
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
#secondary .widget,
#secondary section,
#primary .hkb-category,
.itsg-tool__panel,
.no-results,
.not-found,
.comments-area {
  padding: 1.05rem 1.1rem 1.15rem;
  margin: 1rem 0;
}
/*
 * Archive card pattern on larger screens.
 *
 * The first card is a full-width feature card. After that, the layout repeats a
 * 15-card cycle driven purely by card position:
 * - slots 1 and 11: full-width feature cards
 * - slots 2-5: four small vertical cards on the left
 * - slot 6: large vertical highlight card on the right
 * - slots 7-10: four small horizontal cards in two rows
 * - slots 12-15: four small vertical cards
 *
 * Only the feature and highlight positions render excerpts in HTML.
 */
/* Listing cards and mixed grid layout. */
.entry-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  align-content: start;
}
.entry-card--archive {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  height: 100%;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}
.entry-card--archive:hover,
.entry-card--archive:focus-within {
  border-color: var(--accent-strong);
  background: #fffef8;
  box-shadow: 0 0 0 3px rgba(244, 223, 108, 0.22);
}
.entry-card--archive > .entry-card__image {
  display: block;
  color: inherit;
  box-shadow: none;
  background: #eef3f8;
}
.entry-card--archive > .entry-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef3f8;
}
.entry-card--archive .entry-card__body {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: 1.05rem 1.1rem 1.15rem;
}
.entry-card--archive .entry-card__header {
  display: grid;
  gap: 0.65rem;
}
.entry-card--archive h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.entry-card--archive h2 a {
  color: var(--text);
  box-shadow: none;
  text-decoration: none;
}
.entry-card--archive h2 a:hover,
.entry-card--archive h2 a:focus {
  color: var(--link-hover);
  background: none;
  box-shadow: none;
}
.entry-card--archive .entry-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  color: var(--muted);
  min-width: 0;
}
.entry-card--archive .entry-card__meta time {
  display: inline;
}
.entry-card--archive .entry-card__terms {
  display: flex;
  min-width: 0;
}
.entry-card--archive .entry-card__terms .term-list {
  padding: 0;
  border: 0;
}
.entry-card--archive .entry-card__excerpt,
.entry-card--archive .entry-card__excerpt p,
.entry-card--archive .excerpt,
.entry-card--archive .excerpt p {
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}
.entry-card--archive .entry-card__excerpt {
  display: none;
}
.entry-card--no-image {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.entry-card--no-image > .entry-card__body {
  grid-column: 1 / -1;
  padding-top: 1.15rem;
}

/* Full-width feature cards. */
.entry-list > .entry-card--feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr);
  grid-template-rows: 1fr;
  background: var(--panel-soft);
}
.entry-list > .entry-card--feature > .entry-card__image {
  height: 100%;
}
.entry-list > .entry-card--feature > .entry-card__image img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}
.entry-list > .entry-card--feature .entry-card__body {
  align-content: center;
  padding: 1.25rem 1.35rem;
}
.entry-list > .entry-card--feature h2 {
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
  line-height: 1.1;
}

/* Nested row: four small vertical cards on the left, one large vertical card on the right. */
.entry-list__row--quad-highlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.entry-list__quad {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-content: start;
}
.entry-list__row--quad-highlight > .entry-card--highlight {
  grid-column: 3 / span 2;
  background: var(--panel-soft);
  align-self: stretch;
}
.entry-list__row--quad-highlight > .entry-card--highlight > .entry-card__image img {
  aspect-ratio: 4 / 3;
}
.entry-list__row--quad-highlight > .entry-card--highlight .entry-card__body {
  padding: 1.15rem 1.2rem 1.2rem;
}
.entry-list__row--quad-highlight > .entry-card--highlight h2 {
  font-size: 1.55rem;
}

/* Compact horizontal cards. */
.entry-list > .entry-card--horizontal {
  grid-column: span 2;
  grid-template-columns: minmax(10rem, 42%) minmax(0, 1fr);
  grid-template-rows: 1fr;
}
.entry-list > .entry-card--horizontal > .entry-card__image {
  height: 100%;
}
.entry-list > .entry-card--horizontal > .entry-card__image img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}
.entry-list > .entry-card--horizontal .entry-card__body {
  padding: 1rem 1.05rem 1.05rem;
}
.entry-list > .entry-card--horizontal h2 {
  font-size: 1.24rem;
}

/* Only larger highlight cards expose the excerpt. */
.entry-card--archive.entry-card--feature .entry-card__excerpt,
.entry-card--archive.entry-card--highlight .entry-card__excerpt {
  display: block;
}

/* Keep no-image layouts simple for shaped cards. */
.entry-card--no-image.entry-card--feature,
.entry-card--no-image.entry-card--highlight,
.entry-card--no-image.entry-card--horizontal {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.entry-stack {

  display: grid;
  gap: 1.25rem;
}
.entry-card--single > .entry-card__header,
.entry-card--single > .entry-card__content,
.entry-card--single > .entry-card__footer,
.entry-card--page > .entry-card__header,
.entry-card--page > .entry-card__content,
.entry-card--page > .entry-card__footer {
  padding: 1.3rem 1.4rem;
}
.entry-card--single > .entry-card__header,
.entry-card--page > .entry-card__header {
  padding-bottom: 0.45rem;
}
.entry-card--single > .entry-card__content,
.entry-card--page > .entry-card__content {
  padding-top: 0.35rem;
}
.entry-card--single > .entry-card__footer,
.entry-card--page > .entry-card__footer {
  padding-top: 0;
}
.entry-card--single .entry-header img,
.entry-card--page .entry-header img {
  width: 100%;
  max-height: 25rem;
  object-fit: cover;
  margin: 0 0 1.1rem;
}
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
  margin: 0;
  color: var(--muted);
}
.updated-on {
  margin: 0;
  font-style: normal;
}
.entry-content,
.hkb-entry-content,
.page-content {
  color: var(--text);
  overflow-wrap: anywhere;
}
.entry-content > :first-child,
.hkb-entry-content > :first-child,
.page-content > :first-child {
  margin-top: 0;
}
.entry-content > :last-child,
.hkb-entry-content > :last-child,
.page-content > :last-child {
  margin-bottom: 0;
}
.entry-content ul,
.entry-content ol,
.hkb-entry-content ul,
.hkb-entry-content ol {
  margin: 0 0 0.8rem;
  padding-left: 1.25rem;
}
.entry-content li,
.hkb-entry-content li {
  margin-bottom: 0.2rem;
}
.entry-content h2,
.hkb-entry-content h2 {
  margin: 1.55rem 0 0.45rem;
  scroll-margin-top: 6rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.hkb-entry-content h3,
.hkb-entry-content h4,
.hkb-entry-content h5,
.hkb-entry-content h6 {
  margin: 1.2rem 0 0.38rem;
  scroll-margin-top: 6rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.entry-content blockquote,
.hkb-entry-content blockquote,
.entry-content pre,
.hkb-entry-content pre,
.entry-content table,
.hkb-entry-content table,
.hkb-article-attachments {
  max-width: 100%;
}
.entry-content table,
.hkb-entry-content table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
.hkb-article-attachments {
  margin-top: 1.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}
.hkb-article-attachments__title {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}
.hkb-article-attachments__list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}
.term-list,
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}
.term-list {
  align-items: flex-start;
}
.term-list--footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.term-list__title {
  margin: 0;
  font-size: 1rem;
  line-height: 2.25rem;
}
.term-list__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  min-width: 0;
}
.entry-card--archive .entry-card__terms .term-list {
  padding: 0;
  border: 0;
}
.term-pill,
.term-list a,
.tagcloud a,
.widget_tag_cloud a,
.comment_count a,
#primary nav a,
#primary nav span.current,
.blog-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.24rem 0.78rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  box-shadow: none;
}
.term-pill:hover,
.term-pill:focus,
.term-list a:hover,
.term-list a:focus,
.tagcloud a:hover,
.tagcloud a:focus,
.widget_tag_cloud a:hover,
.widget_tag_cloud a:focus,
.comment_count a:hover,
.comment_count a:focus,
#primary nav a:hover,
#primary nav a:focus,
#primary nav span.current,
.blog-more a:hover,
.blog-more a:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.comment_count a::before {
  content: "\e800";
  font: normal normal 1em/1 fontello;
  margin-right: 0.35rem;
}
/* Pagination keeps page numbers left-aligned while Next stays on the right. */
.pagination-nav {
  width: 100%;
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem 1.1rem;
}
.pagination-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}
.pagination-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination-nav__item {
  margin: 0;
  list-style: none;
}
.pagination-nav__next {
  margin-left: auto;
}
.pagination-nav a,
.pagination-nav span {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  box-shadow: none;
}
.pagination-nav a:hover,
.pagination-nav a:focus,
.pagination-nav .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.pagination-nav__item--dots .page-numbers,
.pagination-nav .dots {
  min-width: 0;
  padding: 0 0.15rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  pointer-events: none;
}
#secondary {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}
#secondary .widget-title,
.widget-title {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  line-height: 1.25;
}
#secondary .widget ul,
#secondary .widget ol,
#site-footer-widgets ul,
#site-footer-widgets ol {
  margin: 0;
}
#secondary .widget li,
#site-footer-widgets li {
  margin: 0 0 0.7rem;
}
#secondary .widget_search form {
  grid-template-columns: 1fr;
}
#secondary .hkb_widget_toc {
  position: sticky;
  top: 1rem;
  border-color: #cad8e7;
}
#secondary .hkb_widget_toc .widget-title {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
#navtoc ol,
#navtoc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#navtoc li {
  margin: 0;
}
#navtoc li + li {
  margin-top: 0.2rem;
}
#navtoc a {
  display: block;
  padding: 0.55rem 0.7rem;
  border: 1px solid transparent;
  border-left: 4px solid #d0dce8;
  border-radius: 12px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: none;
}
#navtoc a:hover,
#navtoc a:focus {
  background: #fffbe9;
  border-color: var(--accent-strong);
  color: var(--link-hover);
}
#primary .hkb-category__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0 0 0.85rem;
}
#primary .hkb-category__title,
#primary .hkb-article__title,
#primary .hkb-article-related__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}
#primary .hkb-category__count,
#primary .hkb-article-author,
#primary .hkb-article-author__name {
  color: var(--muted);
  font-weight: 700;
}
#primary .hkb-category__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--blue);
  box-shadow: none;
}
#primary .hkb-article-list,
#primary .hkb-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
#primary .hkb-article-list > li,
#primary .hkb-article-related,
#primary .hkb-template-category .hkb-article,
#primary .hkb-template-search .hkb-article {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}
#primary .hkb-article-list > li:first-child,
#primary .hkb-article-related:first-child,
#primary .hkb-template-category .hkb-article:first-child,
#primary .hkb-template-search .hkb-article:first-child {
  padding-top: 0;
  border-top: 0;
}
#primary .hkb-article-list a,
#primary .hkb-category__title a,
#primary .hkb-article__title a,
#primary .hkb-article-author__name a,
#primary .hkb-article__links a {
  color: var(--text);
  font-weight: 700;
  box-shadow: none;
}
#primary .hkb-article-list a:hover,
#primary .hkb-article-list a:focus,
#primary .hkb-category__title a:hover,
#primary .hkb-category__title a:focus,
#primary .hkb-article__title a:hover,
#primary .hkb-article__title a:focus,
#primary .hkb-article-author__name a:hover,
#primary .hkb-article-author__name a:focus,
#primary .hkb-article__links a:hover,
#primary .hkb-article__links a:focus {
  color: var(--link-hover);
  box-shadow: inset 0 -2px 0 var(--accent);
}
#primary .hkb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
#primary .hkb-meta li {
  padding: 0.22rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.88rem;
}
.comments-area {
  display: grid;
  gap: 1rem;
}
.comments-title {
  margin: 0;
  font-size: 1.2rem;
}
.comment-list,
.comment-list ol,
.comment-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comment-list > li {
  margin: 0 0 0.9rem;
}
.comment-body {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}
.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  margin: 0 0 0.65rem;
}
.comment-author {
  font-weight: 700;
}
.comment-metadata {
  color: var(--muted);
}
.comment-content > :last-child {
  margin-bottom: 0;
}
.children {
  margin: 0.85rem 0 0 0.8rem;
  padding-left: 0.8rem;
  border-left: 2px solid var(--line);
}
.site-main .comment-navigation,
.site-main .post-navigation,
.site-main .posts-navigation {
  margin: 1rem 0 0;
}
.comment-navigation .nav-next,
.post-navigation .nav-next,
.posts-navigation .nav-next {
  float: right;
  width: 50%;
  text-align: right;
}
.itsg-tool {
  display: grid;
  gap: 1rem;
}
.itsg-tool__intro {
  max-width: var(--measure);
  margin: 0;
}
.itsg-tool__form {
  display: grid;
  gap: 1rem;
}
.itsg-tool__row--lookup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}
.itsg-tool__field {
  display: grid;
  gap: 0.35rem;
}
.itsg-tool__field--sm {
  max-width: 9rem;
}
.itsg-tool__fieldset {
  display: grid;
  gap: 0.75rem;
}
.itsg-tool__fieldset legend {
  margin: 0 0 0.2rem;
  padding: 0;
  font-weight: 700;
}
.itsg-tool__checklist {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.itsg-tool__checklist li {
  margin: 0;
  list-style: none;
}
.itsg-tool__check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0;
  font-weight: 400;
}
.itsg-tool__check span {
  display: block;
  line-height: 1.4;
}
.itsg-tool__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.itsg-tool__output-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}
.itsg-tool__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
}
.itsg-tool__copy-status {
  font-weight: 700;
  color: var(--muted);
}
.itsg-tool__feedback {
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  font-weight: 700;
}
.itsg-tool__feedback.is-success {
  border-color: rgba(31, 107, 65, 0.2);
  background: #eef9f1;
  color: var(--success);
}
.itsg-tool__feedback.is-error {
  border-color: rgba(169, 58, 50, 0.2);
  background: #fff3f1;
  color: var(--error);
}
.itsg-tool__results {
  display: grid;
  gap: 1rem;
  clear: both;
  min-width: 0;
}
.itsg-tool__result-card {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  min-width: 0;
}
.itsg-tool__result-title {
  margin: 0;
  font-size: 1.2rem;
}
.itsg-tool__result-title span {
  display: inline-block;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.itsg-tool__table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.itsg-tool__table {
  min-width: 40rem;
  border-collapse: collapse;
}
.itsg-tool__table--nested {
  min-width: 28rem;
}
.itsg-tool__table th {
  width: 15rem;
}
.itsg-tool__table td,
.itsg-tool__table th {
  white-space: normal;
}
.itsg-tool__table td table {
  margin: 0.5rem 0 0;
}
.itsg-tool__muted {
  color: var(--muted);
}
.itsg-tool__notice {
  margin: 0;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  font-weight: 700;
}
.itsg-tool__notice--success {
  border-color: rgba(31, 107, 65, 0.2);
  background: #eef9f1;
  color: var(--success);
}
.itsg-tool__notice--error {
  border-color: rgba(169, 58, 50, 0.2);
  background: #fff3f1;
  color: var(--error);
}
.itsg-tool__notice--info {
  background: #eef4fa;
  color: var(--blue-deep);
}
.itsg-def-list {
  display: grid;
  gap: 0.7rem 1rem;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
}
.itsg-def-list__row {
  display: contents;
}
.itsg-def-list dt {
  font-weight: 700;
  color: var(--muted);
}
.itsg-def-list dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.itsg-def-list--compact {
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 1fr);
}
.itsg-tool__notes {
  display: grid;
  gap: 0.6rem;
}
.itsg-tool__notes p {
  margin: 0;
}
.itsg-tool .sk-circle {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0.2rem auto 0;
}
.itsg-tool.is-loading {
  cursor: progress;
}
.itsg-tool input[readonly] {
  background: #fffdf4;
}
.no-results,
.not-found {
  padding: 1.2rem 1.25rem;
}
body.error404 #primary {
  max-width: 60rem;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}
body.error404 .search-form {
  max-width: 32rem;
}
p.success,
p.error {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}
p.success {
  border: 1px solid rgba(31, 107, 65, 0.2);
  background: #eef9f1;
  color: #1f6b41;
}
p.error {
  border: 1px solid rgba(169, 58, 50, 0.2);
  background: #fff3f1;
  color: #a93a32;
}
.sk-circle {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 20px auto;
}
.sk-circle .sk-child {
  position: absolute;
  inset: 0;
}
.sk-circle .sk-child:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--blue);
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  transform: rotate(30deg);
}
.sk-circle .sk-circle3 {
  transform: rotate(60deg);
}
.sk-circle .sk-circle4 {
  transform: rotate(90deg);
}
.sk-circle .sk-circle5 {
  transform: rotate(120deg);
}
.sk-circle .sk-circle6 {
  transform: rotate(150deg);
}
.sk-circle .sk-circle7 {
  transform: rotate(180deg);
}
.sk-circle .sk-circle8 {
  transform: rotate(210deg);
}
.sk-circle .sk-circle9 {
  transform: rotate(240deg);
}
.sk-circle .sk-circle10 {
  transform: rotate(270deg);
}
.sk-circle .sk-circle11 {
  transform: rotate(300deg);
}
.sk-circle .sk-circle12 {
  transform: rotate(330deg);
}
.sk-circle .sk-circle2:before {
  animation-delay: -1.1s;
}
.sk-circle .sk-circle3:before {
  animation-delay: -1s;
}
.sk-circle .sk-circle4:before {
  animation-delay: -0.9s;
}
.sk-circle .sk-circle5:before {
  animation-delay: -0.8s;
}
.sk-circle .sk-circle6:before {
  animation-delay: -0.7s;
}
.sk-circle .sk-circle7:before {
  animation-delay: -0.6s;
}
.sk-circle .sk-circle8:before {
  animation-delay: -0.5s;
}
.sk-circle .sk-circle9:before {
  animation-delay: -0.4s;
}
.sk-circle .sk-circle10:before {
  animation-delay: -0.3s;
}
.sk-circle .sk-circle11:before {
  animation-delay: -0.2s;
}
.sk-circle .sk-circle12:before {
  animation-delay: -0.1s;
}
@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.above-related,
.below-related {
  padding: 1.05rem 1.1rem 1.15rem;
}
.above-related .widget-section,
.below-related .widget-section {
  min-width: 0;
}
.itsg-ad-widget,
#secondary .widget:has(.adsbygoogle),
.above-related:has(.adsbygoogle),
.below-related:has(.adsbygoogle),
.comments-area:has(.adsbygoogle) {
  padding: 0 !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.itsg-ad-widget .widget-title,
#secondary .widget:has(.adsbygoogle) .widget-title,
.above-related:has(.adsbygoogle) .widget-title,
.below-related:has(.adsbygoogle) .widget-title {
  display: none;
}

/* Reserve common ad slot space so ads cause less layout shift when they render. */
.itsg-ad-widget .adsbygoogle,
#secondary .widget:has(.adsbygoogle) .adsbygoogle,
.above-related:has(.adsbygoogle) .adsbygoogle,
.below-related:has(.adsbygoogle) .adsbygoogle,
.comments-area:has(.adsbygoogle) .adsbygoogle {
  display: block;
  min-height: 17.5rem;
}
body.itsg-tool-page #primary {
  max-width: none;
}
body.itsg-tool-page .entry-card--tool > .entry-card__content {
  padding-top: 0.6rem;
}
body.itsg-tool-page .entry-card--tool .itsg-tool,
body.itsg-tool-page .entry-card--tool .itsg-tool__results {
  max-width: none;
}
#site-footer-widgets {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
#site-footer-widgets .widget {
  padding: 0;
  background: transparent;
  border: 0;
}
.footer-links {
  padding: 0.8rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--blue);
  color: #fff;
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin: 0;
}
.footer-links a:hover,
.footer-links a:focus,
.site-info a:hover,
.site-info a:focus {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--accent);
}
.site-info {
  padding: 0.8rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--blue-deep);
  color: #fff;
  text-align: center;
}
@media (max-width: 1199px) {
  .entry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .entry-list__row--quad-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .entry-list__quad,
  .entry-list__row--quad-highlight > .entry-card--highlight,
  .entry-list > .entry-card--feature,
  .entry-list > .entry-card--horizontal {
    grid-column: 1 / -1;
  }
  .entry-list > .entry-card--feature,
  .entry-list__row--quad-highlight > .entry-card--highlight,
  .entry-list > .entry-card--horizontal {
    grid-template-columns: minmax(12rem, 42%) minmax(0, 1fr);
    grid-template-rows: 1fr;
  }
  .entry-list > .entry-card--feature > .entry-card__image,
  .entry-list__row--quad-highlight > .entry-card--highlight > .entry-card__image,
  .entry-list > .entry-card--horizontal > .entry-card__image {
    height: 100%;
  }
  .entry-list > .entry-card--feature > .entry-card__image img,
  .entry-list__row--quad-highlight > .entry-card--highlight > .entry-card__image img,
  .entry-list > .entry-card--horizontal > .entry-card__image img {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }
  .entry-list > .entry-card--feature h2,
  .entry-list__row--quad-highlight > .entry-card--highlight h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 1100px) {
  .itsg-layout:not(.itsg-layout--single) {
    grid-template-columns: minmax(0, 1fr);
  }
  #secondary .hkb_widget_toc {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 1rem;
  }
  .menu-toggle {
    display: inline-flex;
  }
  #site-navigation,
  #site-navigation .main-navigation {
    position: static;
    width: auto;
  }
  #menu {
    display: none;
    position: fixed;
    inset: 4.25rem 0 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 1rem;
    overflow: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    z-index: 1000;
  }
  #site-navigation.toggled #menu {
    display: flex;
  }
  #menu > li,
  #menu > li > a,
  .main-navigation ul ul,
  .main-navigation ul ul a {
    width: 100%;
  }
  #menu > li::after {
    display: none;
  }
  .main-navigation a {
    justify-content: flex-start;
    min-height: var(--tap);
    padding: 0.85rem 1rem;
    border-color: var(--line);
    background: var(--soft);
    color: var(--text);
  }
  .main-navigation a:hover,
  .main-navigation a:focus,
  .main-navigation li:hover > a,
  .main-navigation li.focus > a,
  .main-navigation .current-menu-item > a,
  .main-navigation .current-menu-ancestor > a,
  .main-navigation .current_page_item > a,
  .main-navigation .current_page_ancestor > a {
    background: var(--accent);
    border-color: var(--accent);
    color: #111;
  }
  .main-navigation ul ul,
  .main-navigation ul ul ul {
    position: static !important;
    left: auto;
    right: auto;
    top: auto;
    min-width: 0;
    margin: 0;
    padding: 0.35rem 0 0 0.75rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .main-navigation ul ul a {
    min-height: 0;
    padding: 0.72rem 0.85rem;
  }
  .main-navigation ul ul li:hover > ul,
  .main-navigation ul ul li.focus > ul {
    margin-left: 0;
  }
  .main-navigation .menu-item-has-children > a:after,
  .main-navigation .page_item_has_children > a:after {
    content: "▾";
    margin-left: auto;
    color: var(--muted);
    font-size: 0.85em;
  }
  .main-navigation ul ul .menu-item-has-children > a:after,
  .main-navigation ul ul .page_item_has_children > a:after {
    content: "▸";
  }
}
@media (max-width: 780px) {
  .ht-container {
    width: min(var(--max), calc(100% - 1.25rem));
  }
  #page-header .hkb-site-search,
  #primary .hkb-site-search,
  .search-form,
  .itsg-tool__row--lookup,
  .itsg-tool__output-row,
  .itsg-def-list,
  .itsg-def-list--compact {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  #page-header .hkb-site-search {
    padding: 0.55rem;
    border-radius: 18px;
  }
  #page-header .hkb-site-search .hkb-site-search__field,
  #page-header .hkb-site-search .hkb-site-search__button {
    border-radius: 999px;
  }
  body .hkb-site-search .hkb-site-search__field,
  #primary .hkb-site-search .hkb-site-search__field,
  .hkb-site-search .hkb-site-search__button,
  #primary .hkb-site-search .hkb-site-search__button {
    width: 100%;
    height: 3rem;
  }
  .entry-list,
  .entry-list__row--quad-highlight,
  .entry-list__quad {
    grid-template-columns: 1fr;
  }
  .entry-list > .entry-card--archive,
  .entry-list__row--quad-highlight > .entry-card--highlight {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .entry-list > .entry-card--feature,
  .entry-list__row--quad-highlight > .entry-card--highlight,
  .entry-list > .entry-card--horizontal {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .entry-list > .entry-card--feature > .entry-card__image,
  .entry-list__row--quad-highlight > .entry-card--highlight > .entry-card__image,
  .entry-list > .entry-card--horizontal > .entry-card__image {
    height: auto;
  }
  .entry-list > .entry-card--feature > .entry-card__image img,
  .entry-list__row--quad-highlight > .entry-card--highlight > .entry-card__image img,
  .entry-list > .entry-card--horizontal > .entry-card__image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .entry-list > .entry-card--feature h2,
  .entry-list__row--quad-highlight > .entry-card--highlight h2,
  .entry-list > .entry-card--horizontal h2 {
    font-size: 1.32rem;
  }
  .itsg-tool__field--sm {
    max-width: none;
  }
  .itsg-tool__table {
    min-width: 34rem;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  h1,
  .page-title,
  .entry-title {
    font-size: 1.95rem;
  }
  h2,
  .entry-content h2,
  .hkb-entry-content h2 {
    font-size: 1.35rem;
  }
  .article-grid,
  #homepage-features > .ht-container,
  .ht_homepage_widgets,
  #site-footer-widgets > .ht-container {
    grid-template-columns: 1fr;
  }
  .entry-card--single > .entry-card__header,
  .entry-card--single > .entry-card__content,
  .entry-card--single > .entry-card__footer,
  .entry-card--page > .entry-card__header,
  .entry-card--page > .entry-card__content,
  .entry-card--page > .entry-card__footer,
  .comments-area,
  #secondary .widget,
  #secondary section,
  .above-related,
  .below-related,
  .no-results,
  .not-found {
    padding: 1.05rem;
  }
  .hkb-breadcrumbs {
    font-size: 0.92rem;
  }
  .children {
    margin-left: 0.5rem;
    padding-left: 0.55rem;
  }
  .itsg-tool__table {
    min-width: 28rem;
  }
  .itsg-ad-widget .adsbygoogle,
  #secondary .widget:has(.adsbygoogle) .adsbygoogle,
  .above-related:has(.adsbygoogle) .adsbygoogle,
  .below-related:has(.adsbygoogle) .adsbygoogle,
  .comments-area:has(.adsbygoogle) .adsbygoogle {
    min-height: 8rem;
  }
  .pagination-nav__next {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
/* Collapsible in-article table of contents. */
.entry-content .entry-toc {
  margin: 1rem 0 1.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.entry-content .entry-toc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

.entry-content .entry-toc__summary::-webkit-details-marker {
  display: none;
}

.entry-content .entry-toc__summary::after {
  content: "▾";
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 0.16s ease;
}

.entry-content .entry-toc:not([open]) .entry-toc__summary::after {
  transform: rotate(-90deg);
}

.entry-content .entry-toc__summary:hover,
.entry-content .entry-toc__summary:focus-visible {
  color: var(--link-hover);
}

.entry-content .entry-toc__nav {
  margin-top: 0.85rem;
}

.entry-content .entry-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-content .entry-toc__item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-content .entry-toc__item--level-3 {
  padding-left: 0.6rem;
}

.entry-content .entry-toc__list a {
  display: block;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-left: 4px solid #d0dce8;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: none;
  overflow-wrap: anywhere;
}

.entry-content .entry-toc__list a:hover,
.entry-content .entry-toc__list a:focus-visible {
  background: #fffbe9;
  border-color: var(--accent-strong);
  color: var(--link-hover);
}

.entry-content .entry-toc__list a:visited {
  color: var(--text);
}

@media (max-width: 860px) {
  .entry-content .entry-toc__list {
    grid-template-columns: 1fr;
  }

  .entry-content .entry-toc__item--level-3 {
    padding-left: 0.35rem;
  }
}
