@import "https://www.helpscout.com/css/evolution.css";

body {
  background:
    right top / min(64vw,
      400px) auto no-repeat url("https://hs-marketing-contentful.imgix.net/https%3A%2F%2Fimages.ctfassets.net%2Fp15sglj92v6o%2Fq6FWq7dci4tKmaUllY64U%2Fde219f83a5b4123db2f428fcd101d430%2FArticle_Background_Right.png?ixlib=gatsbySourceUrl-2.1.3&auto=format%2C%20compress&q=75&w=800&h=1090&s=1e3bcac3b05d13444b66a916e5bcc6a3"),
    left bottom / min(64vw,
      400px) auto no-repeat url("https://hs-marketing-contentful.imgix.net/https%3A%2F%2Fimages.ctfassets.net%2Fp15sglj92v6o%2F7qERKNkxBgQJjTUsxbXWHr%2Ffed38cf03e3605d8281626fcdb69e72f%2FArticle_Background_Left.png?ixlib=gatsbySourceUrl-2.1.3&auto=format%2C%20compress&q=75&w=800&h=1090&s=101857313b821d110cb531983b73fe13"),
    var(--color--clay-100);
  padding: 0;
  min-height: 100%;
}

.container-fluid {
  width: var(--container-width);
  max-width: none;
  padding: 0;
}

.container-fluid:after,
.container-fluid:before {
  content: none;
}


/*
  BEGIN NAV
*/
:root {
  --hs-logo-width: 168px;
  --hs-logo-height: 33px;

  --main-nav-height: calc(var(--spacing--base-2) + var(--hs-logo-height) + var(--spacing--base-3));

  --main-nav-close-button-dimension: 24px;
}

.navbar .brand {
  text-indent: -9999px;
  width: var(--hs-logo-width);
  height: var(--hs-logo-height);
  //background: center center / var(--hs-logo-width) var(--hs-logo-height) url("https://www.helpscout.com/images/nav/logo-color.svg") no-repeat;
  padding: 0;
}

.navbar .brand span {
  font-size: 12px;
}

.navbar .navbar-inner {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  box-shadow: none;
}

.navbar .navbar-inner::before,
.navbar .navbar-inner::after {
  content: none;
}

.navbar .nav li a {
  font-size: var(--font-size--S);
  line-height: var(--line-height--relaxed);
  color: var(--color--text-light);
  margin: 0;
}

/* begin mobile */
@media (max-width: 768px) {
  :root {
    --hs-logo-width: 126px;
    --hs-logo-height: 24px;
  }

  .navbar {
    margin: 0;
  }
}

@media (max-width: 1139px) {
  .navbar .navbar-inner {
    padding: var(--spacing--base-2) 0 var(--spacing--base-3);
  }

  .navbar .brand {
    position: relative;
    z-index: 1;
  }

  .navbar .btn-navbar {
    top: calc((var(--hs-logo-height) - var(--main-nav-close-button-dimension)) / 2);
    right: 0;
    z-index: 1;
    width: var(--main-nav-close-button-dimension);
    height: var(--main-nav-close-button-dimension);
    margin: 0;
    background: var(--color--text-default);
    mask-image: url("https://www.helpscout.com/icons/menu.svg");
    mask-size: 100% 100%;
    padding: 0;
    transition: background 0.2s;
    color: transparent;
    display: block;
    box-sizing: content-box;
  }

  .navbar .btn-navbar:hover,
  .navbar .btn-navbar:focus {
    background: var(--color--charcoal-600);
  }

  .navbar .btn-navbar .icon-bar {
    display: none;
  }

  .nav-collapse {
    background: rgba(var(--color--basics-white-rgb),
        0);
    margin: 0 calc((100vw - var(--container-width)) / -2);
    top: calc(-33px - var(--spacing--base-2));
    z-index: 0;
    transition: all 0.35s ease;
  }

  .nav-collapse.collapse {
    height: 0 !important;
    overflow: hidden !important;
  }

  .nav-collapse.collapse.in {
    height: auto !important;
    margin-bottom: calc(-33px - var(--spacing--base-2));
  }

  .nav-collapse.in {
    background: rgba(var(--color--basics-white-rgb),
        1);
    border-radius: 0 0 var(--border-radius--2XL) var(--border-radius--2XL);
    box-shadow: var(--elevation--S);
  }

  .nav-collapse nav {
    position: relative;
    padding: calc(33px + var(--spacing--base-2) + var(--spacing--M)) 0 var(--spacing--M);
  }

  .nav-collapse nav .nav {
    position: relative;
    margin: 0;
    width: 100%;
  }

  .navbar .nav li {
    display: block;
    opacity: 0;
    margin: 0;
    transition: opacity 0.35s ease;
  }

  .navbar .in .nav li {
    opacity: 1;
  }

  .navbar .nav li a {
    padding: var(--spacing--base-1-5) 0;
    margin: 0 auto;
    max-width: var(--container-width);
    width: 100%;
  }

  .navbar .nav li a:hover,
  .navbar .nav li a:focus,
  .navbar .nav li.active a,
  .navbar .nav li.active a:hover,
  .navbar .nav li.active a:focus {
    color: var(--color--text-dark);
    font-weight: var(--font-weight--normal);
    background: var(--color--charcoal-100);
    border-radius: var(--border-radius--S);
  }

  #contactMobile {
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1139px) {
  #mainNav .container-fluid {
    position: relative;
    z-index: 1;
  }

  .navbar .btn-navbar {
    position: absolute;
  }

  .nav-collapse.collapse {
    position: absolute;
    top: calc(var(--border-radius--S) * -1);
    right: calc(var(--border-radius--S) * -1);
    margin: 0;
    border-radius: 4px;
    padding: var(--border-radius--S) var(--border-radius--S) var(--spacing--base-1-5);
    min-width: 175px;
  }

  .nav-collapse nav {
    padding-top: calc(var(--hs-logo-height) + var(--border-radius--S));
  }

  .navbar .nav li a {
    padding: 9px 15px;
  }

  #contactMobile {
    display: none;
  }
}

/* end mobile */

/* begin desktop */
@media (min-width: 1140px) {
  #mainNav .container-fluid {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing--base-2) 0 var(--spacing--base-3);
  }

  .brand {
    float: none;
  }

  .navbar .nav {
    float: none;
    position: relative;
    display: flex;
    gap: var(--spacing--base-0-5);
  }

  .navbar .nav li {
    margin: 0;
  }

  .navbar .nav li a {
    line-height: var(--hs-logo-height);
    padding: 0 var(--spacing--base-0-75);
  }

  .navbar .nav li a:hover,
  .navbar .nav li a:focus,
  .navbar .nav li.active a,
  .navbar .nav li.active a:hover,
  .navbar .nav li.active a:focus {
    color: var(--color--text-dark);
  }

  .navbar .nav li.active a {
    font-weight: var(--font-weight--medium);
  }

  .navbar .nav .active .caret {
    display: none;
  }
}

@media (min-width: 1320px) {
  .navbar .nav {
    gap: var(--spacing--base-1-5);
  }
}

/* end desktop */

/*
  END NAV
*/

/* BEGIN footer */
footer {
  margin: 0 auto var(--spacing--L);
  max-width: var(--container-width);
  display: none;
}

footer p {
  margin: 0;
  text-align: center;
  color: var(--color--text-light);
  font-size: var(--font-size--S);
}

footer p a {
  color: var(--color--text-default);
}

/* END footer */

/* BEGIN DOCS Search Hero */
#docsSearch {
  margin: calc(var(--main-nav-height) * -1) 0 0;
  padding: calc(var(--main-nav-height) + var(--spacing--L)) calc((100vw - var(--container-width)) / 2) var(--spacing--XL);
  background-color: var(--color--clay-100);
  background:
    -37px top / 270px auto no-repeat url("https://hs-marketing-contentful.imgix.net/https%3A%2F%2Fimages.ctfassets.net%2Fp15sglj92v6o%2F5qaFRTY3SOqqGH5dbuc7OT%2F3cd5d4ab5d7365e561f4af781abbc144%2FDocs_Background_Left.png?ixlib=gatsbySourceUrl-2.1.3&auto=format%2C%20compress&q=75&w=800&h=960&s=ba6914ae8bae1b563daf8a26710bb7d1"),
    calc(100vw - 180px) top / 270px auto no-repeat url("https://hs-marketing-contentful.imgix.net/https%3A%2F%2Fimages.ctfassets.net%2Fp15sglj92v6o%2FvyBYuDfDVUW6BUcgXhofz%2F9d9365a09af567146a1dd2d1035ecef1%2FDocs_Background_Right.png?ixlib=gatsbySourceUrl-2.1.3&auto=format%2C%20compress&q=75&w=800&h=960&s=d71e2b065e2cecbe2a66283c190309eb"),
    var(--color--clay-100);
  border: none;
  width: 100%;
}

#docsSearch h1 {
  font-weight: var(--font-weight--bold);
  font-size: var(--font-size--5XL);
  margin: 0 0 var(--spacing--S);

}

#searchBar {
  display: flex;
  width: 100%;
  max-width: 616px;
  padding: 0;
}

#searchBar .search-query {
  background: var(--color--basics-white);
  border-radius: var(--border-radius--M);
  border: 1px solid var(--color--charcoal-500);
  color: var(--color--text-default);
  font-size: var(--font-size--M);
  height: var(--input--height-L);
  line-height: var(--input--height-L);
  padding: 0 var(--input--padding-x-L);
  transition: border-color 0.3s,
    box-shadow 0.3s;
  width: 100%;
}

#searchBar .search-query:hover,
#searchBar .search-query:active,
#searchBar .search-query:focus {
  border-color: var(--color--cobalt-500);
}

#searchBar .search-query:focus {
  box-shadow: var(--focus-input--default);
}

#searchBar .search-query[disabled] {
  cursor: not-allowed;
  color: var(--color--action-disabled);
  border-color: var(--color--action-disabled);
  cursor: not-allowed;
}

#searchBar button {
  top: 0;
  height: var(--input--height-L);
  background: var(--color--action-default);
  border-radius: 0 var(--border-radius--M) var(--border-radius--M) 0;
  font-family: var(--font-family--sans-brand);
  font-feature-settings: var(--font-family--sans-brand--font-feature-settings);
  font-size: var(--font-size--L);
  font-weight: var(--font-weight--semibold);
  line-height: var(--input--height-L);
  transition: background 0.3s;
}

#searchBar button:hover {
  background: var(--color--action-hovered);
}

#searchBar.sm {
  margin-bottom: 40px;
}

#searchBar.sm button,
#searchBar.sm button:hover {
  background: none;
}

#serp-dd {
  top: var(--input--height-L) !important;
  border-radius: var(--border-radius--S);
  background: var(--color--basics-white);
  box-shadow: var(--elevation--S);
  border: none;
}

#serp-dd .result>li,
#serp-dd .result>li:first-child,
#serp-dd .result>li:last-child {
  margin: 0;
}

#serp-dd .result>li a {
  padding: 10px;
  font-size: var(--font-size--M);
  line-height: var(--line-height--relaxed);
}

#serp-dd .result>li a:hover {
  color: var(--color--action-hovered);
  background: transparent;
}

#serp-dd .result>li.active,
#serp-dd .result>li:hover {
  background: var(--color--slate-100);
  color: inherit;
}

@media (min-width: 480px) {
  #docsSearch {
    background-position:
      -37px top,
      calc(100vw - 200px) top;
  }
}

@media (min-width: 768px) {
  #docsSearch {
    background-position:
      left top,
      right top;
    background-size: 400px auto, 400px auto;
  }
}

/* END DOCS Search Hero */

/* BEGIN Collection Category */
.collection-category h2 {
  font-size: var(--font-size--2XL);
  font-weight: var(--font-weight--semibold);
  margin-bottom: var(--spacing--S);
  padding: 0;
}

.collection-category h2 a {
  color: var(--color--text-headline);
}

.collection-category h2 a:hover {
  border-bottom: none;
  color: var(--color--text-headline);
}

.collection-category .category-list {
  display: flex;
  margin: 0 0 var(--spacing--L);
  gap: var(--spacing--base-1-5);
  flex-wrap: wrap;
}

.category-list .category {
  --category--icon-circle-size: var(--spacing--base-2-5);
  --category--icon-size: calc(var(--spacing--base-2-5) * 0.65);
  position: relative;
  flex: 0 0 100%;
  width: auto;
  margin: 0;
  border: none;
  background: var(--color--basics-white);
  box-shadow: var(--elevation--S);
  border-radius: var(--border-radius--XS);
  padding: calc(32px + var(--category--icon-circle-size) + var(--spacing--base-1-5)) var(--spacing--base-1-5) var(--spacing--base-2-5);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  transition: box-shadow 0.3s;
  justify-content: space-between;
}

.category-list .category::before {
  content: "";
  display: block;
  width: var(--category--icon-circle-size);
  height: var(--category--icon-circle-size);
  position: absolute;
  top: 32px;
  left: calc(50% - var(--spacing--base-2-5) / 2);
  border-radius: 100%;
  background: center center / 100% 100% url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABUJSURBVHgB7VzLkiO7bkxUzP//qsMRXgseFZEPUHNX3rpPnGmpxCLxSCRAsNTA///8n3/q+8///Pd/9d8fVBXu339fzKgzvPvz9/rz93X72udzXj3Pnn3u7U+/n71zvnfO3DPx9zrH1zOL9fn4fHTe1Pd35T2VooVIKTdfl9apqhQSXD6nse4FC3S9nDmfdXMqcy6AOvAjiZ3XvsabCd853g+aU4UgIWVbojQEb23YSF+nvY59nXg+P45EGBV29l9HW+5eSxcHS1dffw1XEIjOxzO2LXeY8/15QOONMEfYWbLGqddNTePGe4QgAR4LTZH6Njqw4QQsjNWs90aA4UZUH0dHVCDcEqAWGo+SS24armbwuxblaKSVNW2HxI/WCqHsCVuwJFDfc9pQr8U/K1xS6Nc0Ccq4/v2gxml2ZCsqa2C6QxExb8l8CsUOhGGMU+e35B5a6XCGUB7zM0waWLQEGjF/0sK0XmmhMdD8f0JrjPeUY2rxqGetgfUdYqMhIuCGXqxow1MTOZy5AtVSkjIyHF+knfWfoIJj0L+jhj95/3x82bIi7Ouv8fibKhaFc3grZEYQCpGc8vrv+1lwX5ft4gTi8TvEcaH/IIXjbJTFCsdoFagLp8iAtjgySXzE9U5wFc4rrH+8KA1ZicNAYuSCed/BN8El8jDnfNY9HSTM5FTLWM8V4pCSOwwrBLZDSopADiUaJS/liOtpSFKRuHvGv6ikjlqUQPG4j6Imwpnea1l/snOsJBLvlmGOjT7mxrLiMn7Ik8aiH5sclTZ9yo6ceX+MIUkDxe+4J7EQBooElNlyAME1BJ7FTLX4/1lRwxKHWUdrPBHKksbClQVQiEfm5BxnqD2bCyt8RsjuTSPWtUUf4qtA8btOL7MJFFmyfP9/Ri/JmWjFVS8OoFwRDF/S6DDNPJrs9rLCbv5JUsUgaIpsxEJAb0HRCzn6iZBL5fmKd7jUKRtW4YRA4OXyv7KRWpx49nrUNwv3pA8EKpms6vv+8zGAUJGdh7+2ISMDB0EzkbxhJ7Qcg72F8XkpfvvNprDiZQe9KPwcesiEtjgz0VHBeQhETYjz/aeDnqhsGp7G5duhs+TuWuMU5+/vxyNKHiSyqJCtAvxiqhboqHQmIjtiy3xeN0gV2nJ+eq3TswPp4DcMBSylhKhFxCFtB9JMEdySArndvQwXatd1YcI5xj1OCpq8DW8llLAIvWxzWGgtFQROw0ipJm/ZKOQcJgt+XoFqJG2EcRJBSASODn0jU1z9EdoX7+JfVjSoVrE9ETkJxh7fZGYlHeIIg1XM5qzZNDEd8SaeEhqIGrFdGisENN+21w40a3UiiLINj/S2gdbQvxkxo6v+zyGR0BzOo5xCUdM6U9KrnYq3lfG+ubWaOkIItCkR7bIj96xKoJ8PEMlJ9NEREeYclyuwvCbi3lGUa+v1ua6tHVGaiQqOku+FKLYptYtembF35ABXCEcNJhTBP0lZKmXaa5bm3De+NdhLKTER9sQ1AEiq2aTS1i+hOsY1rTwO5d7LICuASu4+bUFxojf9vDALXWg+Rn42R9ZdYpAfscqRijIpg6/jPkYpKePTu+lQYcDXeZ+QFTZOjlb/Mj+jYWj69HJUDmkXlUJE9XNCOvbOdSrxUGZ1cprjoNBqrv+GXHLGFb7v+16edbKYXiFRUVdjI4y2XnONbAQT8rOuw88FfBp70VLM/1YDnVvHcMn3ejhDiYXh++l7C1XmosxwWu1MrW70XKuErvwwbCTO+UjgsIJDRcbORSM0OX1zp0GO9Vzi36qVcFYyiQzdvmgArAwBO0qrXNlZ3qOgHQyeg6oW/ygcZmzyKyyH536neYRI8nAFgtIR2U13UiohLltsElU00kt5A2OMpl2Xp/aYiyMDkexeCYmaUOtVAKnS8IZ6yqoM1ttgtTvJQkCUB0JiMwsPo8qJ0RSQRPXjIM1foc8ls61ku74yzuXuH8yHUeYfljUvDZ2PfoptWsaccB1coX4rhwolZi1zIUKsM5g4GJpWwDQn/E/tspgphbYjPM9B00dyVbEBS1CcnREjVkunwzMXDNK56od8W2rKukYkH6mfh+CPqCUVZBQoFM3OjrntkQmuIPWaUzYwEbE26025EeptGeNaxWciujaCj39be39WDR3hxbLtByhUmchu1YnDbhM2T+0tGsOjLxQ0BZ2FXqW1AMxBkQSAHdoZWkexZwD7vK9P5wRhHM+TVELl0fE79DIfH9kSAGsOhXuWViXUUfZMpj6oKtdGYp/PZ827emvjWSWg75jnkfPN6zke4+VPCG4lIlHip21FFPV1STfaoeta6AeEYQmMz4fKIVtmNzJzzXTW99cffnaq7zKBwsXkuhYhofe1wGcEIg6KJAQ1t6JdiQYaNK4V4D2zlbVJuH7rTafOUORtfv+KVsONCoyIlK+Bn8pVDJ6Z8+tUH94HPNXl4JkDkaE7IROuQPh8JhKf4BAW3qEJsBGMXvyozxkdzWXd3ZG0CzKaBKl6DvUa5XujimDn+nXDU1gNj+D/CLJBYhlK3cEX87iImGy53cqJRoJDNU68ZKR4C9bhtAfZ+tDhUOmCJNHePquBRN+SY/cTKYwat9ejL9TTQeASj51tJ9Az50+dmB1ooU+LU4C6jF0hAeQ4ZcyKznUoxP+YubtDQdQqM4hKIUwIsXwy1k+ycWJhqFfSSsyTO6hEsiqHchSd6kGJhVskCIpJjxVhSwEW5sRPtcl9FOVpXufTEU2QlcbVT1Wwk4T5vIerYLTHPUS5xiPQX7WAsqImOXN0X/KwtIvwV5346R3vvFuvQ8DK0KeHLP4/sqo56HXG5xMGGk+VT/vEOOPQlWCgyA77ldBme89BUkIJpo6bZkwVZKpnU9Pco4SWUfD39R8r2VRLnFf4sUYYyx5iXckDoZUFFe65wfd+RadoqyZrMPVlhzoTQ6JazlSiqrRbZPNoPCenvtcfK9bOAxmF1bEpiQQSZORtV0+803M31yhjdT4RgLtcC5vY82ffTFxGqASaztuPwovj7P9GnlXT8Tkf+SsDV3Vws/qY2T5GlfuICs49r+wwivY/jgeEjMfdleTDV4FvUT2zLxR1hlqb83hf5ZmLrazmwEKWt4moPGJAnAZCyFiVA1jjmpISCGKA0Hf9DJ/WzR1JjRGn6/lEKRbKZvxX/ItE0GDkZ72aEA9jyVGco73XXduzKKO2yMfBT51Ao2Olf6y17ktKAVGZtt/r1p2oZvIDqlpoVHYmX1Ch3BXIKwUZDCudGHNV2PyGsGwokMq77Q6YtyT3KAYbHZMM+aBAiFGXjzW/si+WY+inKlzAwI/sew/Oy309FRalBDkPYRDPPRZN6GEfDilUQqOKkHWQI/iplBmzZ1gS57OSQjpZ1QVDuGFOGwNlpFHPDFt2sxqXcCVi3JS3ObFk6YRAPqwuhFCZ21uoZWDRFG+q2vdEqPK24+mPEtd72iclSjy5QrjsNiWMdGhTZu/neSNDmsZa9fAPnTnEmciohzgxw2IhpkLLsEynPCMtjf0D+dCIR5SQaFjsoJ3KrKeRqhjsTIA7m0hEDdzF+kZ7UogNIdSXAeAmbNSHIRP1HE40mS6CXaKYE04J15KBh0URfFLGNNMRpvDIyrCT9Gttzp1IGmw4eojCpA7Q0AhjXdck26wrXaLQ73+UefBJpsI5jwLO71TGhK4zZ94HqHl6C73rQ2yOoVcjak4oQ6Fto11KA4tTU04fFXSUIsPzwfEZJT8ljuYi8lppgLzoaMA+vKdYRC6VXKQMIyJLllBJi2FdnfD8eaaRNxwHsQ7MLRaTjXmvliwtW9EDWxxGGULW0QBZviCkqZm7ZFCEIxC6tZuyQHAlEOjMG7Czk14fFHEXoVbV9/Nvj/HxlqpWj84Usgzz1NYKiDKolum9YwmEiidco27IA7iAkPotja+M/PNZZ2db8B+B2pyQXQ1xgp5jxCg3846xOg0SicaoT6RtlIS7wgB4Be5IAIurqi4aiXB+S6P4Kp2JmsEOP5zaWvLoE/1U5Ya8F9dpX+c6BVxInAAY4/iZQZJxhjEXzevZQkuFEvHFBAMePVynj0SGzkawOF2Jj8pauwylpVstq51JV/WD4FB+9vgBez9GEgY41p4JN75t4BlzJ/FECpsMM3hlQYPOSLTfCnz4PjlsGftFeMxBc1QtWuJrFuolru/EjPkfELde8QDVoJfsPjJtRDYyGigYrWFlkkvsWUbQp1uCkq88w7l4Ko6OHmM5pNAr6+u5a7QU6ZzP3sI6NgCxMNQ0sh6e/m2N8T3nQhiZCUYkNl53AwIOQXMhkOWDyHnedwiYBXoHJUifCooofzVsNUBTQmw+zn5h8h/CUdQ7mxduUbTcZI2mvdZ3Weac0IXt2Bw3gHuWpYOfTKZQAvhlSAvfWig+w1bOH9RfZH1yFLL5umQo7xDSALgcBK5fBgPRw2Q2GF4JJBMTQaLj43ZkLXVqb0x0eO/dSNxxvXaIx48UqX1JPAvH1PLyg1NcfzbSYLSvUmmWfbvonzA4V2SCAe1WKZ4Mub9GF/JGlDHUSYhJHSVhyP3YXxpndlsKLOM1VhnT26CaelFK8EiFIGglny08vfzxYynX/BWokQFaDH4+Sk62pWycAuqWOYzTUvcfdCKnnHF/EIId8uU3PK+OBoxYt9A3qXuvaQ5CM4Ewguzhg9ZNFVoDx8WL7wy9c/vlRM7DSGB+PQ8V1I6smeViglkiEl102J+L7ijLcwtxGp07FDJr5e5DaIzX9CojOGfKYwQsg8fYukJwLhzwFFw3xk2h3OG+YT9nOK2XwNgota8IqK2b+XDJiKgT9U1PQdqN1Y6s6frxVsaG0oILKI3MvhEVMu75vmCvzIdQjHesw61R9ls3Ug8ehoEVRchdYezXrmKG2kANHRcpw46hD7VjGTZeOkv4MQxW4mFY73BPpek5GZQ6MdSSb7ken+Pp3dwwW807zWsiYPvKX2A8a1Zk007l+rCJk1rIikB2Qw1q06YglN93Dri2Le3PN0f2TEQvUjFo6utQKg0S9685PhmSFNNowzJBhCrXGdgcbv4EOPqqAqDosiMYKQZGIt65AAIVnfKHc3CB5e/379nwDWnlIuNBTeN6LcQlUmvTIdcFdtis0DK+mXltvHZ0RLj1jK1Qrnojt6RTrWZKTVQwL9xR9ubBi1LMibK4LZQwXz9lMK8CeJRbYZ5CeF1w3ZVFxNiBDHGYprczK4w5H9KxnTfFa4PF6x4+tXKOSFcickBxKmu9szOwa6d3rmfxDttYFqGxrtyGSyVmmqfkZ624Oi193R2O7AjZDm46DdvP4uytlfkdEcqncA+EA4bF8sFkffnWY/QYyYU1I8exLl7y96ADHteP7FD7moShM5rBB8OMowNRPqPBclQEGtz5gcMxS53OhwMQSdMsq8qAJcayjZszVf6OtB8jYQhuvVUCUEe9MAUhz4NVRxFRlH/2ox2UkTueVZOhl52672MILA5GJAGpUuzMPFg7nOT1duembh62b0aGj+aVTDPvdHHGZ73t833xwGVIrwihQRo/f3hDGsJGJcfYagpkfZ4IxQXkH35jwzf51w/qf27DVyK2bG1lx/mMBgqQaOvb+OFohbP1jTMSeaD1ROjiwyVcHi00Fr19PdhheGApUWu+MSRlQcrVKzm9X5FVmqftH/zkwCo9S55zp6xZPtkYlrfTYTEPTxb//Y0qzQL9FaQtRKxzvcqUcmx178GjCRv8pKweSt7F/ObReR4nhSePkVrpYP2NBwxdQNFiIO6t48otEf6rJzB679M+7PNmUn42NBG8t+5U/ikLCkcNla+MA0TDQBmT46jYGCURWx7TzWSDmIs24ou+QreVaQWCzs55eSIalI5tG5yqrAeaVjF7/VQqwNeRBLTLYC21brSxCZNOVAvIFUYPJwT6EE6OeLdjgzIOMHs5TPPGFxwzYzd5T4mxfyji3s3oCYjMbhGdW5v1njxV4UHNu/Q93z49Cej9/PMBQWJh5424EdtpC8HAsnZHpGjdj+jklDaOEhpHNDI3vYdOVbhIAq4L2+NDJj8FhF5hOKhdh0hHnnhMI8+Uw2EVSh6+D17kYf4ILYfMnUkkDD1043fvPIbi/VEiIbJpI8IcbQNFklh7bPxiKOj1Nxqr7ucTJwzme8vscLC2csi3SBlBwhS+16T+6THof+QM8sxCZRqhFEqURRGRHBB3HLEqPLvp4lw1X+ZORIMrXRDXR+b1LVMMbNl47Yt79O1TbMX7H4bYdjqWSdJXiKzyJUPXMiXaCsFJ41zx9bqXiIR1W+nO1NH8b3Ed5svk2eWuX0MnEikobf6OZ2lANErG8GjwaWf5QMU5H7KEcMiIHoY6TOzZeTbXnbfTeen9uc6/u4PHjLIClpEIlmI3vyLKsCyDEJJEL9D943hgEzgfQNpZK7zY9iCF7BQ2Wa6yQVtWoLyWoEfDODuJy1heZFQkl/etfln2I6//HtpRm+27czf5V9/BUUSeFc+XzR/NsQ7vGR5BaivTJj9IMK1DFOaG/er1XaWBBOzTxWlls4PK0+0xn1Vls6BQl8G4/1mI7V8ey6dqcfGpHkRAtAdT3kwwM/fuJ8Lp28ZsrBpQysPhz0mxkSB11lP+HicB65x9LGX0x97aCoVxji68J9auQGWbh+30XnTROa72fblz0gqcS4Cq33PnLFZBJKSC5bMKFtbvZI95ywhITgI2saYTeoWpIgJYyUO/1YkObiwfHKW7BG6NibWve4gbZfP+PZORDnBbLf58AbDcDSxvYWVG20Gro8Kb8fxBZvg2czGpLA6riihpGWolvciQrxHE2R+t572+51wULfS2DLoTzzi/HNoLjbJDcOLn+rsxFYPrsi+Nk9xxvBPoGI+uB0GX1XnpWWtJn1gJTDThAF2by3xy4ujwyAGLQuwp+K9D8X8+beFHVpgweb/q05C9h5n/0CQSrkM4bAqQoFF+uE845ojQrwj9TeC90SRdR9jvmUfKEeF17FdSPioYhdmiEPyjvIqQJCBIR9Q30ZrnTGkrjnNnG4GYqk20+gerlEleSEP9GDoMmqUG6UEGlPApzgid1FI2Rt1fTQNkwA6d/GenERz6yBAdSaflUGyGmzEdArpO7AheZeArhJN9aTBsklbJ4lXjX0Z7LX6rGKAkI30iOpgINLKuMJ8VPy74K8N4D/PcywO1nPiu0nRW7bGBzv8F6IHTe3nQVlIAAAAASUVORK5CYII=') var(--color--clay-100);
}

.category-list .category::after {
  content: "";
  display: block;
  width: var(--category--icon-size);
  height: var(--category--icon-size);
  background: var(--color--clay-800);
  mask-image: url("https://www.helpscout.com/icons/help-circle.svg");
  mask-size: 100% 100%;
  position: absolute;
  top: calc(32px + (var(--spacing--base-2-5) - var(--category--icon-size)) / 2);
  left: calc(50% - var(--category--icon-size) / 2);
}


/* Help */

/* Help Centre */

/* Contact Us */


/* Account and Security */

/* Account Setup */
.category-list .category#category-217::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/user--v1");
}

/* MFA */
.category-list .category#category-219::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/face-id");
}

/* Password */
.category-list .category#category-218::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/lock--v1");
}

/* Recover Files */
.category-list .category#category-223::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/restore-page.png");
}


/* Devices */

/* Order a Device */
.category-list .category#category-207::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/shopping-cart--v1.png");
}

/* Laptop */
.category-list .category#category-88::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/laptop.png");
}

/* Mobile */
.category-list .category#category-222::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/iphone-x.png");
}

/* Printer */
.category-list .category#category-92::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/print.png");
}

/* Wi-Fi */
.category-list .category#category-169::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/wifi--v1.png");
}


/* Meetings */

/* Meeting Room */
.category-list .category#category-143::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/meeting-room--v2.png");
}

/* Teams Meeting */
.category-list .category#category-171::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/microsoft-teams-2019.png");
}

/* Zoom Meeting */
.category-list .category#category-205::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/video-call.png");
}


/* Microsoft 365 */

/* MS Apps */
.category-list .category#category-76::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/ms-word.png");
}

/* OneDrive */
.category-list .category#category-54::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/cloud--v1.png");
}

/* Outlook */
.category-list .category#category-53::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/new-post.png");
}

/* Microsoft Teams */
.category-list .category#category-55::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/microsoft-teams-2019.png");
}


/* Systems */

/* AI */
.category-list .category#category-259::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/chatgpt.png");
}

/* ECM */
.category-list .category#category-128::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/note.png");
}

/* Pathway */
.category-list .category#category-172::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/organization.png");
}

/* GIS */
.category-list .category#category-173::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/layers.png");
}

/* Car Booking */
.category-list .category#category-189::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/suv.png");
}

/* Working from Home */
.category-list .category#category-270::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/home--v2.png");
}

/* Whitelist */
.category-list .category#category-273::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/apple-app-store.png");
}

/* Mitel */
.category-list .category#category-275::after {
  mask-image: url("https://img.icons8.com/material-outlined/192/phone.png");
}

.category-list .category:hover {
  background: var(--color--basics-white);
  box-shadow: var(--elevation--M);
}

.category-list .category h3,
.category-list .category p,
.category-list .category .article-count {
  flex: 0 0 100%;
}

.category-list .category h3 {
  margin: 0;
  color: var(--color--text-headline);
  font-weight: var(--font-weight--semibold);
  font-size: var(--font-size--L);
  line-height: var(--line-height--tight);
}

.category-list .category p,
.category-list .category .article-count {
  margin: 0;
  font-size: var(--font-size--S);
  line-height: var(--line-height--relaxed);
  color: var(--color--text-default);
}

.category-list .category p:first-of-type {
  align-self: start;
}

.category-list .category .article-count {
  align-self: end;
  color: var(--color--action-default);
}

.category-list .category:hover .article-count {
  color: var(--color--action-hovered);
}

@media (min-width: 768px) {
  .category-list .category {
    flex: 0 0 calc(50% - var(--spacing--base-1-5) / 2);
  }
}

@media (min-width: 1024px) {
  .category-list .category {
    flex: 0 0 calc(25% - var(--spacing--base-1-5) * 3 / 4);
    padding-left: var(--spacing--base-2-5);
    padding-right: var(--spacing--base-2-5);
  }
}

/* END Collection Category */

/* BEGIN article sidebar */
#sidebar {
  margin: 0;
  padding: 0;
}

#sidebar form .search-query {
  border: 1px solid var(--color--charcoal-500);
  border-radius: var(--border-radius--S);
  font-size: var(--font-size--S);
  height: var(--input--height-M);
  line-height: var(--input--height-M);
  padding: 0 var(--input--padding-x-M);
}

#sidebar form button,
#searchBar.sm button {
  top: 0;
  right: var(--spacing--XS);
  height: 100%;
}

#sidebar form .icon-search {
  background: var(--color--charcoal-600);
  width: 26px;
  height: 26px;
  mask-image: url("https://www.helpscout.com/icons/search.svg");
  mask-size: 100% 100%;
  transition: background-color 0.3s;
}

#sidebar form button:hover .icon-search {
  background: var(--color--text-headline);
}

#sidebar form .icon-search::before {
  content: none;
}

#sidebar h3 {
  color: var(--color--text-dark);
  font-family: var(--font-family--mono);
  font-size: var(--font-size--S);
  font-weight: var(--font-weight--normal);
  line-height: var(--line-height--relaxed);
  text-transform: capitalize;
  margin: 0 0 20px;
}

#sidebar .nav-list {
  margin-bottom: 0;
}

#sidebar .nav-list li {
  margin: 0;
}

#sidebar .nav-list a {
  display: block;
  font-size: var(--font-size--M);
  line-height: var(--line-height--relaxed);
  color: var(--color--text-default);
  padding: var(--border-radius--S) 0;
}

#sidebar .nav-list a:hover,
#sidebar .nav-list li.active a:hover {
  color: var(--color--action-default);
}

#sidebar .nav-list li.active a,
#sidebar .nav-list li.active a:hover {
  color: var(--color--text-default);
  font-weight: var(--font-weight--medium);
}

#sidebar .nav-list li.active a i {
  color: var(--color--charcoal-200);
  transition: translate 0.3s;
}

#sidebar .nav-list li.active a:hover i {
  translate: 2px 0;
}

@media (max-width: 768px) {
  #sidebar {
    padding: 0;
  }
}

/* END article sidebar */

/* BEGIN
  .contentWrapper
*/
#contentArea .row-fluid {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-top: var(--spacing--M);
  gap: var(--spacing--M);
  margin-bottom: var(--spacing--L);
}

#contentArea .row-fluid::after,
#contentArea .row-fluid::before {
  content: none;
}

@media (max-width: 768px) {
  #contentArea .row-fluid {
    flex-direction: column;
    gap: var(--spacing--L);
    padding-top: 0;
  }
}

#main-content {
  background: none;
  padding: var(--spacing--M);
  margin-bottom: 0;
  box-shadow: var(--elevation--M);
  border-radius: var(--border-radius--M);
  background: var(--color--basics-white);
}

.contentWrapper {
  border: none;
  padding: 0;
  color: var(--color--text-default);
}

.contentWrapper.withRelated {
  padding-bottom: var(--spacing--S);
}

.contentWrapper h1 {
  font-size: var(--font-size--2XL);
  margin-bottom: var(--spacing--M);
}

#fullArticle,
#fullArticle p,
#fullArticle ul,
#fullArticle ol,
#fullArticle li,
#fullArticle div,
#fullArticle blockquote,
#fullArticle dd,
#fullArticle table {
  color: var(--color--text-default);
}

#fullArticle h1,
#fullArticle h2,
#fullArticle h3,
#fullArticle h4,
#fullArticle h5 {
  color: var(--color--text-headline);
  line-height: var(--line-height--tight);
}

#fullArticle,
#fullArticle blockquote,
#fullArticle dd,
#fullArticle div,
#fullArticle li,
#fullArticle ol,
#fullArticle p,
#fullArticle table,
#fullArticle ul {
  font-size: var(--font-size--M);
  //line-height: var(--line-height--relaxed);
  //margin: 0 0 var(--spacing--S);
}

#fullArticle {
  margin: 0 0 var(--spacing--M);
}

#fullArticle .title {
  font-size: var(--font-size--2XL);
  font-weight: var(--font-weight--semibold);
  margin: 0 0 var(--spacing--S);
  padding-right: 22px;
}

.contentWrapper p.descrip {
  font-size: var(--font-size--M);
  margin: 0 0 var(--spacing--S);
  color: var(--color--text-default);
}

#fullArticle h2 {
  font-size: var(--font-size--L);
  font-weight: var(--font-weight--semibold);
  margin: 0 0 var(--headline-medium-L--margin-bottom);
}

#fullArticle h3 {
  font-weight: 600;
  margin: 0 0 var(--headline-medium-M--margin-bottom);
  //font-family: var(--font-family--mono);
  font-size: var(--font-size--S);
  //color: #314351;

}

#fullArticle h4 {
  font-size: var(--font-size--S);
  font-weight: var(--font-weight--semibold);
  margin: 0 0 var(--headline-medium-S--margin-bottom);
}

#fullArticle h5 {
  font-size: var(--font-size--XS);
  font-weight: var(--font-weight--semibold);
  margin: 0 0 var(--headline-medium-XS--margin-bottom);
}

#fullArticle>br {
  display: none;
}

#fullArticle>ul,
#fullArticle>ol {
  padding-left: var(--spacing--XS);
}

#fullArticle>ul {
  list-style: none;
}

#fullArticle>ol {
  list-style: decimal;
}

#fullArticle>ul li,
#fullArticle>ol li {
  position: relative;
  margin: 0;
}

#fullArticle>ul li::before {
  content: "•";
  position: absolute;
  top: -0.1em;
  left: -0.8em;
  display: block;
  color: var(--color--text-light);
}

#fullArticle dt {
  background: none;
  color: var(--color--text-default);
  font-size: var(--font-size--M);
  display: inline-block;
  padding: 0;
  line-height: var(--line-height--relaxed);
  vertical-align: middle;
  margin: 0;
  border-radius: 0;
  font-weight: var(--font-weight--medium);
  margin-right: 0;
}

#fullArticle dt::after {
  content: ".";
  translate: -0.25em 0;
  display: inline-block;
}

#fullArticle dd {
  padding: 0;
  margin: 0 0 var(--spacing--S);
}

#fullArticle dd::after,
#fullArticle dd::before {
  content: none;
}

#fullArticle dd p:last-child {
  margin: 0;
}

#fullArticle .printArticle {
  border: none;
  top: 0;
  right: 0;
}

#fullArticle table {
  font-feature-settings: normal;
}

#fullArticle .printArticle .icon-print {
  color: var(--color--text-light);
  transition: color 0.3s;
}

#fullArticle .printArticle:hover .icon-print {
  color: var(--color--action-hovered);
}

#fullArticle .index-list {
  background: var(--color--slate-100);
  border-top: 3px solid var(--color--slate-500);
  padding: var(--spacing--base-0-5) var(--spacing--base-0-5) var(--spacing--base-1);
  margin-bottom: var(--spacing--M);
}

#fullArticle .index-list h4,
#fullArticle .index-list ul li a {
  display: block;
  font-size: var(--font-size--M);
  font-weight: var(--font-weight--normal);
  line-height: var(--line-height--relaxed);
  margin: 0;
  padding: var(--spacing--base-0-5);
  border: none;
}

#fullArticle .index-list ul li a {
  color: var(--color--action-default);
}

#fullArticle .index-list ul li a:hover {
  color: var(--color--action-hovered);
}

#fullArticle .index-list h4 {
  font-family: var(--font-family--mono);
  font-size: var(--font-size--S);
  color: var(--color--text-dark);
  text-transform: capitalize;
}

#fullArticle .index-list ul,
#fullArticle .index-list ul li {
  margin: 0;
}

#fullArticle .index-list ul li a:hover {
  color: var(--color--action-hovered);
}

#fullArticle .callout,
#fullArticle .callout-blue,
#fullArticle .callout-green,
#fullArticle .callout-red,
#fullArticle .callout-yellow,
#fullArticle .private-note {
  padding: var(--spacing--base-1) var(--spacing--base-1) var(--spacing--base-1-5);
}

#fullArticle .callout p,
#fullArticle .callout-blue p,
#fullArticle .callout-green p,
#fullArticle .callout-red p,
#fullArticle .callout-yellow p,
#fullArticle .private-note p {
  font-size: var(--font-size--M);
  color: var(--color--text-default);
  margin: 0;
}


#fullArticle .callout {
  background: #F2F9FC;
  border-top: 4px solid #82A7BA;
  border-color: #82A7BA;
  border-left: none;
}

#fullArticle .callout h3 {
    font-family: var(--font-family--mono);
    font-size: 14px;
    color: var(--color--text-dark);
    text-transform: capitalize;
}

#fullArticle .callout h3, #fullArticle .callout ul li a {
    display: block;
    font-size: var(--font-size--M);
    font-weight: var(--font-weight--normal);
    line-height: var(--line-height--relaxed);
    margin: 0;
    padding-bottom: 20px;
}

#fullArticle .callout a {
   color: #304DDB;
   border-bottom: none;
}


#fullArticle .callout-blue {
  background: #D1E8FF;
  border-left: 4px solid #66A3FF;
  border-color: #66A3FF;
}

#fullArticle .callout-green {
  background: #E0FCDE;
  border-left: 4px solid #48C47D;
  border-color: #48C47D;
}

#fullArticle .callout-red {
  background: var(--color--red-100);
  border-left:43px solid var(--color--red-300);
  border-color: var(--color--red-300);
}

#fullArticle .callout-yellow {
  background: #FEEECC;
  border-left: 4px solid #E19C24;
  border-color: #E19C24;
}

#fullArticle .private-note {
  background: var(--color--purple-100);
  border-left: 4px solid #E19C24;
  border-color: var(--color--purple-300);
}

#fullArticle .badge {
  background: var(--color--charcoal-600);
  color: var(--color--basics-white);
}

#fullArticle .badge.info {
  background: var(--color--cobalt-600);
}

#fullArticle .badge.success {
  background: var(--color--green-600);
}

#fullArticle .badge.warning {
  background: var(--color--yellow-600);
}

#fullArticle .badge.error {
  background: var(--color--red-600);
}

#serp-dd .result a:hover,
#serp-dd .result>li.active,
#fullArticle strong a,
#fullArticle a strong,
.collection a,
.contentWrapper a,
.most-pop-articles .popArticles a,
.most-pop-articles .popArticles a:hover span,
.category-list .category .article-count,
.category-list .category:hover .article-count {
  color: var(--color--action-default);
}

a:focus,
a:hover {
  color: var(--color--action-hovered);
  text-decoration: none;
}

#fullArticle a {
  color: var(--color--text-dark);
  border-bottom: 1px solid var(--color--text-light);
  cursor: pointer;
}

#fullArticle a:hover {
  color: var(--color--cobalt-600);
  border-bottom-color: var(--color--cobalt-600);
}

#fullArticle strong {
  color: var(--color--text-dark);
  font-weight: var(--font-weight--medium);
}

.articleRatings {
  margin-bottom: var(--spacing--M);
}

.articleFoot {
  clear: none;
  margin: 0;
}

/* clearfix :'( */
.articleFoot::after,
.articleFoot::before {
  display: table;
  content: "";
  line-height: 0;
}

.articleFoot::after {
  clear: both;
}

.articleFoot p,
.articleFoot time {
  font-family: var(--font-family--mono);
  font-size: var(--font-size--XS);
  line-height: var(--line-height--relaxed);
  color: var(--color--text-light);
  font-style: normal;
}

.articleFoot p.lu,
.articleFoot time.lu {
  margin: 0;
}

@media (max-width: 768px) {
  #main-content {
    margin: 0 calc(var(--spacing--S) * -1);
    padding-left: var(--spacing--S);
    padding-right: var(--spacing--S);
  }

  .contentWrapper h1 {
    font-size: var(--font-size--2XL);
  }

  #sidebar {
    margin: 0;
  }
}

/* END
  .contentWrapper
*/

/*
  BEGIN .related
*/
.related {
  background: transparent;
  padding: var(--spacing--S) 0 0;
  margin: 0;
  border: none;
  border-top: 1px solid var(--color--charcoal-300);
}

.related h3 {
  margin: 0 0 var(--spacing--S);
  color: var(--color--text-headline);
  font-weight: var(--font-weight--semibold);
  font-size: var(--font-size--M);
  line-height: var(--line-height--tight);
  text-transform: capitalize;
}

.related ul,
.related ul li {
  padding: 0;
  margin: 0;
}

.related ul li a {
  font-size: var(--font-size--M);
  line-height: var(--line-height--relaxed);
  margin: 0;
}

.related ul li a i {
  display: none;
}

@media (max-width: 768px) {
  .related h3 {
    padding: 0;
  }
}

/*
  END .related
*/

/*
  BEGIN category
*/
#categoryHead .sort {
  top: 0;
}

#categoryHead .sort form {
  margin: 0;
}

#categoryHead .sort select {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIyMiIgdmlld0JveD0iMCAwIDkgMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00LjUxMzAxIDRMNy43NTQ5NiA5LjI1SDEuMjcxMDZMNC41MTMwMSA0WiIgZmlsbD0iIzQwNTI2MSIvPgo8cGF0aCBkPSJNNC41MTI4NyAxOEwxLjI3MDkyIDEyLjc1TDcuNzU0ODIgMTIuNzVMNC41MTI4NyAxOFoiIGZpbGw9IiM0MDUyNjEiLz4KPC9zdmc+Cg==);
  background-position: calc(100% - var(--input--padding-x-M)) 50%;
  background-repeat: no-repeat;
  background-color: var(--color--basics-white);
  border-radius: var(--border-radius--S);
  border: 1px solid var(--color--charcoal-500);
  color: var(--color--text-default);
  font-size: var(--font-size--S);
  height: var(--input--height-M);
  line-height: var(--input--height-M);
  padding: 0 var(--input--padding-x-M);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.articleList {
  border-top: 1px solid var(--color--charcoal-300);
  padding-top: var(--spacing--S);
  display: flex;
  flex-direction: column;
  gap: var(--spacing--XS);
  margin: 0;
  font-size: var(--font-size--M);
}

.articleList li {
  margin: 0;
  padding: 0;
}

.articleList a {
  font-size: var(--font-size--M);
  line-height: var(--line-height--relaxed);
  margin: 0;
}

.articleList a i {
  display: none;
}

.articleList a:hover span {
  text-decoration: none;
}

/*
  END category
*/

/* PREVIEW admin banner */
.appMessage {
  top: calc(var(--spacing--M)* -1);
  left: calc(var(--spacing--M)* -1);
  width: calc(100% + var(--spacing--M)* 2);
}

.navbar .icon-private-w {
color: #556575;
}

.navbar a:hover .icon-private-w {
color: #556575;
}

#fullArticle table th {
background-color: #F9FAFA;
border-left: 1px solid #e2e2e2;
border-right: 1px solid #e2e2e2;
border-bottom: 1px solid #e2e2e2;
}

#fullArticle table td {
border-left: 1px solid #e2e2e2;
border-right: 1px solid #e2e2e2;
border-bottom: 1px solid #e2e2e2;
}

.btn {
background-color: #304DDB;
border: none;
border-color: #304DDB;
padding: 8px 12px;
background-image: none;
border-radius: 0px;
font-size: 14px;
text-shadow: none;
}

.btn:hover {
background-color: #304DDB;
border: none;
border-color: #304DDB;
padding: 8px 12px;
background-image: none;
border-radius: 0px;
font-size: 14px;
text-shadow: none;
}

.btn:active {
background-color: #304DDB;
border: none;
border-color: #304DDB;
padding: 8px 12px;
background-image: none;
border-radius: 0px;
font-size: 14px;
text-shadow: none;
}

.btn:link {
background-color: #304DDB;
border: none;
border-color: #304DDB;
padding: 8px 12px;
background-image: none;
border-radius: 0px;
font-size: 14px;
text-shadow: none;
}


#fullArticle .admin-edit {
color: #fff;
}

#fullArticle .admin-edit:hover {
color: #fff;
}















#fullArticle p {
  margin-bottom: 12px !important;
}

#fullArticle p + ul,
#fullArticle p + ol {
  margin-top: 0 !important;
}

#fullArticle ul,
#fullArticle ol {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

#fullArticle li {
  margin-bottom: 4px !important;
}




.category-list.two-col {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr;
}

.category-list.two-col .category {
    width: auto;
}

@media (min-width: 640px) {
    .category-list.two-col {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   KINGBOROUGH HELP HUB — Digital Strategy theme
   Paste this at the END of Manage › Settings › Custom Code › CSS,
   AFTER your existing custom CSS (it overrides it layer by layer).
   Palette from the Digital Strategy deck:
   ink #0e2a35 · teal #2f8f9d · cream #f6f3ec · card #fdfcf8
   ============================================================ */

:root {
  --kb-ink: #0e2a35;
  --kb-teal: #2f8f9d;
  --kb-teal-dark: #26788a;
  --kb-teal-deep: #226673;
  --kb-cream: #f6f3ec;
  --kb-card: #fdfcf8;
  --kb-border: #e4dece;
  --kb-muted: #5a6b70;
  --kb-faint: #8a9698;
  --kb-font: Calibri, "Segoe UI", -apple-system, sans-serif;
}

/* ---------- base ---------- */
/* prevent the full-bleed nav band from creating horizontal scroll */
html { overflow-x: clip; }
body {
  background: var(--kb-cream);
  font-family: var(--kb-font);
  color: var(--kb-muted);
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6, input, button, select, textarea {
  font-family: var(--kb-font);
}
a { color: var(--kb-teal-deep); }
a:hover, a:focus { color: var(--kb-ink); text-decoration: none; }
/* article-style link effect for prose links only (not headings, cards or nav) */
#fullArticle a,
#main-content .contentWrapper p a,
footer a {
  color: var(--kb-teal-deep);
  border-bottom: 1px solid rgba(47, 143, 157, 0.4);
  transition: color 0.15s, border-color 0.15s;
}
#fullArticle a:hover,
#main-content .contentWrapper p a:hover,
footer a:hover {
  color: var(--kb-ink);
  border-bottom-color: var(--kb-ink);
}
/* headings, sidebar lists and card grids keep their own treatment */
.collection-category h2 a,
.collection-category h2 a:hover,
#contentArea .collection-category h2 a,
#contentArea .collection-category h2 a:hover,
#contentArea .category, #contentArea .category:hover,
#contentArea .category h3, #contentArea .category p, #contentArea .category .article-count,
.articleList a {
  border-bottom: none;
}
::selection { background: rgba(47, 143, 157, 0.25); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--kb-teal);
  outline-offset: 2px;
}

/* ---------- top nav (dark band on every page, scrolls with the page) ---------- */
.navbar,
#mainNav {
  position: relative;
  margin: 0;
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -100vw; right: -100vw;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 13px),
    var(--kb-ink);
  z-index: -1;
}
/* home page: the hero is dark and slides up behind the nav,
   so the band blends into it seamlessly */
/* Nav layout and hamburger behaviour stay as KC-Settings.css defines them. */
/* On the homepage the hero slides up behind the nav so the rings run
   all the way to the top; the nav band goes transparent over it. */
body:has(#docsSearch) .navbar::before { background: transparent; }
.navbar, #mainNav { z-index: 10; }
body:has(#docsSearch) #docsSearch {
  margin-top: calc(var(--main-nav-height, 88px) * -1) !important;
  padding-top: calc(var(--main-nav-height, 88px) + 40px) !important;
}

/* Brand: replace the logo image with the ring mark + "DIGITAL EXPERIENCE" wordmark */
.navbar .brand img { display: none; }
.navbar .brand {
  text-indent: 0 !important;
  width: auto !important;
  height: auto !important;
  min-height: 33px;
  overflow: visible !important;
  display: flex !important;
  align-items: center;
  gap: 12px;
  visibility: visible !important;
  opacity: 1 !important;
}
.navbar .brand::before {
  content: "";
  flex: none;
  width: 26px;
  height: 26px;
  border: 3px solid var(--kb-teal);
  border-radius: 50%;
}
.navbar .brand::after {
  content: "DIGITAL EXPERIENCE";
  font-family: var(--kb-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: #f6f3ec;
  white-space: nowrap;
}
.navbar .nav li a { color: #a9c4cc; font-family: var(--kb-font); }
.navbar .nav li a:hover,
.navbar .nav li a:focus { color: #f6f3ec; background: transparent; }
@media (min-width: 1140px) {
  /* guarantee the menu is expanded on desktop even if evolution.css fails to load */
  .nav-collapse.collapse { height: auto !important; overflow: visible !important; display: block !important; visibility: visible !important; }
  .navbar .btn-navbar { display: none; }
  .navbar .nav { display: flex !important; }
  .navbar .nav li { display: block !important; opacity: 1 !important; visibility: visible !important; transform: none !important; }
  .navbar .nav li.active a,
  .navbar .nav li.active a:hover,
  .navbar .nav li.active a:focus {
    color: #f6f3ec;
  }
  .navbar .nav li a:hover,
  .navbar .nav li a:focus { color: #f6f3ec; }
}
/* hamburger icon recolored to read on the dark band (mask comes from KC-Settings.css) */
.navbar .btn-navbar { background: #f6f3ec; }
.navbar .btn-navbar:hover, .navbar .btn-navbar:focus { background: var(--kb-teal); }
/* open dropdown is a light panel (original logic); dark links stay readable on it */
.nav-collapse.in .nav li a { color: var(--kb-muted); }
.nav-collapse.in .nav li a:hover,
.nav-collapse.in .nav li a:focus,
.nav-collapse.in .nav li.active a { color: var(--kb-ink); }

/* ---------- search hero ---------- */
#docsSearch {
  position: relative;
  overflow: visible; /* don't clip the search-results dropdown */
  background:
    /* concentric ring motif painted as background so nothing needs clipping */
    radial-gradient(circle at calc(100% - 140px) -80px, transparent 219px, rgba(47, 143, 157, 0.5) 220px 232px, transparent 233px),
    radial-gradient(circle at calc(100% - 140px) -80px, transparent 419px, rgba(47, 143, 157, 0.34) 420px 432px, transparent 433px),
    radial-gradient(circle at calc(100% - 140px) -80px, transparent 639px, rgba(47, 143, 157, 0.2) 640px 652px, transparent 653px),
    radial-gradient(circle at calc(100% - 140px) -80px, transparent 879px, rgba(47, 143, 157, 0.11) 880px 892px, transparent 893px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 13px),
    var(--kb-ink);
}
#docsSearch h1 {
  position: relative;
  z-index: 1;
  color: #f6f3ec;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.02em;
  text-align: left;
}
#docsSearch h1::before {
  content: "Kingborough Council · Help Hub";
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kb-teal);
  margin-bottom: 14px;
}
#docsSearch h1::after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  background: var(--kb-teal);
  margin: 18px 0 0; /* flush left, like the mockup */
}
/* hero content flush left + tighter vertical rhythm */
#docsSearch {
  text-align: left !important;
  margin-top: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 44px !important;
}
#searchBar { position: relative; z-index: 1; flex-wrap: wrap; display: flex; gap: 12px; margin-left: 0; margin-right: auto; }
#searchBar::after {
  content: "Try ‘reset my passphrase’ or ‘book a meeting room’";
  flex: 0 0 100%;
  font-size: 15px;
  color: #cdd9dc;
  margin-top: 14px;
  text-align: left;
}
#searchBar .search-query {
  background: var(--kb-card);
  border: 1px solid var(--kb-border);
  border-radius: 8px;
  color: var(--kb-ink);
  flex: 1;
  font-family: var(--kb-font);
}
#searchBar .search-query:hover,
#searchBar .search-query:active,
#searchBar .search-query:focus { border-color: var(--kb-teal); }
#searchBar button {
  background: var(--kb-teal);
  border-radius: 8px;
  margin-left: 0;
  position: static;
  font-family: var(--kb-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
}
#searchBar button:hover { background: var(--kb-teal-dark); }
/* results dropdown floats above the hero and everything after it */
#docsSearch { z-index: 5; }
#searchBar { z-index: 6; }
#serp-dd {
  border-radius: 8px;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(14, 42, 53, 0.25);
}
#serp-dd .result > li a:hover { color: var(--kb-teal-dark); }

/* ---------- home: collection headings ---------- */
.collection-category h2,
.collection-category h2 a,
.collection-category h2 a:hover {
  color: var(--kb-ink);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.015em;
}
/* no underline on collection headings (beats the #contentArea link rule) */
#contentArea .collection-category h2 a,
#contentArea .collection-category h2 a:hover {
  border-bottom: none;
}
/* order collections by collection number and restore the numbered kickers */
#contentArea { display: flex; flex-direction: column; padding-top: 40px; }
/* anything unnumbered inside #contentArea (e.g. the footer on the homepage)
   must stay at the end — default order 0 would jump it above the collections */
#contentArea > *:not(.collection-category) { order: 99; }
.collection-category h2::before {
  content: "Collection";
  padding-left: 26px;
  line-height: 18px;
  /* crisp SVG circle — gradients anti-alias badly at this size */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='7' fill='%232f8f9d'/%3E%3C/svg%3E") left center / 18px 18px no-repeat;
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kb-teal);
  margin-bottom: 10px;
}
#collection-category-19 { order: 1; }
#collection-category-19 h2::before { content: "Collection 01"; }
#collection-category-214 { order: 2; }
#collection-category-214 h2::before { content: "Collection 02"; }
#collection-category-85 { order: 3; }
#collection-category-85 h2::before { content: "Collection 03"; }
#collection-category-140 { order: 4; }
#collection-category-140 h2::before { content: "Collection 04"; }
#collection-category-50 { order: 5; }
#collection-category-50 h2::before { content: "Collection 05"; }
#collection-category-125 { order: 6; }
#collection-category-125 h2::before { content: "Collection 06"; }
#collection-category-230 { order: 7; }
#collection-category-230 h2::before { content: "Collection 07"; }
#collection-category-243 { order: 8; }
#collection-category-243 h2::before { content: "Collection 08"; }
#collection-category-230 { order: 7; }
#collection-category-230 h2::before { content: "Collection 07"; }
#collection-category-243 { order: 8; }
#collection-category-243 h2::before { content: "Collection 08"; }

/* ---------- home: category cards ---------- */
.category-list .category {
  background: #ffffff;
  border: 1px solid var(--kb-border);
  border-radius: 10px;
  box-shadow: 0 3px 16px rgba(14, 42, 53, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.category-list .category:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(14, 42, 53, 0.12);
  transform: translateY(-2px);
}
/* 2a card grammar: teal accent bar instead of the icon chip */
.category-list .category {
  padding: 58px 24px 24px;
  text-align: left;
}
.category-list .category h3,
.category-list .category p,
.category-list .category .article-count {
  text-align: left;
}
/* card headings underlined like the mockup */
.category-list .category h3 {
  text-decoration: underline;
  text-decoration-color: rgba(47, 143, 157, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.category-list .category::before {
  width: 42px;
  height: 4px;
  border-radius: 0;
  background: var(--kb-teal);
  top: 28px;
  left: 24px;
  mask-image: none;
  -webkit-mask-image: none;
}
.category-list .category::after {
  display: none;
}
.category-list .category h3 { color: var(--kb-ink); font-weight: 700; font-size: 20px; line-height: 1.15; }
/* Get Help's .two-col grid → same card widths & spacing as every other collection */
.category-list.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing--base-1-5, 12px);
}
@media (min-width: 768px) {
  .category-list.two-col .category { flex: 0 0 calc(50% - var(--spacing--base-1-5, 12px) / 2); }
}
@media (min-width: 1024px) {
  .category-list.two-col .category { flex: 0 0 calc(25% - var(--spacing--base-1-5, 12px) * 3 / 4); }
}
/* Get Help cards: drop the hard-coded cartoon illustrations and match the other cards
   (KC-Settings gives #category-94/#category-220 padding-top:43%, centered text and
   their own bg/radius for the illustration layout — reset all of it) */
#collection-category-19 .category-list #category-94,
#collection-category-19 .category-list #category-220 {
  background-image: none;
  background-color: #ffffff;
  padding: 58px 24px 24px;
  border-radius: 10px;
  text-align: left;
}
.category-list .category#category-94::before,
.category-list .category#category-220::before {
  display: block;
}
#collection-category-19 .category-list #category-94 h3,
#collection-category-19 .category-list #category-220 h3 {
  margin-top: 0;
  text-align: left;
}
#collection-category-19 .category-list #category-94 p,
#collection-category-19 .category-list #category-220 p,
#collection-category-19 .category-list #category-94 .article-count,
#collection-category-19 .category-list #category-220 .article-count {
  text-align: left;
}
@media (max-width: 768px) {
  #collection-category-19 .category-list #category-94,
  #collection-category-19 .category-list #category-220 {
    padding: 48px 18px 18px;
  }
}
.category-list .category p { color: var(--kb-muted); }
.category-list .category .article-count,
.category-list .category:hover .article-count {
  color: var(--kb-teal);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-list .category .article-count::after { content: " →"; }

/* ---------- collection / category / article pages ---------- */
#main-content {
  background: #ffffff;
  border: 1px solid var(--kb-border);
  border-radius: 10px;
  box-shadow: 0 3px 16px rgba(14, 42, 53, 0.06);
}
/* keep inner article blocks transparent so the card reads as one white surface */
#main-content .contentWrapper,
#fullArticle,
.articleFoot {
  background: transparent;
}
/* ---------- article typography & rhythm ---------- */
.contentWrapper { padding: 48px 56px; }
.contentWrapper h1,
#fullArticle .title {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.contentWrapper p.descrip {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 28px;
  color: #3d4f56;
}
#fullArticle {
  font-size: 17.5px;
  line-height: 1.7;
}
/* comfortable reading measure — long lines are the main readability killer */
#fullArticle p, #fullArticle ul, #fullArticle ol, #fullArticle blockquote {
  max-width: 76ch;
}
#fullArticle p { margin: 0 0 18px; }
#fullArticle h2 {
  font-size: 25px;
  line-height: 1.2;
  margin: 40px 0 14px;
}
#fullArticle h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 32px 0 10px;
}
#fullArticle h4, #fullArticle h5 { margin: 26px 0 8px; }
#fullArticle ul, #fullArticle ol { margin: 0 0 18px; padding-left: 34px; }
#fullArticle li { margin-bottom: 8px; line-height: 1.65; }
#fullArticle li > ul, #fullArticle li > ol { margin: 8px 0 0; padding-left: 26px; }
/* top-level ordered lists read as numbered steps in teal circles */
#fullArticle > ol {
  list-style: none;
  counter-reset: kb-steps;
  padding-left: 46px;
}
#fullArticle > ol > li {
  counter-increment: kb-steps;
  position: relative;
  margin-bottom: 14px;
}
#fullArticle > ol > li::before {
  content: counter(kb-steps);
  position: absolute;
  left: -46px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--kb-teal);
  color: #ffffff;
  font-family: var(--kb-font);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
}
/* keyboard keys: <kbd>Ctrl</kbd> renders as a keycap */
#fullArticle kbd {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.85em;
  color: var(--kb-ink);
  background: #ffffff;
  border: 1px solid var(--kb-border);
  border-bottom-width: 3px;
  border-radius: 6px;
  padding: 2px 8px;
  white-space: nowrap;
}
#fullArticle img {
  border-radius: 8px;
  border: 1px solid var(--kb-border);
  margin: 6px 0 18px;
  max-width: 100%;
  height: auto;
}
#fullArticle .callout, #fullArticle .index-list { margin: 26px 0; }
#fullArticle blockquote {
  border-left: 3px solid var(--kb-teal);
  margin: 22px 0;
  padding: 4px 0 4px 20px;
  color: var(--kb-muted);
}
#fullArticle table { margin: 22px 0; }
#fullArticle table th, #fullArticle table td { padding: 10px 14px; line-height: 1.5; }
#fullArticle code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.9em;
  background: rgba(47, 143, 157, 0.09);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--kb-ink);
}
#fullArticle pre {
  background: var(--kb-ink);
  color: #e6eef0;
  border-radius: 8px;
  padding: 18px 20px;
  overflow-x: auto;
  line-height: 1.55;
  margin: 0 0 18px;
}
#fullArticle pre code { background: transparent; color: inherit; padding: 0; }
.articleFoot { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--kb-border); }
/* "contact us" band appended by the Custom Code JS snippet */
.kb-contact-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at calc(100% - 60px) -40px, transparent 89px, rgba(47, 143, 157, 0.45) 90px 98px, transparent 99px),
    radial-gradient(circle at calc(100% - 60px) -40px, transparent 169px, rgba(47, 143, 157, 0.25) 170px 178px, transparent 179px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 13px),
    var(--kb-ink);
  border-radius: 12px;
  padding: 24px 30px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.kb-contact-band .kb-contact-copy { flex: 1 1 320px; }
.kb-contact-band span {
  display: block;
  font-family: var(--kb-font);
  font-weight: 700;
  font-size: 18px;
  color: #f6f3ec;
}
.kb-contact-band small {
  display: block;
  margin-top: 6px;
  font-family: var(--kb-font);
  font-size: 14px;
  color: #a9c4cc;
}
.kb-contact-band small a {
  background: none;
  color: #6fb3c0 !important;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(111, 179, 192, 0.5) !important;
}
.kb-contact-band small a:hover { background: none; color: #f6f3ec !important; border-bottom-color: #f6f3ec !important; }
.kb-contact-band a {
  background: var(--kb-teal);
  color: #ffffff !important;
  font-family: var(--kb-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none !important;
  border-radius: 8px;
  padding: 10px 22px;
  white-space: nowrap;
}
.kb-contact-band a:hover { background: var(--kb-teal-dark); color: #ffffff; }
.related { margin-top: 32px; padding-top: 22px; }
/* when .related sits outside .contentWrapper (live markup), inset its rule to match the content width */
#main-content > .related { margin-left: 56px; margin-right: 56px; }
@media (max-width: 768px) {
  #main-content > .related { margin-left: 20px; margin-right: 20px; }
}
.related ul li { margin-bottom: 10px; }
/* sidebar rhythm */
#sidebar h3 { margin: 26px 0 10px; }
#sidebar .nav-list li { margin-bottom: 2px; }
#sidebar .nav-list a { line-height: 1.5; }
@media (max-width: 768px) {
  .contentWrapper { padding: 24px 20px; }
  .contentWrapper h1, #fullArticle .title { font-size: 27px; }
  .contentWrapper p.descrip { font-size: 16.5px; }
  #fullArticle { font-size: 16px; }
  #fullArticle h2 { font-size: 22px; margin-top: 32px; }
  #fullArticle h3 { font-size: 18.5px; }
}
.contentWrapper h1,
#fullArticle .title,
#fullArticle h1, #fullArticle h2, #fullArticle h4, #fullArticle h5 {
  color: var(--kb-ink);
  font-weight: 700;
}
#fullArticle h3 { color: var(--kb-ink); font-weight: 700; }
.contentWrapper p.descrip { color: var(--kb-muted); }
#fullArticle, #fullArticle p, #fullArticle ul, #fullArticle ol,
#fullArticle li, #fullArticle div, #fullArticle blockquote,
#fullArticle dd, #fullArticle table { color: #1d2b31; }
#fullArticle strong { color: var(--kb-ink); }
#fullArticle a {
  color: var(--kb-teal-deep);
  border-bottom: 1px solid rgba(47, 143, 157, 0.4);
}
#fullArticle a:hover { color: var(--kb-ink); border-bottom-color: var(--kb-ink); }
#fullArticle > ul li::before { color: var(--kb-teal); }
#fullArticle .index-list {
  background: rgba(47, 143, 157, 0.08);
  border-top: 3px solid var(--kb-teal);
  border-radius: 0 0 8px 8px;
}
#fullArticle .index-list h4 { font-family: var(--kb-font); color: var(--kb-ink); font-weight: 700; }
#fullArticle .index-list ul li a { color: var(--kb-teal-deep); }
#fullArticle .callout {
  background: rgba(47, 143, 157, 0.08);
  border-top: 4px solid var(--kb-teal);
  border-color: var(--kb-teal);
  border-radius: 0 0 8px 8px;
}
#fullArticle .callout h3 { font-family: var(--kb-font); color: var(--kb-ink); }
#fullArticle .callout a { color: var(--kb-teal-deep); }
/* callout variants recolored to the palette (override KC-Settings' blue/green/yellow/red) */
#fullArticle .callout-blue,
#fullArticle .callout-green,
#fullArticle .callout-red,
#fullArticle .callout-yellow,
#fullArticle .private-note {
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
}
#fullArticle .callout-blue {
  background: rgba(47, 143, 157, 0.09);
  border-left: 4px solid var(--kb-teal);
}
#fullArticle .callout-green {
  background: rgba(122, 156, 108, 0.14);
  border-left: 4px solid #6d8a5e;
}
#fullArticle .callout-yellow {
  background: rgba(196, 146, 58, 0.13);
  border-left: 4px solid #c4923a;
}
#fullArticle .callout-red,
#fullArticle .private-note {
  background: rgba(178, 82, 66, 0.11);
  border-left: 4px solid #b25242;
}
#fullArticle .callout-blue a,
#fullArticle .callout-green a,
#fullArticle .callout-yellow a,
#fullArticle .callout-red a { color: var(--kb-teal-deep); }
#fullArticle .callout-blue strong,
#fullArticle .callout-green strong,
#fullArticle .callout-yellow strong,
#fullArticle .callout-red strong { color: var(--kb-ink); }
#fullArticle table th { background-color: var(--kb-cream); border-color: var(--kb-border); color: var(--kb-ink); }
#fullArticle table td { border-color: var(--kb-border); }
.articleFoot p, .articleFoot time {
  font-family: var(--kb-font);
  color: var(--kb-faint);
}

/* ---------- "Did this answer your question?" panel ----------
   Widget layout, buttons and icons are Help Scout's out-of-the-box ones;
   the theme only restyles the panel surface and the question text. */
.articleRatings {
  background: rgba(47, 143, 157, 0.08);
  border-top: 3px solid var(--kb-teal);
  border-radius: 0 0 8px 8px;
  padding: 20px 24px;
  margin-top: 32px;
  /* the question can be a bare text node, so type styles go on the container */
  font-family: var(--kb-font);
  font-weight: 700;
  font-size: 19px;
  color: var(--kb-ink);
}
.articleRatings p,
.articleRatings .ratingText {
  font-family: var(--kb-font);
  font-weight: 700;
  font-size: 19px;
  color: var(--kb-ink);
}

/* collection/article layout: sidebar flipped to the right */
#contentArea .row-fluid {
  display: flex;
  flex-direction: row !important; /* KC-Settings uses row-reverse (sidebar left) — undo it */
  gap: 40px;
  align-items: flex-start;
}
#contentArea .row-fluid #main-content { order: 1; flex: 1 1 auto; min-width: 0; width: auto; }
#contentArea .row-fluid #sidebar { order: 2; flex: 0 0 280px; width: 280px; margin: 0; }
@media (max-width: 768px) {
  #contentArea .row-fluid { display: flex; flex-direction: column !important; }
  #contentArea .row-fluid #sidebar { width: auto; }
}
/* the homepage search hint doesn't belong on the small sidebar search */
#searchBar.sm::after { content: none; }

/* ---------- sidebar ---------- */
#sidebar h3 {
  font-family: var(--kb-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kb-teal);
}
#sidebar .nav-list a {
  color: var(--kb-muted);
  display: inline-block;
  border-bottom: 1px solid rgba(47, 143, 157, 0.4);
  transition: color 0.15s, border-color 0.15s;
}
#sidebar .nav-list a:hover { color: var(--kb-teal-deep); border-bottom-color: var(--kb-teal-deep); }
#sidebar .nav-list li.active a,
#sidebar .nav-list li.active a:hover { color: var(--kb-ink); }
#sidebar form .search-query {
  background: var(--kb-card);
  border: 1px solid var(--kb-border);
  border-radius: 8px;
  font-family: var(--kb-font);
}
#sidebar form .search-query:focus { border-color: var(--kb-teal); }
#sidebar form .icon-search { background: var(--kb-faint); }
#sidebar form button:hover .icon-search { background: var(--kb-teal); }

/* ---------- related + article lists ---------- */
.related { border-top: 1px solid var(--kb-border); }
.related h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kb-teal);
}
.related ul li a, .articleList a, .collection a { color: var(--kb-teal-deep); }
.related ul li a {
  border-bottom: 1px solid rgba(47, 143, 157, 0.4);
  transition: color 0.15s, border-color 0.15s;
}
.related ul li a:hover, .articleList a:hover {
  color: var(--kb-ink);
  border-bottom: 1px solid var(--kb-ink);
}
.articleList { border-top: 1px solid var(--kb-border); }
#categoryHead .sort select {
  background-color: var(--kb-card);
  border: 1px solid var(--kb-border);
  border-radius: 8px;
  font-family: var(--kb-font);
  color: var(--kb-ink);
}

/* ---------- buttons ---------- */
.btn, .btn:link, .btn:active {
  background-color: var(--kb-teal);
  border: none;
  border-radius: 8px;
  font-family: var(--kb-font);
  font-weight: 700;
  text-shadow: none;
}
.btn:hover { background-color: var(--kb-teal-dark); border: none; border-radius: 8px; }

/* ---------- footer ---------- */
/* footer tight under the content — kill the tall gap evolution.css leaves */
#contentArea { padding-bottom: 0 !important; margin-bottom: 0 !important; }
footer {
  display: block;
  margin: 0 auto !important;
  max-width: var(--container-width, 1140px);
  padding: 12px 0 24px;
}
footer::before { display: none; }
/* inside the homepage's flex column, auto side-margins shrink-wrap and centre
   the footer box — force it full-width so the left-aligned text actually sits left */
#contentArea > footer {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  align-self: stretch;
}
/* "Powered by Help Scout" removed: hide the stock line, reprint the copyright */
footer p { display: none; }

/* ---------- header menu: only Home, Contact Us and Status ---------- */
.navbar .nav li { display: none !important; }
.navbar .nav li:has(> a[href="/"]),
.navbar .nav li:has(> a[href$="help.kingborough.tas.gov.au"]),
.navbar .nav li:has(> a[href$="help.kingborough.tas.gov.au/"]),
.navbar .nav li:has(> a[href*="collection/230-"]),
.navbar .nav li:has(> a[href*="collection/243-"]) {
  display: block !important;
}
footer::after {
  content: "© Kingborough Council 2026";
  display: block;
  text-align: left; /* aligns with the content panel's left edge */
  color: var(--kb-faint);
  font-family: var(--kb-font);
  font-size: 13px;
}

/* ---------- mobile responsiveness ---------- */
@media (max-width: 768px) {
  /* nav gutters: brand and hamburger sit 16px from the screen edge */
  .navbar .navbar-inner { padding-left: 16px; padding-right: 16px; }
  .navbar .btn-navbar { right: 16px; }
  /* container breathing room — KC-Settings zeroes its padding */
  .container-fluid { width: auto; padding: 0 16px; }
  /* hero: tighter, smaller type, full-width search */
  #docsSearch { padding: 36px 24px 40px; }
  #docsSearch h1 { font-size: 34px; }
  #docsSearch h1::before { font-size: 12px; letter-spacing: 0.16em; margin-bottom: 10px; }
  #docsSearch h1::after { width: 120px; height: 3px; margin-top: 14px; }
  #searchBar { gap: 0; }
  #searchBar .search-query {
    flex: 1 1 auto;
    min-height: 48px;
    font-size: 16px;
    border-radius: 8px 0 0 8px;
    border-right: none;
  }
  #searchBar button {
    flex: 0 0 56px;
    width: 56px;
    min-height: 48px;
    padding: 0;
    border-radius: 0 8px 8px 0;
  }
  #searchBar::after { font-size: 13px; margin-top: 10px; }
  /* hero rings scaled down so they don't dominate small screens */
  #docsSearch {
    background:
      radial-gradient(circle at calc(100% - 60px) -40px, transparent 119px, rgba(47, 143, 157, 0.5) 120px 128px, transparent 129px),
      radial-gradient(circle at calc(100% - 60px) -40px, transparent 239px, rgba(47, 143, 157, 0.32) 240px 248px, transparent 249px),
      radial-gradient(circle at calc(100% - 60px) -40px, transparent 379px, rgba(47, 143, 157, 0.18) 380px 388px, transparent 389px),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 13px),
      var(--kb-ink);
  }
  /* collections */
  .collection-category h2 { font-size: 26px; }
  .category-list .category { padding: 48px 18px 18px; }
  /* uniform vertical gap between stacked cards — including Get Help's two-col pair */
  .category-list .category,
  .category-list.two-col .category { margin-bottom: 12px !important; }
  .category-list.two-col { gap: 0 12px; }
  .category-list .category::before { top: 22px; left: 18px; }
  .category-list .category h3 { font-size: 18px; }
  /* article pages: content card with comfortable padding */
  #main-content { border-radius: 8px; }
  .contentWrapper { padding-left: 16px; padding-right: 16px; }
  /* ratings panel */
  .articleRatings { padding: 16px; }
  /* tap targets */
  #sidebar .nav-list a, .related ul li a, .articleList a { display: inline-block; padding: 6px 0; }
}
@media (max-width: 480px) {
  #docsSearch h1 { font-size: 28px; }
  .collection-category h2 { font-size: 23px; }
  /* cards go single column */
  .collection-category .category-list { display: block; }
  .category-list .category { width: auto; margin-bottom: 12px; }
  .category-list.two-col { grid-template-columns: 1fr; }
}
