@charset "UTF-8";

/***** Normalize.css *****/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/***** Base *****/

* {
  box-sizing: border-box;
}

body {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(5, 28, 44, 1);
  font-family: 'Lucida Grande', 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lucida Grande', 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

a {
  color: rgba(226, 27, 121, 1);
  text-decoration: none;
}

a:visited {
  color: rgba(226, 27, 121, 1);
}

a:hover,
a:active,
a:focus {
  text-decoration: underline;
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
}

input:not([type=checkbox]) {
  outline: none;
}

input:not([type=checkbox]):focus {
  border: 1px solid rgba(226, 27, 121, 1);
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid rgba(226, 27, 121, 1);
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #87929D;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid rgba(226, 27, 121, 1);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .error-page {
    padding: 0;
    width: 90%;
  }
}

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/***** Buttons *****/

.button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link,
.subscriptions-subscribe button,
.requests-table-toolbar .organization-subscribe button,
.community-follow button,
.article-subscribe button,
.section-subscribe button,
.split-button button {
  background-color: transparent;
  border: 1px solid rgba(226, 27, 121, 1);
  border-radius: 4px;
  color: rgba(226, 27, 121, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, color 0.15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button,
  .pagination-next-link,
  .pagination-prev-link,
  .pagination-first-link,
  .pagination-last-link,
  .subscriptions-subscribe button,
  .requests-table-toolbar .organization-subscribe button,
  .community-follow button,
  .article-subscribe button,
  .section-subscribe button,
  .split-button button {
    width: auto;
  }
}

.button:visited,
.pagination-next-link:visited,
.pagination-prev-link:visited,
.pagination-first-link:visited,
.pagination-last-link:visited,
.subscriptions-subscribe button:visited,
.requests-table-toolbar .organization-subscribe button:visited,
.community-follow button:visited,
.article-subscribe button:visited,
.section-subscribe button:visited,
.split-button button:visited {
  color: rgba(226, 27, 121, 1);
}

.button:hover,
.pagination-next-link:hover,
.pagination-prev-link:hover,
.pagination-first-link:hover,
.pagination-last-link:hover,
.subscriptions-subscribe button:hover,
.requests-table-toolbar .organization-subscribe button:hover,
.community-follow button:hover,
.article-subscribe button:hover,
.section-subscribe button:hover,
.split-button button:hover,
.button:active,
.pagination-next-link:active,
.pagination-prev-link:active,
.pagination-first-link:active,
.pagination-last-link:active,
.subscriptions-subscribe button:active,
.requests-table-toolbar .organization-subscribe button:active,
.community-follow button:active,
.article-subscribe button:active,
.section-subscribe button:active,
.split-button button:active,
.button:focus,
.pagination-next-link:focus,
.pagination-prev-link:focus,
.pagination-first-link:focus,
.pagination-last-link:focus,
.subscriptions-subscribe button:focus,
.requests-table-toolbar .organization-subscribe button:focus,
.community-follow button:focus,
.article-subscribe button:focus,
.section-subscribe button:focus,
.split-button button:focus,
.button.button-primary,
.button-primary.pagination-next-link,
.button-primary.pagination-prev-link,
.button-primary.pagination-first-link,
.button-primary.pagination-last-link,
.subscriptions-subscribe button.button-primary,
.subscriptions-subscribe button[data-selected=true],
.requests-table-toolbar .organization-subscribe button.button-primary,
.requests-table-toolbar .organization-subscribe button[data-selected=true],
.community-follow button.button-primary,
.article-subscribe button.button-primary,
.article-subscribe button[data-selected=true],
.section-subscribe button.button-primary,
.section-subscribe button[data-selected=true],
.split-button button.button-primary {
  background-color: rgba(226, 27, 121, 1);
  color: rgba(5, 28, 44, 1);
  text-decoration: none;
}

.button.button-primary:hover,
.button-primary.pagination-next-link:hover,
.button-primary.pagination-prev-link:hover,
.button-primary.pagination-first-link:hover,
.button-primary.pagination-last-link:hover,
.subscriptions-subscribe button.button-primary:hover,
.subscriptions-subscribe button[data-selected=true]:hover,
.requests-table-toolbar .organization-subscribe button.button-primary:hover,
.requests-table-toolbar .organization-subscribe button[data-selected=true]:hover,
.community-follow button.button-primary:hover,
.article-subscribe button.button-primary:hover,
.article-subscribe button[data-selected=true]:hover,
.section-subscribe button.button-primary:hover,
.section-subscribe button[data-selected=true]:hover,
.split-button button:hover,
.button.button-primary:focus,
.button-primary.pagination-next-link:focus,
.button-primary.pagination-prev-link:focus,
.button-primary.pagination-first-link:focus,
.button-primary.pagination-last-link:focus,
.subscriptions-subscribe button.button-primary:focus,
.subscriptions-subscribe button[data-selected=true]:focus,
.requests-table-toolbar .organization-subscribe button.button-primary:focus,
.requests-table-toolbar .organization-subscribe button[data-selected=true]:focus,
.community-follow button.button-primary:focus,
.article-subscribe button.button-primary:focus,
.article-subscribe button[data-selected=true]:focus,
.section-subscribe button.button-primary:focus,
.section-subscribe button[data-selected=true]:focus,
.split-button button.button-primary:focus,
.button.button-primary:active,
.button-primary.pagination-next-link:active,
.button-primary.pagination-prev-link:active,
.button-primary.pagination-first-link:active,
.button-primary.pagination-last-link:active,
.subscriptions-subscribe button.button-primary:active,
.subscriptions-subscribe button[data-selected=true]:active,
.requests-table-toolbar .organization-subscribe button.button-primary:active,
.requests-table-toolbar .organization-subscribe button[data-selected=true]:active,
.community-follow button.button-primary:active,
.article-subscribe button.button-primary:active,
.article-subscribe button[data-selected=true]:active,
.section-subscribe button.button-primary:active,
.section-subscribe button[data-selected=true]:active,
.split-button button.button-primary:active {
  background-color: #871048;
  border-color: #871048;
}

.button[data-disabled],
[data-disabled].pagination-next-link,
[data-disabled].pagination-prev-link,
[data-disabled].pagination-first-link,
[data-disabled].pagination-last-link,
.subscriptions-subscribe button[data-disabled],
.requests-table-toolbar .organization-subscribe button[data-disabled],
.community-follow button[data-disabled],
.article-subscribe button[data-disabled],
.section-subscribe button[data-disabled],
.split-button button[data-disabled] {
  cursor: default;
}

.button-large,
input[type=submit] {
  cursor: pointer;
  background-color: rgba(226, 27, 121, 1);
  border: 0;
  border-radius: 4px;
  color: rgba(5, 28, 44, 1);
  font-size: 14px;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

@media (min-width: 768px) {
  .button-large,
  input[type=submit] {
    width: auto;
  }
}

.button-large:visited,
input[type=submit]:visited {
  color: rgba(5, 28, 44, 1);
}

.button-large:hover,
.button-large:active,
.button-large:focus,
input[type=submit]:hover,
input[type=submit]:active,
input[type=submit]:focus {
  background-color: #871048;
}

.button-large[disabled],
input[type=submit][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #0f5688;
  border: 1px solid #87929D;
  background-color: transparent;
}

.button-secondary:visited {
  color: #0f5688;
}

.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active {
  color: rgba(5, 28, 44, 1);
  border: 1px solid #87929D;
  background-color: #f7f7f7;
}

/***** Split button *****/

.split-button {
  display: flex;
}

.split-button button {
  background-color: rgba(226, 27, 121, 1);
  border: 0;
  color: rgba(5, 28, 44, 1);
  height: 32px;
  line-height: 16px;
  outline-color: rgba(226, 27, 121, 1);
}

[dir=rtl] .split-button button:not(:only-child):first-child {
  border-left: 1px solid rgba(5, 28, 44, 1);
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

[dir=ltr] .split-button button:not(:only-child):first-child {
  border-right: 1px solid rgba(5, 28, 44, 1);
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

.split-button button:not(:only-child):last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  padding: 0;
}

[dir=rtl] .split-button button:not(:only-child):last-child {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

[dir=ltr] .split-button button:not(:only-child):last-child {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

/***** Tables *****/

.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}

.table th,
.table th a {
  color: #0f5688;
  font-size: 13px;
  text-align: left;
}

[dir=rtl] .table th,
[dir=rtl] .table th a {
  text-align: right;
}

.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

.table td {
  display: block;
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td,
  .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .table td,
  .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/

.form {
  max-width: 650px;
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-field input {
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid rgba(226, 27, 121, 1);
}

.form-field input[type=text] {
  border: 1px solid #87929D;
  border-radius: 4px;
}

.form-field input[type=text]:focus {
  border: 1px solid rgba(226, 27, 121, 1);
}

.form-field input[type=checkbox] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  border: 1px solid #87929D;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid rgba(226, 27, 121, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle {
  border: 1px solid #87929D;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(226, 27, 121, 1);
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

.form-field input[type=checkbox] + label {
  margin: 0 0 0 10px;
}

.form-field .optional {
  color: #0f5688;
  margin-left: 4px;
}

.form-field p {
  color: #0f5688;
  font-size: 12px;
  margin: 5px 0;
}

.form footer {
  margin-top: 40px;
  padding-top: 30px;
}

.form footer a {
  color: #0f5688;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: rgba(226, 27, 121, 1);
}

/***** Header *****/

.skip-navigation {
  display: flex;
  align-items: center;
  background-color: black;
  color: white;
  font-size: 14px;
  justify-content: center;
  left: -999px;
  margin: 20px;
  padding: 20px;
  overflow: hidden;
  position: absolute;
  top: auto;
  z-index: -999;
}

.header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .header {
    padding: 0 28px;
    max-width: var(--maxw);
    margin: 0 auto;
  }
}

.logo img {
  max-height: 37px;
  vertical-align: middle;
}

.logo span {
  margin: 0 10px 0 4px;
  color: rgba(226, 27, 121, 1);
}

.logo a {
  display: inline-block;
}

.logo a:hover,
.logo a:focus,
.logo a:active {
  text-decoration: none;
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}

.user-nav[aria-expanded=true] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded=true] > a {
  display: block;
  margin: 20px;
}

.user-nav[aria-expanded=true] > .user-nav-list li {
  display: block;
}

.user-nav[aria-expanded=true] > .user-nav-list a {
  display: block;
  margin: 20px;
}

.user-nav-list {
  display: block;
  list-style: none;
}

.user-nav-list > li {
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-wrapper-desktop {
    display: inline-block;
  }
}

.nav-wrapper-desktop a {
  border: 0;
  color: rgba(226, 27, 121, 1);
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper-desktop a {
    display: inline-block;
  }
}

[dir=rtl] .nav-wrapper-desktop a {
  padding: 0 0 0 20px;
}

.nav-wrapper-desktop a:hover,
.nav-wrapper-desktop a:focus,
.nav-wrapper-desktop a:active {
  background-color: transparent;
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .nav-wrapper-mobile {
    display: none;
  }
}

.nav-wrapper-mobile .menu-button-mobile {
  background: none;
  border: 0;
  width: auto;
  min-width: 71px;
  cursor: pointer;
}

.nav-wrapper-mobile .menu-button-mobile .icon-menu {
  padding: 7px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.nav-wrapper-mobile .menu-button-mobile[aria-expanded=true] .icon-menu {
  background: #f3f3f3;
}

.nav-wrapper-mobile .menu-list-mobile {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 2;
}

.nav-wrapper-mobile .menu-list-mobile[aria-expanded=false] {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile[aria-expanded=true] {
  display: block;
}

.nav-wrapper-mobile .menu-list-mobile-items .item {
  margin: 4px 0;
}

.nav-wrapper-mobile .menu-list-mobile-items li:empty:not(.nav-divider) {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile-items .nav-divider {
  border-bottom: 0.1px solid #ddd;
  padding: 0;
}

.nav-wrapper-mobile .menu-list-mobile-items .nav-divider:last-child {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile-items button {
  background: none;
  border: none;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(5, 28, 44, 1);
  cursor: pointer;
  text-align: start;
}

.nav-wrapper-mobile .menu-list-mobile-items button:active,
.nav-wrapper-mobile .menu-list-mobile-items button:focus,
.nav-wrapper-mobile .menu-list-mobile-items button:hover {
  background-color: #f3f3f3;
  text-decoration: underline;
}

.nav-wrapper-mobile .menu-list-mobile-items a {
  display: block;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(5, 28, 44, 1);
}

.nav-wrapper-mobile .menu-list-mobile-items a:active,
.nav-wrapper-mobile .menu-list-mobile-items a:focus,
.nav-wrapper-mobile .menu-list-mobile-items a:hover {
  background-color: #f3f3f3;
}

.nav-wrapper-mobile .menu-list-mobile-items .my-profile {
  display: flex;
  line-height: 1.5;
}

.nav-wrapper-mobile .menu-list-mobile-items .my-profile .my-profile-tooltip {
  font-size: 12px;
  color: #68737D;
}

.nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-top: 1px;
}

[dir=rtl] .nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  margin-right: 0;
  margin-left: 8px;
}

[dir=rtl] .skip-navigation {
  left: initial;
  right: -999px;
}

.skip-navigation:focus,
.skip-navigation:active {
  left: auto;
  overflow: auto;
  text-align: center;
  text-decoration: none;
  top: auto;
  z-index: 999;
}

[dir=rtl] .skip-navigation:focus,
[dir=rtl] .skip-navigation:active {
  left: initial;
  right: auto;
}

#zd-modal-container ~ .skip-navigation {
  display: none;
}

/***** User info in header *****/

.user-info {
  display: inline-block;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > button {
  border: 0;
  color: rgba(226, 27, 121, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > button:hover,
.user-info > button:focus {
  color: rgba(226, 27, 121, 1);
  background-color: transparent;
}

.user-info > button::after {
  color: rgba(226, 27, 121, 1);
  padding-right: 15px;
}

[dir=rtl] .user-info > button::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/

.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent {
  color: rgba(226, 27, 121, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: rgba(5, 28, 44, 1);
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/***** Footer *****/

.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
}

.footer a {
  color: #0f5688;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}

.footer-language-selector button {
  color: #0f5688;
  display: inline-block;
}

.powered-by-zendesk a,
.powered-by-zendesk a:visited {
  color: #0f5688;
}

/***** Breadcrumbs *****/

.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}

.breadcrumbs li {
  color: #0f5688;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a:visited {
  color: rgba(226, 27, 121, 1);
}

/***** Search field *****/

.search-container {
  position: relative;
}

.search {
  border-color: #87929D;
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  position: relative;
  transition: border 0.12s ease-in-out;
}

.search:focus-within {
  border-color: rgba(226, 27, 121, 1);
}

.search input[type=search],
.search .clear-button {
  background-color: #fff;
  border-radius: 30px;
  border: none;
}

.search-full input[type=search],
.search-full .clear-button {
  border-color: #fff;
}

.search input[type=search] {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  color: #666;
  flex: 1 1 auto;
  height: 40px;
  width: 100%;
}

.search input[type=search]:focus {
  color: #555;
}

.search input[type=search]::-webkit-search-decoration,
.search input[type=search]::-webkit-search-cancel-button,
.search input[type=search]::-webkit-search-results-button,
.search input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search input[type=search]:-webkit-autofill,
.search input[type=search]:-webkit-autofill:hover,
.search input[type=search]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.search .clear-button {
  align-items: center;
  box-sizing: border-box;
  color: #777;
  cursor: pointer;
  display: none;
  flex: none;
  justify-content: center;
  padding: 0 15px;
}

.search .clear-button:hover {
  background-color: rgba(226, 27, 121, 1);
  color: #fff;
}

.search .clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(226, 27, 121, 1);
}

.search-has-value .clear-button {
  display: flex;
}

[dir=ltr] .search input[type=search] {
  padding-left: 40px;
  padding-right: 20px;
}

[dir=ltr] .search-has-value input[type=search] {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}

[dir=ltr] .search-has-value input[type=search]:focus {
  border-right-color: rgba(226, 27, 121, 1);
}

[dir=ltr] .search .clear-button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}

[dir=ltr] .search .clear-button:focus {
  border-left-color: rgba(226, 27, 121, 1);
}

[dir=rtl] .search input[type=search] {
  padding-left: 20px;
  padding-right: 40px;
}

[dir=rtl] .search-has-value input[type=search] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}

[dir=rtl] .search-has-value input[type=search]:focus {
  border-left-color: rgba(226, 27, 121, 1);
}

[dir=rtl] .search .clear-button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}

[dir=rtl] .search .clear-button:focus {
  border-right-color: rgba(226, 27, 121, 1);
}

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #777;
  pointer-events: none;
}

[dir=rtl] .search-icon {
  left: auto;
  right: 15px;
}

/***** Hero component *****/

.hero {
  background-image: url(/hc/theming_assets/01K7ZT6N85FW3YQK4AB76ZZDV2);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}

.page-header-description {
  font-style: italic;
  margin: 0 0 30px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin-bottom: 55px;
}

@media (min-width: 768px) {
  .sub-nav {
    flex-direction: row;
  }
}

.sub-nav .breadcrumbs {
  margin: 0;
}

.sub-nav .search-container {
  max-width: 300px;
  width: 100%;
}

@media (min-width: 768px) {
  .sub-nav .search-container {
    flex: 0 1 300px;
  }
}

.sub-nav input[type=search]::after {
  font-size: 15px;
}

/***** Blocks *****/

/* Used in Homepage#categories and Community#topics */

.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}

.blocks-item {
  border: 1px solid rgba(226, 27, 121, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(226, 27, 121, 1);
  display: flex;
  flex: 1 0 340px;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 15px 30px;
  }
}

.blocks-item:hover,
.blocks-item:focus,
.blocks-item:active {
  background-color: rgba(226, 27, 121, 1);
}

.blocks-item:hover *,
.blocks-item:focus *,
.blocks-item:active * {
  color: rgba(5, 28, 44, 1);
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: rgba(5, 28, 44, 1);
}

.blocks-item-link {
  color: rgba(226, 27, 121, 1);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}

.blocks-item-link:visited,
.blocks-item-link:hover,
.blocks-item-link:active {
  color: inherit;
  text-decoration: none;
}

.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(226, 27, 121, 1);
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
}

.blocks-item-description {
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Homepage *****/

.section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
}

.home-section h2 {
  margin-bottom: 10px;
  text-align: center;
}

/***** Promoted articles *****/

.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
}

.promoted-articles-item {
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%;
    /* Three columns on desktop */;
  }

  [dir=rtl] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}

.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.promoted-articles-item .icon-lock {
  vertical-align: baseline;
}

.promoted-articles-item:last-child a {
  border: 0;
}

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid #ddd;
  }
}

/***** Community section in homepage *****/

.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  margin-top: 32px;
  background-image: url(/hc/theming_assets/01K05328PKSWTA5QRGDTEGMF68);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community a {
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

.community a:visited {
  color: rgba(226, 27, 121, 1);
}

.community a:hover,
.community a:active,
.community a:focus {
  color: rgba(226, 27, 121, 1);
}

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

/***** Recent activity *****/

.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item h3 {
  margin: 0;
}

.recent-activity-item-parent {
  font-size: 16px;
  font-weight: 600;
}

.recent-activity-item-parent,
.recent-activity-item-link {
  margin: 6px 0;
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent,
  .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-activity-item-meta {
  color: rgba(5, 28, 44, 1);
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }

  [dir=rtl] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time,
.recent-activity-item-comment {
  display: inline-block;
  font-size: 13px;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir=rtl] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-controls {
  padding-top: 15px;
}

.recent-activity-controls a {
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

.recent-activity-controls a:visited {
  color: rgba(226, 27, 121, 1);
}

.recent-activity-controls a:hover,
.recent-activity-controls a:active,
.recent-activity-controls a:focus {
  color: rgba(226, 27, 121, 1);
}

.recent-activity-accessibility-label {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.recent-activity-comment-icon svg {
  vertical-align: middle;
  color: rgba(226, 27, 121, 1);
  width: 16px;
  height: 16px;
}

.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
  margin-left: 3px;
}

[dir=rtl] .recent-activity-comment-icon:after {
  margin-left: 0;
  margin-right: 3px;
}

/***** Category pages *****/

.category-container {
  display: flex;
  justify-content: flex-end;
}

.category-content {
  flex: 1;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 80%;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  flex: initial;
  max-width: 100%;
}

@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 45%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */;
  }
}

.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.section-tree-title a {
  color: rgba(5, 28, 44, 1);
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
  text-overflow: ellipsis;
  overflow: hidden;
}

.article-list-item a {
  color: rgba(5, 28, 44, 1);
}

.icon-star {
  color: rgba(226, 27, 121, 1);
  font-size: 18px;
}

/***** Section pages *****/

.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

.section-list {
  margin: 40px 0;
}

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: rgba(5, 28, 44, 1);
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden=true] {
  display: none;
}

/***** Article *****/

.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 66%;
    min-width: 640px;
    padding: 0 30px;
  }
}

.article-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}

.article-avatar {
  margin-right: 10px;
}

.article-author {
  margin-bottom: 10px;
}

.article-title {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    /* Take entire row */;
  }
}

.article-title .icon-lock {
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.article [role=button] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 768px) {
  .article [role=button] {
    width: auto;
  }
}

.article-info {
  max-width: 100%;
}

.article-meta {
  display: inline-block;
  vertical-align: middle;
}

.article-body {
  display: flow-root;
}

.article-body a {
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

.article-body a:visited {
  color: rgba(226, 27, 121, 1);
}

.article-body a:hover,
.article-body a:active,
.article-body a:focus {
  color: rgba(226, 27, 121, 1);
}

.article-body img {
  height: auto;
  max-width: 100%;
}

.article-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}

.article-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}

.article-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}

.article-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

.article-body figure.image {
  display: table;
  margin: 0 auto;
}

.article-body figure.image > img {
  display: block;
  width: 100%;
}

.article-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}

.article-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}

.article-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}

.article-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

.article-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}

.article-body ul,
.article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir=rtl] .article-body ul,
[dir=rtl] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.article-body ul > ul,
.article-body ol > ol,
.article-body ol > ul,
.article-body ul > ol,
.article-body li > ul,
.article-body li > ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #0f5688;
  font-style: italic;
  padding: 0 15px;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}

.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.article-comment-count {
  color: #0f5688;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(226, 27, 121, 1);
  width: 18px;
  height: 18px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
    max-width: 17%;
  }
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}

.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}

.article-relatives > *:last-child {
  padding: 0;
}

@media (min-width: 768px) {
  .article-relatives > * {
    padding-right: 20px;
  }
}

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}

.article-votes-question {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0;
}

.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.article-more-questions a {
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

.article-more-questions a:visited {
  color: rgba(226, 27, 121, 1);
}

.article-more-questions a:hover,
.article-more-questions a:active,
.article-more-questions a:focus {
  color: rgba(226, 27, 121, 1);
}

.article-return-to-top {
  border-top: 1px solid #87929D;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: rgba(5, 28, 44, 1);
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover,
.article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top-icon {
  transform: rotate(0.5turn);
}

.article td > p:first-child,
.article th > p:first-child {
  margin-top: 0;
}

.article td > p:last-child,
.article th > p:last-child {
  margin-bottom: 0;
}

.sidenav-title {
  font-size: 15px;
  position: relative;
  font-weight: 600;
}

.sidenav-item {
  display: block;
  margin-top: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

/***** Attachments *****/

/* Styles attachments inside posts, articles and comments */

.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item .attachment-icon {
  color: rgba(5, 28, 44, 1);
  left: 0;
  position: absolute;
  top: 5px;
}

[dir=rtl] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir=rtl] .attachments .attachment-item .attachment-icon {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #0f5688;
}

/***** Social share links *****/

.share {
  padding: 0;
  white-space: nowrap;
}

.share li,
.share a {
  display: inline-block;
}

.share li {
  height: 25px;
  width: 25px;
}

.share a {
  color: #0f5688;
}

.share a:hover {
  text-decoration: none;
  color: rgba(226, 27, 121, 1);
}

.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

/***** Comments *****/

/* Styles comments inside articles, posts and requests */

.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading,
.recent-articles-title,
.related-articles-title {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #0f5688;
  display: inline-block;
  font-size: 13px;
  margin: 14px 0 0;
}

.comment-callout a {
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

.comment-callout a:visited {
  color: rgba(226, 27, 121, 1);
}

.comment-callout a:hover,
.comment-callout a:active,
.comment-callout a:focus {
  color: rgba(226, 27, 121, 1);
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter .dropdown-toggle {
  color: #0f5688;
  font-size: 13px;
}

[dir=rtl] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid rgba(226, 27, 121, 1);
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir=rtl] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir=rtl] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 1 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir=ltr] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type=submit] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type=submit] {
    margin-left: 15px;
  }

  [dir=rtl] .comment-form-controls input[type=submit] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type=checkbox] {
  margin-right: 5px;
}

.comment-form-controls input[type=checkbox] [dir=rtl] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: rgba(226, 27, 121, 1);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flow-root;
  font-family: 'Lucida Grande', 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

.comment-body a {
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

.comment-body a:visited {
  color: rgba(226, 27, 121, 1);
}

.comment-body a:hover,
.comment-body a:active,
.comment-body a:focus {
  color: rgba(226, 27, 121, 1);
}

.comment-body img {
  height: auto;
  max-width: 100%;
}

.comment-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}

.comment-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}

.comment-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}

.comment-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

.comment-body figure.image {
  display: table;
  margin: 0 auto;
}

.comment-body figure.image > img {
  display: block;
  width: 100%;
}

.comment-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}

.comment-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}

.comment-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}

.comment-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

.comment-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}

.comment-body ul,
.comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir=rtl] .comment-body ul,
[dir=rtl] .comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.comment-body ul > ul,
.comment-body ol > ol,
.comment-body ol > ul,
.comment-body ul > ol,
.comment-body li > ul,
.comment-body li > ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #0f5688;
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/

/* Used in article comments, post comments and post */

.vote {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.vote a:active,
.vote a:hover,
.vote a:focus {
  text-decoration: none;
}

.vote-sum {
  color: #0f5688;
  display: block;
  margin: 3px 0;
}

[dir=rtl] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up svg {
  transform: scale(1, -1);
}

.vote-up:hover,
.vote-down:hover {
  color: rgba(226, 27, 121, 1);
}

.vote-up,
.vote-down {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: #0f5688;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-voted {
  color: rgba(226, 27, 121, 1);
}

.vote-voted:hover {
  color: #871048;
}

/***** Actions *****/

/* Styles admin and en user actions(edit, delete, change status) in comments and posts */

.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/;
}

.actions button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** Community *****/

.community-hero {
  background-image: url(/hc/theming_assets/01K05328ADPR05XS7QTFC88ABR);
  margin-bottom: 10px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-footer-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.community-featured-posts .title {
  font-size: 18px;
  font-weight: 600;
}

.community-featured-posts,
.community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 30px;
}

.community-header .title {
  margin-bottom: 0;
  font-size: 16px;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */

.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */

.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */

.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow button {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow button {
    width: auto;
  }
}

.community-follow button:hover {
  background-color: rgba(226, 27, 121, 1);
}

.community-follow button:hover::after,
.community-follow button:focus::after {
  border-color: rgba(5, 28, 44, 1);
  color: rgba(5, 28, 44, 1);
}

.community-follow button[data-selected=true] {
  background-color: rgba(226, 27, 121, 1);
  color: rgba(5, 28, 44, 1);
}

.community-follow button[data-selected=true]::after {
  border-left: 1px solid rgba(5, 28, 44, 1);
  color: rgba(5, 28, 44, 1);
}

.community-follow button[data-selected=true]:hover {
  background-color: #871048;
  border-color: #871048;
}

.community-follow button::after {
  border-left: 1px solid rgba(226, 27, 121, 1);
  content: attr(data-follower-count);
  color: rgba(226, 27, 121, 1);
  display: inline-block;
  font-family: 'Lucida Grande', 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow button::after {
    position: static;
  }
}

[dir=rtl] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid rgba(226, 27, 121, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/

/* Used in community posts list and requests list */

.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: rgba(226, 27, 121, 1);
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover,
.striped-list-title:focus,
.striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: rgba(226, 27, 121, 1);
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: #0f5688;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(5, 28, 44, 1);
    display: block;
  }
}

/***** Status labels *****/

/* Styles labels used in posts, articles and requests */

.status-label {
  background-color: #038153;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label:hover,
.status-label:active,
.status-label:focus {
  text-decoration: none;
}

.status-label-pinned,
.status-label-featured,
.status-label-official {
  background-color: rgba(226, 27, 121, 1);
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir=rtl] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-not-planned,
.status-label-closed {
  background-color: #e9ebed;
  color: #0f5688;
}

.status-label-pending,
.status-label-pending-moderation {
  background-color: #1f73b7;
  text-align: center;
}

.status-label-open {
  background-color: #c72a1c;
}

.status-label-solved {
  background-color: #68737d;
}

.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}

.status-label-hold {
  background-color: #000;
}

.status-label-request {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .status-label-request {
    max-width: 150px;
  }
}

/***** Post *****/

/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/

.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  font-family: 'Lucida Grande', 'Lucida Sans', 'Lucida Sans Unicode', sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: flex;
  margin-bottom: 40px;
}

.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir=rtl] .post-info {
  padding-right: 0;
  padding-left: 20px;
}

.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}

[dir=rtl] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

.post-body {
  display: flow-root;
}

.post-body a {
  color: rgba(226, 27, 121, 1);
  text-decoration: underline;
}

.post-body a:visited {
  color: rgba(226, 27, 121, 1);
}

.post-body a:hover,
.post-body a:active,
.post-body a:focus {
  color: rgba(226, 27, 121, 1);
}

.post-body img {
  height: auto;
  max-width: 100%;
}

.post-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}

.post-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}

.post-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}

.post-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

.post-body figure.image {
  display: table;
  margin: 0 auto;
}

.post-body figure.image > img {
  display: block;
  width: 100%;
}

.post-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}

.post-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}

.post-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}

.post-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

.post-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}

.post-body ul,
.post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir=rtl] .post-body ul,
[dir=rtl] .post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.post-body ul > ul,
.post-body ol > ol,
.post-body ol > ul,
.post-body ul > ol,
.post-body li > ul,
.post-body li > ol {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #0f5688;
  font-style: italic;
  padding: 0 15px;
}

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: #0f5688;
}

.post-comment-count:hover {
  text-decoration: none;
}

.post-comment-count .icon-comments {
  color: rgba(226, 27, 121, 1);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }

  [dir=rtl] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar-title {
  font-size: 18px;
  font-weight: 600;
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/***** Community Badges *****/

/* Styles labels used next to the authors of article comments, community posts, and community comments */

.community-badge-title {
  background-color: #04444d;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 8px;
  vertical-align: top;
  white-space: nowrap;
  display: inline-block;
  line-height: 18px;
  vertical-align: middle;
}

.community-badge-titles {
  display: inline;
}

.community-badge-achievement {
  display: block;
  height: 16px;
  white-space: nowrap;
  width: 16px;
}

.community-badge-achievement img {
  width: 100%;
  height: 100%;
}

.community-badge-achievements {
  display: flex;
}

.community-badge-achievements-rest {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
}

.community-badge {
  margin: 2px;
}

.profile-info .community-badge-title {
  padding: 2px 8px;
  line-height: 20px;
}

.profile-info .community-badge-achievement {
  height: 40px;
  width: 40px;
}

.profile-info .community-badge-achievements-rest {
  line-height: 40px;
  font-size: 20px;
}

/* Navigation element that collapses on mobile */

.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav {
    flex-direction: row;
  }
}

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: 22.5px;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}

[dir=rtl] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}

.collapsible-nav-toggle-icon {
  display: none;
}

.collapsible-nav-toggle[aria-expanded=false] .chevron-icon {
  display: inline-block;
}

.collapsible-nav-toggle[aria-expanded=true] .x-icon {
  display: inline-block;
}

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(226, 27, 121, 1);
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: rgba(5, 28, 44, 1);
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }

  [dir=rtl] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }

  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: rgba(5, 28, 44, 1);
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }

  .collapsible-nav-list li:hover a:not([aria-current=page]) {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li:not([aria-selected=true]),
.collapsible-nav-list li:not(.current) {
  display: none;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:not([aria-selected=true]),
  .collapsible-nav-list li:not(.current) {
    display: block;
  }
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected=true] {
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected=true],
.collapsible-nav-list li.current {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected=true],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid rgba(226, 27, 121, 1);
    order: 1;
  }
}

.collapsible-nav-list li[aria-selected=true] a,
.collapsible-nav-list li.current a {
  color: rgba(5, 28, 44, 1);
}

.collapsible-nav[aria-expanded=true] li:not([aria-selected=true]),
.collapsible-nav[aria-expanded=true] li:not(.current) {
  display: block;
}

/* Sidebar navigation that collapses on mobile */

.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
}

.collapsible-sidebar-toggle {
  position: absolute;
  top: 22.5px;
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-toggle {
    display: none;
  }
}

[dir=rtl] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}

.collapsible-sidebar-toggle-icon {
  display: none;
}

.collapsible-sidebar-toggle[aria-expanded=false] .chevron-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle[aria-expanded=true] .x-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid rgba(226, 27, 121, 1);
}

.collapsible-sidebar-body {
  display: none;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}

.collapsible-sidebar[aria-expanded=true] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded=true] .collapsible-sidebar-body {
  display: block;
}

/***** My activities *****/

.my-activities-nav {
  background-color: #f2f2f2;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  margin-bottom: 30px;
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */

.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }

  [dir=rtl] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe {
    margin-left: 10px;
  }

  [dir=rtl] .requests-table-toolbar .organization-subscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-subscribe button {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */

@media (min-width: 768px) {
  .subscriptions-subscribe button {
    width: auto;
  }
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

.subscriptions-table .user-avatar {
  margin-right: 10px;
}

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */

.contributions-table td:last-child {
  color: #0f5688;
  font-size: 13px;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #0f5688;
}

/***** Request *****/

.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}

.request-container .comment-container {
  min-width: 0;
}

.request-breadcrumbs {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}

.request-main {
  flex: 1 0 auto;
  order: 1;
}

.request-main .comment-fields,
.request-main .request-submit-comment {
  display: none;
}

.request-main .comment-fields.shown {
  display: block;
}

.request-main .request-submit-comment.shown {
  display: inline;
}

@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}

.request-main .comment-form-controls {
  display: block;
}

.request-main .comment-ccs {
  display: block;
}

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  color: #0f5688;
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}

.request-main .comment-show-container.hidden {
  display: none;
}

.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus=true] {
  border: 1px solid rgba(226, 27, 121, 1);
}

.request-main .form-field.comment-ccs > input[type=text] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid rgba(226, 27, 121, 1);
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}

@media (min-width: 1024px) {
  .request-sidebar {
    background-color: #f7f7f7;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
  }
}

.request-sidebar h2 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h2 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt,
.request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\a";
  white-space: pre;
}

.request-details dt {
  color: #0f5688;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt,
.request-attachments dd {
  width: 100%;
}

.request-attachments dd {
  margin: 10px 0 0 0;
}

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}

/***** Pagination *****/

.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination-next,
.pagination-prev,
.pagination-first,
.pagination-last {
  display: inline-block;
}

.pagination-first-link,
.pagination-last-link {
  padding: 0 10px;
}

.pagination-first,
.pagination-last,
.pagination-first-text,
.pagination-last-text {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.pagination-next-link {
  padding-right: 10px;
}

.pagination-next-text {
  margin-right: 10px;
}

[dir=rtl] .pagination-next-link {
  padding-left: 10px;
}

[dir=rtl] .pagination-next-text {
  margin-left: 10px;
}

.pagination-prev-link {
  padding-left: 10px;
}

.pagination-prev-text {
  margin-left: 10px;
}

[dir=rtl] .pagination-prev-link {
  padding-right: 10px;
}

[dir=rtl] .pagination-prev-text {
  margin-right: 10px;
}

/***** Metadata *****/

.meta-group {
  display: block;
}

.meta-group-opposite {
  float: right;
}

[dir=rtl] .meta-group-opposite {
  float: left;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #0f5688;
  font-size: 13px;
}

.meta-data:not(:last-child)::after {
  content: "·";
  margin: 0 5px;
}

/* User Profiles */

.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir=rtl] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 80px;
  height: 80px;
}

.profile-avatar .icon-agent {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
  line-height: 25px;
  vertical-align: middle;
  display: inline;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }

  [dir=rtl] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }

  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }

  [dir=rtl] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.user-profile-actions {
  width: 100%;
  margin-bottom: 15px;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: #0f5688;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir=rtl] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }

  [dir=rtl] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }

  [dir=rtl] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }

  [dir=rtl] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px rgba(226, 27, 121, 1);
  border-radius: 4px;
  color: rgba(226, 27, 121, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: #f2f2f2;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    /*width: calc(100% - 330px);*/;
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #0f5688;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir=rtl] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }

  [dir=rtl] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-badges-items {
  margin-top: 25px;
}

.profile-badges-item {
  border-top: 1px solid #ddd;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 27px 12px;
}

.profile-badges-item > div {
  padding-right: 12px;
  padding-left: 12px;
}

.profile-badges-item-image {
  height: 40px;
  width: 40px;
  margin-right: 12px;
}

.profile-badges-item-image img {
  max-height: 40px;
}

[dir=rtl] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}

.profile-badges-item-title,
.profile-badges-item-metadata-title {
  font-size: 15px;
  margin-bottom: 10px;
}

.profile-badges-item-title {
  font-weight: 600;
}

.profile-badges-item-description,
.profile-badges-item-metadata-description {
  color: #0f5688;
  font-size: 13px;
  margin: 0;
}

.profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
}

[dir=rtl] .profile-badges-item-metadata {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }

  [dir=rtl] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-icon {
  left: 0;
  position: absolute;
  color: #ccc;
  line-height: 25px;
}

[dir=rtl] .profile-contribution-icon {
  right: 0;
}

.profile-contribution-icon svg {
  vertical-align: middle;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir=rtl] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }

  [dir=rtl] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir=rtl] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }

  [dir=rtl] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.private-activity-icon {
  margin-right: 10px;
}

[dir=rtl] .private-activity-icon {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }

  [dir=rtl] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }

  [dir=rtl] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir=rtl] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }

  [dir=rtl] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  margin-right: 10px;
  align-self: flex-start;
}

[dir=rtl] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }

  [dir=rtl] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity-icon {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 1);
  background-position: 50% 50%;
  text-align: center;
  color: #ccc;
}

[dir=rtl] .profile-activity-icon {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity-icon {
    left: -14px;
  }

  [dir=rtl] .profile-activity-icon {
    right: -14px;
  }
}

.profile-activity-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin: auto;
}

/***** Search results *****/

.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 75%;
  }
}

.search-results-sidebar {
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .search-results-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
}

.search-results-sidebar .sidenav-item {
  border-radius: 4px;
  padding: 10px 36px;
  margin-bottom: 4px;
  color: rgba(5, 28, 44, 1);
}

.search-results-sidebar .sidenav-item:hover,
.search-results-sidebar .sidenav-item.current {
  background-color: #e9ebed;
  text-decoration: none;
}

.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}

.search-results-sidebar .sidenav-tag {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-grow: 0;
}

.search-results-sidebar .sidenav-tag .content-tag {
  background: #E9EBED;
  border-radius: 4px;
  padding: 4px 12px;
  text-decoration: none;
}

.search-results-sidebar .sidenav-tag .content-tag .label {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.000427656px;
  color: #49545C;
  flex-grow: 0;
  vertical-align: middle;
  display: inline-block;
}

.search-results-sidebar .sidenav-tag .content-tag .close-icon {
  color: #555555;
  vertical-align: middle;
  display: inline-block;
}

.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}

.search-results-sidebar .collapsible-sidebar[aria-expanded=false] .multibrand-filter-list {
  display: none;
}

@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded=false] .multibrand-filter-list {
    display: block;
  }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n+6) {
  display: none;
}

.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #666;
}

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: rgba(226, 27, 121, 1);
}

.search-results-sidebar .see-all-filters[aria-hidden=true] {
  display: none;
}

.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}

.search-results-sidebar .see-all-filters::after {
  content: " ⌄";
  font-weight: bold;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-results .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}

.search-results .no-results .headline {
  color: #2F3941;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.45px;
}

.search-results .no-results .action-prompt {
  color: #68737D;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
}

.search-results .no-results .action-prompt a {
  color: rgba(226, 27, 121, 1);
}

.search-results .no-results .action-prompt a:visited {
  color: rgba(226, 27, 121, 1);
}

.search-result-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-title {
  font-size: 16px;
  margin-bottom: 0;
}

.search-result-votes,
.search-result-meta-count {
  color: #0f5688;
  font-size: 13px;
}

.search-result-votes-icon,
.search-result-meta-count-icon {
  color: rgba(226, 27, 121, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

[dir=ltr] .search-result-votes,
[dir=ltr] .search-result-meta-count {
  margin-left: 20px;
}

[dir=rtl] .search-result-votes,
[dir=rtl] .search-result-meta-count {
  margin-right: 20px;
}

.search-result-meta-container {
  color: #666;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .search-result-meta-container {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .search-result-meta-container nav {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  [dir=ltr] .search-result-meta-container .meta-data {
    margin-left: 20px;
  }
}

@media (min-width: 1024px) {
  [dir=rtl] .search-result-meta-container .meta-data {
    margin-right: 20px;
  }
}

.search-result-meta-container .meta-data::after {
  content: none;
}

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-description {
  margin-top: 10px;
  margin-bottom: 0;
  word-break: break-word;
}

/* By default use bold instead of italic to highlight */

.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

/* Add a yellow background for Chinese */

html[lang|=zh] .search-results-description em {
  font-style: normal;
  background: yellow;
}

/***** Notifications *****/

.notification {
  border: 1px solid;
  display: table;
  font-family: sans-serif;
  font-size: 12px;
  padding: 13px 15px;
  transition: height 0.2s;
  width: 100%;
  color: #555;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 980px;
}

.notification-icon,
.notification-inline.notification-error::before,
.notification-text,
.notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  padding: 0 15px;
  width: 100%;
}

.notification + .notification {
  margin-bottom: -1px;
  position: relative;
  top: -1px;
}

/* Error */

.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon::before,
.notification-error .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}

/* Notice */

.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon::before,
.notification-notice .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* Alert / Lock */

.notification-alert {
  color: #ad5e18;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon::before,
.notification-alert .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon::before,
.notification-inline.notification-error::before {
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: middle;
}

/* Dismiss button */

.notification-dismiss,
a.notification-dismiss {
  color: #555;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 100ms ease;
  text-decoration: none !important;
}

.notification-dismiss:hover {
  opacity: 1;
}

/* Inline notifications */

.notification-inline {
  border-radius: 4px;
  line-height: 14px;
  margin-top: 5px;
  padding: 5px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

[dir=rtl] .notification-inline {
  text-align: right;
}

.notification-inline[aria-hidden=true] {
  display: none;
}

.notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
  margin: -2px 5px 0 0;
}

[dir=rtl] .notification-inline.notification-error::before {
  margin: 0 0 0 5px;
}

.notification-inline.notification-error {
  background-color: #fff0f1;
  border: 1px solid #e35b66;
  color: #cc3340;
}

.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

.notification-left-aligned {
  text-align: left;
  padding-left: 0;
}

html[dir=rtl] .notification-left-aligned {
  text-align: right;
  padding-left: auto;
  padding-right: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-toggle[aria-expanded=true] + .dropdown-menu {
  display: block;
  z-index: 10;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8dcde;
  border-radius: 3px;
  box-shadow: 0px 20px 30px 0px rgba(23, 73, 77, 0.15);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

[dir=rtl] .dropdown-menu {
  text-align: right;
  left: auto;
  right: 0;
}

.dropdown-menu [role=separator] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}

.dropdown-menu [role=menuitem],
.dropdown-menu [role=menuitemradio] {
  color: #2f3941;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
}

[dir=rtl] .dropdown-menu [role=menuitem],
[dir=rtl] .dropdown-menu [role=menuitemradio] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role=menuitem]:hover,
.dropdown-menu [role=menuitem]:focus,
.dropdown-menu [role=menuitemradio]:hover,
.dropdown-menu [role=menuitemradio]:focus {
  background: rgba(31, 115, 183, 0.08);
  text-decoration: none;
  color: #2f3941;
}

.dropdown-menu [role=menuitem][aria-selected=true],
.dropdown-menu [role=menuitem][aria-checked=true],
.dropdown-menu [role=menuitemradio][aria-selected=true],
.dropdown-menu [role=menuitemradio][aria-checked=true] {
  cursor: default;
}

.dropdown-menu [role=menuitem][aria-selected=true]::after,
.dropdown-menu [role=menuitem][aria-checked=true]::after,
.dropdown-menu [role=menuitemradio][aria-selected=true]::after,
.dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}

[dir=rtl] .dropdown-menu [role=menuitem][aria-selected=true]::after,
[dir=rtl] .dropdown-menu [role=menuitem][aria-checked=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-selected=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}

.dropdown-menu [role=menuitem][hidden],
.dropdown-menu [role=menuitem][aria-hidden=true],
.dropdown-menu [role=menuitemradio][hidden],
.dropdown-menu [role=menuitemradio][aria-hidden=true] {
  display: none !important;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir=rtl] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}

.content-tags > p {
  color: #68737D;
  margin-top: 32px;
  margin-bottom: 4px;
}

.content-tags-add-hint {
  color: #68737D;
  font-size: 14px;
}

.content-tag-list {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
}

.content-tag-list li {
  border-right: 1px solid #C2C8CC;
  margin-bottom: 4px;
}

[dir=ltr] .content-tag-list li {
  padding-right: 8px;
  margin-right: 8px;
}

[dir=rtl] .content-tag-list li {
  padding-left: 8px;
  margin-left: 8px;
}

.content-tag-list li:last-child {
  border: none;
}

/***** WYSIWYG Editor *****/

#hc-wysiwyg {
  border: 1px solid #87929D;
}

/***** Upload Dropzone *****/

.upload-dropzone {
  border: 1px solid #87929D;
}

/***** Summary component *****/

zd-summary-block {
  background: #f3f6f6;
}

[dir=ltr] zd-summary-block {
  border-left-color: #859fa1;
}

[dir=rtl] zd-summary-block {
  border-right-color: #859fa1;
}

:root {
  --indigo: #E21D7A;
  --indigo-deep: #AF2185;
  --indigo-tint: #eef0fe;
  --indigo-tint-2: #f6f6fd;
  --ink: $heading_color;
  --ink-soft: #43435f;
  --slate: $body_text_color;
  --slate-light: #8585a0;
  --lavender: $surface_color;
  --line: #e8e7f3;
  --line-soft: #f0eff8;
  --white: #ffffff;
  --footer: #211d42;
  --teal: #23c3c9;
  --pink: #e0218a;
  --green: #1fa463;
  --green-bg: #e7f6ee;
  --shadow-sm: 0 1px 2px rgba(34,34,63,.04), 0 1px 3px rgba(34,34,63,.06);
  --shadow-md: 0 4px 12px rgba(34,34,63,.06), 0 12px 28px rgba(34,34,63,.07);
  --shadow-lg: 0 18px 50px rgba(79,70,229,.14);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --maxw: 1180px;
}

.sf-main *,
.sf-header *,
.sf-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.sf-main,
.sf-header,
.sf-footer {
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.sf-main h1,
.sf-main h2,
.sf-main h3,
.sf-main h4 {
  font-family: "Schibsted Grotesk",sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.12;
}

.sf-main a,
.sf-header a,
.sf-footer a {
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */

header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
}

.logo-mark {
  width: 30px;
  height: 30px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .18s;
}

.nav-links a:hover {
  color: var(--indigo);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .18s;
}

.lang:hover {
  background: var(--lavender);
}

.sf-avatar {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.sf-avatar .pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--teal),var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
}

.sf-avatar span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.sf-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  text-align: center;
}

.sf-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(60% 120% at 15% 0%, rgba(35,195,201,.16), transparent 60%), radial-gradient(55% 130% at 88% 5%, rgba(224,33,138,.12), transparent 58%), radial-gradient(80% 120% at 50% 0%, rgba(79,70,229,.14), transparent 62%), var(--indigo-tint-2);
  animation: drift 22s ease-in-out infinite alternate;
}

.sf-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34,34,63,.035) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}

.sf-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sf-hero h1 {
  font-size: clamp(38px,5.4vw,60px);
  font-weight: 800;
  margin-bottom: 16px;
}

.sf-hero p {
  font-size: 18px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto 36px;
}

.sf-search {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.sf-search > svg {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-light);
  z-index: 1;
  pointer-events: none;
}

.sf-search input {
  width: 100%;
  height: 66px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 22px 0 58px;
  font-size: 17px;
  font-family: inherit;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: border-color .2s, box-shadow .2s;
}

.sf-search input::placeholder {
  color: var(--slate-light);
}

.sf-search input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,.13), var(--shadow-md);
}

.sf-search .kbd {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--slate-light);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 4px 9px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  background: var(--lavender);
}

.suggest {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.suggest a {
  font-size: 13.5px;
  color: var(--slate);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  transition: .18s;
}

.suggest a:hover {
  color: var(--indigo);
  border-color: var(--indigo);
  background: #fff;
}

/* status pill (color driven by --st / --st-bg, set live by the status script) */

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  --st: var(--green);
  --st-bg: var(--green-bg);
  background: var(--st-bg);
  color: var(--st);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background .35s ease,color .35s ease;
}

.sf-hero-inner .status {
  margin-top: 34px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--st);
  position: relative;
  transition: background .35s ease;
}

.dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--st);
  opacity: .4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.8);
    opacity: .5;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ---------- Section shell ---------- */

section.block {
  padding: 72px 0;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 20px;
}

.sec-head h2 {
  font-size: 28px;
  font-weight: 700;
}

.sec-head p {
  color: var(--slate);
  font-size: 15.5px;
  margin-top: 6px;
}

.see-all {
  color: var(--indigo);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.see-all:hover {
  gap: 9px;
  transition: gap .18s;
}

/* ---------- Category grid ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.cat {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: hidden;
}

.cat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg,var(--teal),var(--indigo),var(--pink));
  opacity: 0;
  transition: opacity .22s;
}

.cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cat:hover::before {
  opacity: 1;
}

.cat-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-tint);
  color: var(--indigo);
  transition: .22s;
}

.cat:hover .cat-ico {
  background: var(--indigo);
  color: #fff;
}

.cat h3 {
  font-size: 17.5px;
  font-weight: 700;
}

.cat p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
}

.cat .count {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}

.cat .count .arr {
  margin-left: auto;
  color: var(--indigo);
  opacity: 0;
  transform: translateX(-6px);
  transition: .22s;
}

.cat:hover .count .arr {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Popular + sidebar ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
}

.pop-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  counter-reset: pop;
}

.pop-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .16s;
  width: auto;
  align-self: auto;
  counter-increment: pop;
}

.pop-item:last-child {
  border-bottom: 0;
}

.pop-item:hover {
  background: var(--indigo-tint-2);
}

.pop-num {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--indigo);
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
}

.pop-num::before {
  content: counter(pop,decimal-leading-zero);
}

.pop-txt h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.pop-txt h4 .icon-lock {
  width: 14px;
  height: 14px;
  color: var(--slate-light);
  vertical-align: -2px;
  margin-left: 5px;
}

.pop-txt span {
  font-size: 13px;
  color: var(--slate-light);
}

.pop-item .go {
  margin-left: auto;
  color: var(--slate-light);
  transition: .18s;
  flex: none;
}

.pop-item:hover .go {
  color: var(--indigo);
  transform: translateX(3px);
}

.side-card {
  background: linear-gradient(160deg,#2c2c4d,#23223f);
  border-radius: var(--r-md);
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.side-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  right: -60px;
  top: -70px;
  background: radial-gradient(circle,rgba(35,195,201,.5),transparent 70%);
}

.side-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  left: -50px;
  bottom: -70px;
  background: radial-gradient(circle,rgba(224,33,138,.4),transparent 70%);
}

.side-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
}

.side-card p {
  color: rgba(255,255,255,.75);
  font-size: 14.5px;
  position: relative;
  margin-bottom: 22px;
}

.side-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.side-links a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: background .16s;
}

.side-links a:hover {
  background: rgba(255,255,255,.1);
}

.side-links a svg {
  color: var(--teal);
}

/* ---------- CTA ---------- */

.cta-wrap {
  padding: 0 0 88px;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg,var(--indigo),var(--indigo-deep));
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 26px 26px;
}

.cta::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -90px;
  bottom: -150px;
  background: radial-gradient(circle,rgba(35,195,201,.45),transparent 65%);
}

.cta-in {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta p {
  color: rgba(255,255,255,.85);
  font-size: 16.5px;
  max-width: 480px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--indigo);
  font-weight: 700;
  font-size: 16px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  padding: 15px 30px;
  border-radius: 12px;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 8px 26px rgba(0,0,0,.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

/* ---------- Footer ---------- */

footer {
  background: var(--footer);
  color: rgba(255,255,255,.7);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.foot-links a {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  transition: color .16s;
}

.foot-links a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: .18s;
}

.socials a:hover {
  background: #fff;
  color: var(--ink);
}

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ---------- Stats strip ---------- */

.sf-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  text-align: center;
}

.sf-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 18px;
  transition: transform .22s, box-shadow .22s;
}

.sf-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sf-stat .num {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  background: linear-gradient(120deg,var(--teal),var(--indigo),var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sf-stat .lbl {
  margin-top: 8px;
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}

/* ---------- Featured videos ---------- */

.vid-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.vcard {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: transform .26s cubic-bezier(.2,.7,.3,1), box-shadow .26s;
  display: flex;
  flex-direction: column;
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vthumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1c1b34;
}

.vposter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}

.vcard:hover .vposter {
  transform: scale(1.06);
}

.vthumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20,19,40,.05) 0%, rgba(20,19,40,.5) 100%);
}

.play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  transition: transform .22s, background .22s;
}

.play svg {
  margin-left: 3px;
}

.play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  animation: ring 2.4s ease-out infinite;
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.vcard:hover .play {
  transform: translate(-50%,-50%) scale(1.12);
  background: #fff;
}

.vdur {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  background: rgba(20,19,40,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 7px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
}

.vmeta {
  padding: 18px 20px;
}

.vmeta .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--indigo);
}

.vmeta h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 7px;
}

/* ---------- Lightbox ---------- */

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18,17,34,.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.lb.open {
  opacity: 1;
  pointer-events: auto;
}

.lb-box {
  width: min(900px,100%);
  transform: scale(.94);
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}

.lb.open .lb-box {
  transform: scale(1);
}

.lb-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.lb-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* placeholder player shown until a real embed id is added */

.lb-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  gap: 8px;
}

.lb-ph .swirl {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg,var(--teal),var(--indigo),var(--pink),var(--teal));
  animation: swirl 10s linear infinite;
  opacity: .6;
  filter: blur(8px);
}

@keyframes swirl {
  to {
    transform: rotate(360deg);
  }
}

.lb-ph .inner {
  position: relative;
  z-index: 1;
}

.lb-ph h4 {
  color: #fff;
  font-size: 20px;
}

.lb-ph p {
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
  max-width: 340px;
}

.lb-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255,255,255,.12);
  border: 0;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}

.lb-close:hover {
  background: rgba(255,255,255,.25);
}

.lb-title {
  color: #fff;
  margin-top: 16px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* ---------- scroll reveal ---------- */

.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}

.sr.in {
  opacity: 1;
  transform: none;
}

.sr-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
}

.sr-stagger.in > * {
  opacity: 1;
  transform: none;
}

@media(prefers-reduced-motion:reduce) {
  .sr,
  .sr-stagger>* {
    opacity: 1!important;
    transform: none!important;
    transition: none;
  }

  .vthumb::before,
  .play::after,
  .lb-ph .swirl,
  .sf-hero-bg {
    animation: none!important;
  }
}

/* ---------- Developer spotlight ---------- */

.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.spot-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.spot-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}

.spotlight:hover .spot-media img {
  transform: scale(1.05);
}

.spot-body {
  padding: 46px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.spot-body .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--indigo);
}

.spot-body h2 {
  font-size: 30px;
  font-weight: 800;
}

.spot-body p {
  color: var(--slate);
  font-size: 15.5px;
  max-width: 420px;
}

.btn-ghost {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--indigo);
  font-weight: 700;
  font-size: 15px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  padding: 12px 22px;
  border-radius: 11px;
  border: 1.5px solid var(--line);
  transition: .2s;
}

.btn-ghost:hover {
  border-color: var(--indigo);
  background: var(--indigo-tint);
  gap: 13px;
}

.spotlight.dark {
  background: linear-gradient(150deg,#2a2950,#211d42);
  border-color: transparent;
  color: #fff;
}

.spotlight.dark .spot-body h2 {
  color: #fff;
}

.spotlight.dark .spot-body p {
  color: rgba(255,255,255,.78);
}

.spotlight.dark .btn-ghost {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.spotlight.dark .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

.spotlight.dark .see-all {
  color: #fff;
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise .7s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.d1 {
  animation-delay: .05s;
}

.d2 {
  animation-delay: .13s;
}

.d3 {
  animation-delay: .21s;
}

.d4 {
  animation-delay: .29s;
}

.d5 {
  animation-delay: .37s;
}

/* slow drifting hero glow */

@keyframes drift {
  0% {
    background-position: 0 0,0 0,0 0,0 0;
  }

  100% {
    background-position: 6% 4%,-5% 3%,3% -3%,0 0;
  }
}

/* ---------- responsive ---------- */

@media(max-width:960px) {
  .cat-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .vid-grid {
    grid-template-columns: 1fr;
  }

  .sf-stats {
    grid-template-columns: repeat(2,1fr);
  }

  .spotlight {
    grid-template-columns: 1fr;
  }

  .spot-media {
    min-height: 230px;
  }

  .spot-body {
    padding: 34px 28px;
  }
}

@media(max-width:600px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .sf-avatar span,
  .lang span {
    display: none;
  }

  .sf-hero {
    padding: 60px 0 54px;
  }

  .foot {
    justify-content: center;
    text-align: center;
  }
}

/* ===================== Statflo theme integration ===================== */

.sf-main {
  background: var(--white);
  overflow-x: hidden;
}

/* ---- Header ---- */

.header.sf-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  z-index: 20;
  height: 72px;
  padding: 0 28px;
  max-width: none;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.sf-header .logo {
  display: flex;
  align-items: center;
  margin: 0;
}

.sf-header .logo a {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
}

.sf-header .sf-logo-mark {
  width: 30px;
  height: 30px;
  flex: none;
}

.sf-mainnav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  position: relative;
}

.sf-mainnav a {
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .18s;
  position: relative;
}

.sf-mainnav a:hover {
  color: var(--indigo);
}

.sf-mainnav a.active {
  color: var(--ink);
  font-weight: 400;
}

.sf-mainnav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,var(--teal),var(--pink));
}

.sf-header .nav-wrapper-desktop {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.sf-header .user-nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-header .submit-a-request {
  font-family: "Schibsted Grotesk",sans-serif;
  background: var(--indigo);
  color: #fff!important;
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: background .18s;
  white-space: nowrap;
}

.sf-header .submit-a-request:hover {
  background: var(--indigo-deep);
}

.sf-header .sign-in {
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}

.sf-header .sign-in:hover {
  color: var(--indigo);
}

.sf-header .user-info .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
}

.sf-header .user-info .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.sf-header .nav-wrapper-mobile {
  margin: 0;
}

@media(max-width:960px) {
  .sf-mainnav {
    display: none;
  }

  .header.sf-header {
    justify-content: space-between;
  }
}

/* ---- Hero search field (rendered by {{search}} helper) ----
   The helper outputs <form class="search sf-searchfield"><input type="search"></form>.
   Make the FORM a transparent passthrough and style the INPUT as the pill.
   Selectors use [type=search] (specificity 0,2,1) and sit after Copenhagen's
   base .search rules so they win on the tie. */

.sf-search .search,
.sf-search form.sf-searchfield,
.sf-search form {
  border: 0;
  border-radius: 0;
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

.sf-search input[type=search] {
  width: 100%;
  height: 64px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  font-family: inherit;
  padding: 0 56px;
  box-shadow: var(--shadow-md);
  transition: border-color .2s,box-shadow .2s;
}

.sf-search input[type=search]:focus {
  outline: none;
  border-color: var(--indigo);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(79,70,229,.13),var(--shadow-md);
}

.sf-search input[type=search]::placeholder {
  color: var(--slate-light);
}

/* hide the ⌘K hint while typing so it never collides with the clear button */

.sf-search:focus-within .kbd {
  opacity: 0;
  pointer-events: none;
}

/* clear (×) button that Copenhagen's script injects */

.sf-search .clear-button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--slate-light);
  cursor: pointer;
  padding: 0;
}

.sf-search .clear-button:hover {
  background: var(--lavender);
  color: var(--ink);
}

/* ---- Footer ---- */

.sf-footer {
  background: var(--footer);
  color: rgba(255,255,255,.7);
}

/* ---- Language selector (in header) ---- */

.sf-header .language-selector {
  position: relative;
}

.sf-header .language-selector .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 4px;
}

.sf-header .language-selector .dropdown-toggle:hover {
  color: var(--indigo);
}

/* ---- Category cards as links ---- */

.sf-main .cat {
  text-decoration: none;
  color: inherit;
}

.sf-main .cat .cat-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
}

/* ============================================================
   Statflo doc pages — article_page + category_page
   Scoped under .sf-doc so they cleanly override Copenhagen base.
   ============================================================ */

.sf-doc {
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  color: var(--slate);
  background: var(--white);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 80px;
  box-sizing: border-box;
}

.sf-doc * {
  box-sizing: border-box;
}

.sf-doc-wrap {
  padding-top: 26px;
}

.sf-doc a {
  color: var(--indigo);
  text-decoration: none;
}

.sf-doc a:hover {
  text-decoration: underline;
}

.sf-doc h1,
.sf-doc h2,
.sf-doc h3,
.sf-doc h4 {
  font-family: "Schibsted Grotesk",sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
}

/* --- Sub-nav: breadcrumbs + scoped search --- */

.sf-doc .sub-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 6px 0 26px;
}

.sf-doc .breadcrumbs {
  font-size: 13.5px;
  color: var(--slate-light);
  margin: 0;
}

.sf-doc .breadcrumbs ol,
.sf-doc .breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc .breadcrumbs a {
  color: var(--slate);
}

.sf-doc .breadcrumbs a:hover {
  color: var(--indigo);
}

.sf-doc .search-container {
  position: relative;
  min-width: 240px;
  max-width: 300px;
  flex: 0 1 300px;
}

.sf-doc .search-container .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-light);
  z-index: 1;
}

.sf-doc .search-container .search,
.sf-doc .search-container form {
  border: 0;
  border-radius: 0;
  background: transparent;
  display: block;
  padding: 0;
  margin: 0;
}

.sf-doc .search-container input[type=search] {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 14px 0 38px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
}

.sf-doc .search-container input[type=search]:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}

/* --- Article layout grid --- */

.sf-doc .article-container {
  display: grid;
  grid-template-columns: 248px minmax(0,1fr);
  gap: 52px;
  align-items: start;
}

@media(min-width:1180px) {
  .sf-doc .article-container {
    grid-template-columns: 248px minmax(0,1fr) 216px;
  }
}

@media(max-width:900px) {
  .sf-doc .article-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* sidebar: articles in this section */

.sf-doc .article-sidebar {
  position: sticky;
  top: 92px;
}

@media(max-width:900px) {
  .sf-doc .article-sidebar {
    position: static;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 16px;
  }
}

.sf-doc .sidenav-title,
.sf-doc .collapsible-sidebar-title {
  display: block;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-light);
  margin-bottom: 14px;
}

.sf-doc .collapsible-sidebar-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 1px solid var(--line);
}

.sf-doc .sidenav-item {
  display: block;
  padding: 7px 0 7px 14px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.45;
}

.sf-doc .sidenav-item:hover {
  color: var(--ink);
  text-decoration: none;
}

.sf-doc .sidenav-item.current-article {
  color: var(--indigo);
  border-left-color: var(--indigo);
  font-weight: 600;
}

.sf-doc .article-sidebar-item {
  display: inline-block;
  margin-top: 12px;
  margin-left: 14px;
  color: var(--indigo);
  font-weight: 600;
  font-size: 13.5px;
}

/* article header */

.sf-doc .article {
  min-width: 0;
}

.sf-doc .article-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.sf-doc .article-title {
  font-size: 35px;
  line-height: 1.16;
  margin: 0 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sf-doc .article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sf-doc .article-avatar {
  flex: none;
}

.sf-doc .article-avatar img,
.sf-doc .article-avatar .user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.sf-doc .article-meta {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.4;
}

.sf-doc .article-meta a {
  color: var(--ink);
  font-weight: 600;
}

.sf-doc .meta-group {
  display: flex;
  gap: 5px;
  color: var(--slate-light);
  font-size: 12.5px;
  margin-top: 2px;
}

.sf-doc .article-subscribe {
  margin-left: auto;
}

.sf-doc .article-subscribe button,
.sf-doc .article-subscribe .button {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  padding: 8px 16px;
  cursor: pointer;
}

.sf-doc .article-subscribe button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* --- Article body prose --- */

.sf-doc .article-body {
  font-size: 16.5px;
  line-height: 1.78;
  color: #41415c;
}

.sf-doc .article-body > *:first-child {
  margin-top: 0;
}

.sf-doc .article-body h2 {
  font-size: 25px;
  margin: 44px 0 14px;
  scroll-margin-top: 90px;
}

.sf-doc .article-body h3 {
  font-size: 20px;
  margin: 32px 0 10px;
  scroll-margin-top: 90px;
}

.sf-doc .article-body h4 {
  font-size: 17px;
  margin: 24px 0 8px;
}

.sf-doc .article-body p {
  margin: 0 0 18px;
}

.sf-doc .article-body ul,
.sf-doc .article-body ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.sf-doc .article-body li {
  margin: 7px 0;
}

.sf-doc .article-body a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sf-doc .article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin: 20px 0;
}

.sf-doc .article-body blockquote {
  margin: 22px 0;
  padding: 14px 22px;
  border-left: 3px solid var(--indigo);
  background: var(--lavender);
  border-radius: 0 10px 10px 0;
  color: var(--ink);
}

.sf-doc .article-body blockquote p:last-child {
  margin-bottom: 0;
}

.sf-doc .article-body code {
  font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size: .88em;
  background: var(--lavender);
  padding: .15em .42em;
  border-radius: 6px;
  color: var(--indigo-deep);
}

.sf-doc .article-body pre {
  background: #1e1b34;
  color: #e9e8f6;
  padding: 18px 20px;
  border-radius: 12px;
  overflow: auto;
  margin: 22px 0;
  font-size: 14px;
  line-height: 1.65;
}

.sf-doc .article-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.sf-doc .article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 15px;
}

.sf-doc .article-body th,
.sf-doc .article-body td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.sf-doc .article-body th {
  background: var(--lavender);
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.sf-doc .article-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

/* content tags */

.sf-doc .content-tags {
  margin-top: 34px;
}

.sf-doc .content-tags p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate-light);
  margin: 0 0 10px;
}

.sf-doc .content-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc .content-tag-item a {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 600;
}

.sf-doc .content-tag-item a:hover {
  text-decoration: none;
  background: var(--indigo-tint);
}

/* attachments */

.sf-doc .article-attachments {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 18px;
}

.sf-doc .attachments {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc .attachment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.sf-doc .attachment-item:last-child {
  border-bottom: 0;
}

.sf-doc .attachment-icon {
  color: var(--slate-light);
  flex: none;
}

.sf-doc .attachment-item > a {
  font-weight: 600;
  color: var(--ink);
}

.sf-doc .attachment-meta {
  margin-left: auto;
}

/* votes */

.sf-doc .article-votes {
  margin-top: 44px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--lavender);
  text-align: center;
}

.sf-doc .article-votes-question {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 18px;
}

.sf-doc .article-votes-controls {
  display: inline-flex;
  gap: 12px;
}

.sf-doc .article-vote {
  padding: 10px 26px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  transition: .16s;
}

.sf-doc .article-vote:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.sf-doc .article-vote.button-primary {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.sf-doc .article-votes-count {
  display: block;
  margin-top: 14px;
  color: var(--slate-light);
  font-size: 13px;
}

/* footer: share + comment count + callout + return to top */

.sf-doc .article-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.sf-doc .article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-doc .article-share ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc .article-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
}

.sf-doc .article-share a:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.sf-doc .article-comment-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--slate);
  font-weight: 600;
}

.sf-doc .article-more-questions {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--slate);
}

.sf-doc .article-return-to-top {
  margin-top: 26px;
}

.sf-doc .article-return-to-top a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--indigo);
  font-weight: 600;
  font-size: 14px;
}

.sf-doc .article-return-to-top-icon {
  transform: rotate(180deg);
}

/* comments */

.sf-doc .article-comments {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.sf-doc .comment-overview {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sf-doc .comment-heading {
  font-size: 22px;
  margin: 0;
}

.sf-doc .comment-callout {
  color: var(--slate-light);
  font-size: 14px;
}

.sf-doc .comment-sorter {
  margin-left: auto;
}

.sf-doc .comment-list {
  list-style: none;
  margin: 26px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sf-doc .comment-wrapper {
  display: flex;
  gap: 14px;
}

.sf-doc .comment-avatar img,
.sf-doc .comment-avatar .user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.sf-doc .comment-meta {
  font-size: 14px;
  color: var(--slate-light);
}

.sf-doc .comment-meta a {
  color: var(--ink);
  font-weight: 600;
}

.sf-doc .comment-body {
  margin-top: 6px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #41415c;
}

.sf-doc .comment-form {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.sf-doc .comment-form .comment-container {
  flex: 1;
}

.sf-doc .comment-form textarea,
.sf-doc .comment-form .comment-body-field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.sf-doc .comment-form .button {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  background: var(--indigo);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 4px 12px;
  cursor: pointer;
  margin: 12px auto;
}

.sf-doc .comment-form .button:hover {
  background: var(--indigo-deep);
}

/* On-this-page TOC (third column, wide screens) */

.sf-doc .doc-toc {
  position: sticky;
  top: 92px;
  align-self: start;
  display: none;
}

@media(min-width:1180px) {
  .sf-doc .doc-toc {
    display: block;
  }
}

.sf-doc .doc-toc-title {
  display: block;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate-light);
  margin-bottom: 12px;
}

.sf-doc .doc-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sf-doc .doc-toc a {
  display: block;
  padding: 5px 0 5px 13px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  color: var(--slate);
  line-height: 1.4;
  font-size: 13.5px;
}

.sf-doc .doc-toc a:hover {
  color: var(--ink);
  text-decoration: none;
}

.sf-doc .doc-toc a.active {
  color: var(--indigo);
  border-left-color: var(--indigo);
  font-weight: 600;
}

.sf-doc .doc-toc .toc-h3 a {
  padding-left: 26px;
  font-size: 13px;
  color: var(--slate-light);
}

/* --- Category page --- */

.sf-doc.category-page .category-container {
  display: block;
}

.sf-doc.category-page .category-content {
  max-width: none;
}

.sf-doc .page-header {
  background: linear-gradient(135deg,var(--lavender),#fff 70%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 46px;
  margin-bottom: 40px;
}

.sf-doc .page-header h1 {
  font-size: 38px;
  margin: 0 0 10px;
  line-height: 1.12;
}

.sf-doc .page-header-description {
  font-size: 17px;
  color: var(--slate);
  max-width: 680px;
  margin: 0;
  line-height: 1.6;
}

.sf-doc .section-tree {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(330px,1fr));
  gap: 24px;
}

.sf-doc .section-tree .section {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  background: #fff;
  transition: box-shadow .2s,transform .2s,border-color .2s;
}

.sf-doc .section-tree .section:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: transparent;
}

.sf-doc .section-tree-title {
  font-size: 19px;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.sf-doc .section-tree-title a {
  color: var(--ink);
}

.sf-doc .section-tree-title a:hover {
  color: var(--indigo);
  text-decoration: none;
}

.sf-doc .section-tree .article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sf-doc .section-tree .article-list-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.sf-doc .section-tree .article-list-link {
  display: block;
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.45;
}

.sf-doc .section-tree .article-list-link:hover {
  background: var(--lavender);
  color: var(--indigo);
  text-decoration: none;
}

.sf-doc .see-all-articles {
  display: inline-block;
  margin-top: 16px;
  color: var(--indigo);
  font-weight: 600;
  font-size: 14px;
}

.sf-doc .icon-star {
  color: var(--pink);
  flex: none;
}

.sf-doc .icon-lock {
  color: var(--slate-light);
  flex: none;
}

.sf-doc .category-empty a {
  color: var(--slate);
}

@media(max-width:560px) {
  .sf-doc .page-header {
    padding: 30px 24px;
  }

  .sf-doc .article-title {
    font-size: 28px;
  }

  .sf-doc .page-header h1 {
    font-size: 30px;
  }
}

/* ===== Article page hardening (override Copenhagen flex / max-width:17%) ===== */

@media (min-width:901px) {
  .sf-doc .article-container {
    display: grid !important;
    grid-template-columns: 250px minmax(0,1fr) !important;
    gap: 52px;
    align-items: start;
  }

  .sf-doc .collapsible-sidebar {
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (min-width:1180px) {
  .sf-doc .article-container {
    grid-template-columns: 250px minmax(0,1fr) 220px !important;
  }
}

.sf-doc .article-sidebar {
  max-width: none !important;
  flex: none !important;
  width: auto !important;
  min-width: 0;
  border: 0 !important;
}

.sf-doc .article {
  min-width: 0;
  max-width: none !important;
  flex: none !important;
  width: auto;
}

.sf-doc .sidenav-item,
.sf-doc .doc-toc a {
  overflow-wrap: break-word;
  word-break: normal;
}

.sf-doc .sidenav-title,
.sf-doc .collapsible-sidebar-title,
.sf-doc .doc-toc-title {
  white-space: normal;
  word-break: normal;
}

/* ============================================================
   Section page
   ============================================================ */

.sf-doc.section-page .section-content {
  max-width: 840px;
  margin: 0 auto;
}

.sf-doc .section-subscribe {
  margin-top: 16px;
}

.sf-doc .section-subscribe button,
.sf-doc .section-subscribe .button {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  padding: 8px 16px;
  cursor: pointer;
}

.sf-doc .section-subscribe button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* sub-sections list */

.sf-doc .section-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sf-doc .section-list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  transition: .18s;
}

.sf-doc .section-list-item a:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  text-decoration: none;
  background: var(--lavender);
}

.sf-doc .section-list-item svg {
  color: var(--slate-light);
  flex: none;
  transition: .18s;
}

.sf-doc .section-list-item a:hover svg {
  color: var(--indigo);
  transform: translateX(3px);
}

/* article list as a clean card of rows */

.sf-doc .section-content .article-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.sf-doc .section-content .article-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
}

.sf-doc .section-content .article-list-item:last-child {
  border-bottom: 0;
}

.sf-doc .section-content .article-list-item:hover {
  background: var(--lavender);
}

.sf-doc .section-content .article-list-link {
  flex: 1;
  display: block;
  padding: 16px 4px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.45;
}

.sf-doc .section-content .article-list-link:hover {
  color: var(--indigo);
  text-decoration: none;
}

.sf-doc .section-content .article-list-item .icon-star {
  color: var(--pink);
  flex: none;
}

.sf-doc .section-content .article-list-item .icon-lock {
  color: var(--slate-light);
  flex: none;
}

.sf-doc .section-content .article-list-item::after {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--slate-light);
  border-top: 2px solid var(--slate-light);
  transform: rotate(45deg);
  transition: .18s;
  opacity: .7;
}

.sf-doc .section-content .article-list-item:hover::after {
  border-color: var(--indigo);
  transform: translateX(3px) rotate(45deg);
}

.sf-doc .section-empty {
  display: block;
  text-align: center;
  color: var(--slate);
  padding: 40px;
  background: var(--lavender);
  border-radius: 16px;
  font-style: normal;
}

.sf-doc .section-empty a {
  color: var(--indigo);
}

/* ============================================================
   User profile page
   ============================================================ */

.sf-doc.profile-page .container {
  max-width: none;
  width: auto;
  margin: 0;
  padding: 0;
}

.sf-doc.profile-page #main-content {
  scroll-margin-top: 90px;
}

/* header card */

.sf-doc .profile-header {
  background: linear-gradient(135deg,var(--lavender),#fff 72%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 34px;
  margin-bottom: 30px;
  z-index: 1;
}

.sf-doc .profile-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 22px;
}

.sf-doc .profile-avatar {
  flex: none;
  position: relative;
}

.sf-doc .profile-avatar img,
.sf-doc .profile-avatar .user-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  display: block;
}

.sf-doc .profile-avatar .icon-agent {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 24px;
  height: 24px;
  color: var(--indigo);
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.sf-doc .basic-info {
  flex: 1 1 240px;
  min-width: 0;
  padding-top: 6px;
}

.sf-doc .community-name-and-title-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sf-doc .profile-header .name {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 27px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.sf-doc .profile-header .name a {
  color: var(--ink);
}

.sf-doc .community-badge-titles {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.sf-doc .community-badge-title {
  background: var(--indigo-tint);
  color: var(--indigo);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.sf-doc .community-badge-achievements {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  align-items: center;
}

.sf-doc .community-badge-achievement img {
  width: 26px;
  height: 26px;
  display: block;
}

.sf-doc .community-badge-achievements-rest {
  font-size: 12px;
  color: var(--indigo);
  font-weight: 600;
}

.sf-doc .options {
  flex: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 6px;
}

.sf-doc .profile-private-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--slate-light);
  font-weight: 600;
}

.sf-doc .options button,
.sf-doc .community-follow button,
.sf-doc .user-profile-actions button {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  padding: 8px 16px;
  cursor: pointer;
  transition: .16s;
}

.sf-doc .options button:hover,
.sf-doc .community-follow button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.sf-doc .description {
  flex-basis: 100%;
  color: var(--slate);
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

/* stats */

.sf-doc .profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc .profile-stats-activity {
  flex-basis: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.sf-doc .profile-stats-counters {
  margin-top: 22px;
  gap: 34px;
}

.sf-doc .profile-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sf-doc .profile-stats .stat-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate-light);
  font-weight: 700;
}

.sf-doc .profile-stats .stat-value {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

/* nav tabs */

.sf-doc .profile-nav {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.sf-doc .collapsible-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc .collapsible-nav-list li a {
  display: block;
  padding: 12px 16px;
  color: var(--slate);
  font-weight: 600;
  font-size: 14.5px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.sf-doc .collapsible-nav-list li a:hover {
  color: var(--ink);
  text-decoration: none;
  padding: 12px 16px;
}

.sf-doc .collapsible-nav-list li.current a {
  color: var(--indigo);
  border-bottom-color: var(--indigo);
}

/* sections + contributions */

.sf-doc .profile-section {
  margin-bottom: 40px;
}

.sf-doc .profile-section-header {
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.sf-doc .profile-section-title {
  font-size: 22px;
  margin: 0;
  text-transform: capitalize;
}

.sf-doc .profile-section-description {
  color: var(--slate-light);
  font-size: 14px;
}

.sf-doc .profile-section-sorter {
  margin-left: auto;
}

.sf-doc .profile-contribution-list,
.sf-doc .profile-activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sf-doc .profile-contribution-list > .profile-contribution,
.sf-doc .profile-activity {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px 18px 52px;
  background: #fff;
  transition: box-shadow .2s,border-color .2s;
}

.sf-doc .profile-contribution-list > .profile-contribution:hover,
.sf-doc .profile-activity:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.sf-doc .profile-contribution-icon {
  position: absolute;
  left: 20px;
  top: 21px;
  color: var(--indigo);
}

.sf-doc .profile-activity-icon {
  position: absolute;
  left: 20px;
  top: 21px;
  color: var(--indigo);
}

.sf-doc .profile-contribution-title {
  font-size: 16.5px;
  margin: 0 0 5px;
}

.sf-doc .profile-contribution-title a {
  color: var(--ink);
}

.sf-doc .profile-contribution-title a:hover {
  color: var(--indigo);
}

.sf-doc .profile-contribution-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0 0 9px;
  padding: 0;
  font-size: 12.5px;
  color: var(--slate-light);
}

.sf-doc .profile-contribution-breadcrumbs a {
  color: var(--slate);
}

.sf-doc .profile-contribution-body {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.sf-doc .profile-contribution .meta-group,
.sf-doc .profile-activity .meta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--slate-light);
  font-size: 12.5px;
}

.sf-doc .comment-link {
  color: var(--indigo);
  font-weight: 600;
}

.sf-doc .profile-activity {
  padding-left: 52px;
}

.sf-doc .profile-activity-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.sf-doc .profile-activity-header .user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.sf-doc .profile-activity-description {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}

.sf-doc .profile-activity .profile-contribution {
  border: 0;
  padding: 0;
  background: none;
  margin-top: 10px;
}

.sf-doc .profile-activity .profile-contribution:hover {
  box-shadow: none;
}

.sf-doc .profile-activity .profile-contribution-icon {
  display: none;
}

/* status labels */

.sf-doc .status-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  background: var(--lavender);
  color: var(--indigo);
  margin-left: 8px;
}

.sf-doc .status-label-official {
  background: #e7f6ee;
  color: var(--green);
}

.sf-doc .status-label-pending-moderation {
  background: #fbf0cf;
  color: #8a6b00;
}

/* badges grid */

.sf-doc .profile-badges-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 16px;
}

.sf-doc .profile-badges-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.sf-doc .profile-badges-item-image img {
  width: 46px;
  height: 46px;
  display: block;
}

.sf-doc .profile-badges-item-title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.sf-doc .profile-badges-item-description {
  color: var(--slate);
  font-size: 13.5px;
  margin: 3px 0 0;
  line-height: 1.5;
}

.sf-doc .profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
  flex: none;
}

.sf-doc .profile-badges-item-metadata-title {
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--slate-light);
  letter-spacing: .05em;
  font-weight: 700;
}

.sf-doc .profile-badges-item-metadata-description {
  font-size: 12.5px;
  color: var(--slate);
  margin: 2px 0 0;
}

/* empty / private states */

.sf-doc .no-activity,
.sf-doc .private-activity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--slate);
  padding: 44px 24px;
  background: var(--lavender);
  border-radius: 16px;
  font-style: normal;
}

.sf-doc .profile-private-icon,
.sf-doc .private-activity-icon {
  color: var(--slate-light);
}

/* ============================================================
   Unified USER AREA  (profile · requests · request · following)
   Shared spacing, headers, tabs, tables so they read as one space.
   ============================================================ */

.sf-doc.user-area {
  padding-top: 46px;
  min-height: 62vh;
}

.sf-doc.user-area .container {
  max-width: none;
  width: auto;
  margin: 0;
  padding: 0;
}

.request-container {
  margin-bottom: 32px;
}

/* area page title */

.sf-doc .my-activities-header {
  margin-bottom: 22px;
}

.sf-doc .my-activities-header h1 {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px;
}

/* secondary tab nav — same look as the profile tabs */

.sf-doc .my-activities-nav,
.sf-doc .my-activities-sub-nav {
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

/* filter / search toolbar */

.sf-doc .requests-table-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 20px;
}

.sf-doc .requests-table-toolbar .search {
  position: relative;
  flex: 1 1 240px;
  border: 0;
  border-radius: 0;
  background: none;
  display: block;
  padding: 0;
}

.sf-doc .requests-table-toolbar .search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-light);
}

.sf-doc .requests-search,
.sf-doc .requests-table-toolbar input[type=search] {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 14px 0 38px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
}

.sf-doc .requests-table-toolbar input[type=search]:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}

.sf-doc .request-table-filter {
  display: flex;
  flex-direction: column;
}

.sf-doc .request-filter-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 5px;
}

.sf-doc select.request-filter {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}

/* tables (requests + subscriptions) */

.sf-doc .my-activities-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  font-size: 14.5px;
}

.sf-doc .my-activities-table thead th {
  text-align: left;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate-light);
  font-weight: 700;
  padding: 14px 18px;
  background: var(--lavender);
  border-bottom: 1px solid var(--line);
}

.sf-doc .my-activities-table thead th a {
  color: var(--slate-light);
}

.sf-doc .my-activities-table tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
  color: var(--slate);
}

.sf-doc .my-activities-table tbody tr:last-child td {
  border-bottom: 0;
}

.sf-doc .my-activities-table tbody tr:hover {
  background: var(--lavender);
}

.sf-doc .my-activities-table .striped-list-title {
  color: var(--ink);
  font-weight: 600;
}

.sf-doc .my-activities-table .striped-list-title:hover {
  color: var(--indigo);
}

.sf-doc .my-activities-table .user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
  object-fit: cover;
}

.sf-doc .request-closed {
  opacity: .6;
}

.sf-doc .requests-table-meta {
  display: none;
}

.sf-doc .subscriptions-subscribe {
  text-align: right;
}

@media(max-width:700px) {
  .sf-doc .my-activities-table thead {
    display: none;
  }

  .sf-doc .my-activities-table,
  .sf-doc .my-activities-table tbody,
  .sf-doc .my-activities-table tr,
  .sf-doc .my-activities-table td {
    display: block;
    width: 100%;
  }

  .sf-doc .my-activities-table tr {
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }

  .sf-doc .my-activities-table tbody tr:last-child {
    border-bottom: 0;
  }

  .sf-doc .my-activities-table td {
    border: 0;
    padding: 4px 18px;
  }

  .sf-doc .my-activities-table td:not(.request-info):not(.subscriptions-subscribe) {
    display: none;
  }

  .sf-doc .requests-table-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 6px;
    flex-wrap: wrap;
  }
}

/* status labels by state */

.sf-doc .status-label-request {
  margin-left: 0;
}

.sf-doc .status-label-open,
.sf-doc .status-label-new {
  background: #fdeaea;
  color: #c0392b;
}

.sf-doc .status-label-pending,
.sf-doc .status-label-hold {
  background: #fbf0cf;
  color: #8a6b00;
}

.sf-doc .status-label-solved,
.sf-doc .status-label-closed {
  background: #e7f6ee;
  color: var(--green);
}

/* following header dropdown + empty states */

.sf-doc .my-activities-following-header {
  margin-bottom: 16px;
}

.sf-doc .no-activities {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--slate);
  padding: 46px 24px;
  background: var(--lavender);
  border-radius: 16px;
  margin: 6px 0;
  font-size: 15px;
}

/* ===== Request detail ===== */

.sf-doc .request-breadcrumbs {
  margin-bottom: 14px;
}

.sf-doc .request-title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 26px;
  line-height: 1.18;
}

.sf-doc .request-container {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 44px;
  align-items: start;
}

@media(max-width:900px) {
  .sf-doc .request-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.sf-doc .request-main {
  min-width: 0;
}

.sf-doc .request-main .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sf-doc .request-main .comment {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: #fff;
}

.sf-doc .request-main .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sf-doc .request-main .comment-avatar img,
.sf-doc .request-main .comment-avatar .user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.sf-doc .request-main .comment-meta > span {
  font-weight: 600;
  color: var(--ink);
}

.sf-doc .request-main .comment-body {
  color: #41415c;
  font-size: 15px;
  line-height: 1.7;
}

.sf-doc .request-sidebar {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--lavender);
  padding: 22px 24px;
  position: sticky;
  top: 92px;
}

@media(max-width:900px) {
  .sf-doc .request-sidebar {
    position: static;
  }
}

.sf-doc .request-sidebar .collapsible-sidebar-title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate-light);
  margin: 0 0 14px;
  display: block;
}

.sf-doc .request-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 14px;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.sf-doc .request-details:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sf-doc .request-details dt {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 600;
}

.sf-doc .request-details dd {
  font-size: 13.5px;
  color: var(--ink);
  margin: 0;
  text-align: right;
}

.sf-doc .request-follow-up {
  margin: 26px 0 12px;
  color: var(--slate);
}

.sf-doc .request-main .comment-form {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.sf-doc .request-main .comment-form .comment-container {
  flex: 1;
}

.sf-doc .comment-show-container {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  color: var(--slate);
  cursor: pointer;
  font: inherit;
}

.sf-doc .comment-show-container:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.sf-doc .comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  min-height: 120px;
  color: var(--ink);
}

.sf-doc .comment-form-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sf-doc .button-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 18px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.sf-doc .button-secondary:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* community uses the spotlight component, image flipped to the right on desktop */

.spot-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}

@media(min-width:961px) {
  .spotlight.flip {
    grid-template-columns: 1fr 1.1fr;
  }

  .spotlight.flip .spot-media {
    order: 2;
  }

  .spotlight.flip .spot-body {
    order: 1;
  }
}

/* ===== FIX: profile-header layout =====
   Copenhagen puts .profile-stats-counters in a tall 270px right column with
   flex-direction:column, which made the counters stack and stretch down the
   card. Neutralize that: container becomes block, both stat groups are
   horizontal rows, counters sit full-width under the activity stats. */

.sf-doc .profile-header .container {
  display: block;
}

.sf-doc .profile-avatar {
  align-self: flex-start;
  margin-right: 0;
}

.sf-doc .profile-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 22px;
}

.sf-doc .profile-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  flex-basis: auto;
}

.sf-doc .profile-stats .stat {
  flex-direction: column;
  margin: 0;
}

.sf-doc .profile-stats .stat-label {
  flex: none;
  margin: 0;
}

.sf-doc .profile-stats-activity {
  flex-basis: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.sf-doc .profile-stats-counters {
  flex: 1 1 auto;
  flex-basis: 100%;
  margin: 22px 0 0;
  gap: 34px;
  border: 0;
  padding: 0;
}

@media(max-width:560px) {
  .sf-doc .profile-stats {
    gap: 18px;
  }
}

/* ============================================================
   Community topic page  (.sf-doc.community-topic-page)
   ============================================================ */

/* hero */

.community-topic-page .ct-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg,var(--lavender),#fff 70%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 42px;
  margin-bottom: 26px;
}

.community-topic-page .ct-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,var(--teal),var(--indigo));
}

.community-topic-page .ct-hero-main {
  min-width: 0;
  flex: 1 1 420px;
}

.community-topic-page .ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}

.community-topic-page .ct-title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.14;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.community-topic-page .ct-title .icon-lock {
  width: 20px;
  height: 20px;
  color: var(--slate-light);
}

.community-topic-page .ct-desc {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 620px;
}

.community-topic-page .ct-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex: none;
}

/* primary "new post" button */

.ct-newpost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--indigo);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 12px 22px;
  cursor: pointer;
  text-align: center;
  transition: background .18s,transform .18s,box-shadow .18s;
  box-shadow: 0 6px 18px rgba(226,29,122,.22);
}

.ct-newpost:hover {
  background: var(--indigo-deep);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(226,29,122,.3);
}

.ct-hero .ct-newpost,
.ct-toolbar .ct-newpost {
  color: #fff;
}

/* follow (subscribe helper) */

.community-topic-page .ct-follow {
  margin: 0;
  width: 100%;
}

.community-topic-page .ct-follow button {
  width: 100%;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 11px;
  padding: 11px 18px;
  cursor: pointer;
  line-height: 1.2;
}

.community-topic-page .ct-follow button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: #fff;
}

.community-topic-page .ct-follow button[data-selected=true] {
  background: var(--indigo-tint);
  border-color: transparent;
  color: var(--indigo);
}

.community-topic-page .ct-follow button::after {
  content: attr(data-follower-count);
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
  color: var(--slate-light);
}

/* toolbar */

.community-topic-page .ct-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.community-topic-page .ct-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.community-topic-page .ct-dropdown .dropdown-toggle:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.community-topic-page .ct-dropdown .dropdown-chevron-icon {
  color: var(--slate-light);
}

.community-topic-page .ct-dropdown .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  margin-top: 6px;
  min-width: 180px;
}

.community-topic-page .ct-dropdown .dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}

.community-topic-page .ct-dropdown .dropdown-menu a:hover {
  background: var(--lavender);
  color: var(--indigo);
  text-decoration: none;
}

.community-topic-page .ct-dropdown .dropdown-menu a[aria-checked=true] {
  color: var(--indigo);
  font-weight: 700;
  background: var(--indigo-tint);
}

/* posts list */

.community-topic-page .ct-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.community-topic-page .ct-post-list>li+li .ct-post {
  border-top: 1px solid var(--line-soft);
}

.community-topic-page .ct-post {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  transition: background .16s;
}

.community-topic-page .ct-post:hover {
  background: var(--lavender);
}

.community-topic-page .ct-post.is-featured {
  background: linear-gradient(90deg,rgba(226,29,122,.05),transparent 40%);
}

.community-topic-page .ct-post.is-featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,var(--teal),var(--indigo));
}

.community-topic-page .ct-post-body {
  flex: 1;
  min-width: 0;
}

.community-topic-page .ct-post-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.community-topic-page .ct-pin {
  color: var(--indigo);
  flex: none;
  display: inline-flex;
}

.community-topic-page .ct-post-title {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  word-break: break-word;
}

.community-topic-page .ct-post-title:hover {
  color: var(--indigo);
  text-decoration: none;
}

.community-topic-page .ct-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.community-topic-page .ct-badges:empty {
  display: none;
}

.community-topic-page .ct-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: var(--slate-light);
  font-size: 13px;
}

.community-topic-page .ct-meta .ct-author {
  color: var(--ink-soft);
  font-weight: 600;
}

.community-topic-page .ct-meta .ct-edited {
  font-style: italic;
}

.community-topic-page .ct-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.community-topic-page .ct-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--lavender);
  border-radius: 10px;
  padding: 8px 13px;
  color: var(--slate);
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  min-width: 56px;
  justify-content: center;
}

.community-topic-page .ct-chip svg {
  color: var(--slate-light);
}

.community-topic-page .ct-post:hover .ct-chip {
  background: #fff;
}

.community-topic-page .ct-post.is-featured .ct-chip {
  color: var(--indigo);
}

/* status pills — community states */

.community-topic-page .status-label {
  display: inline-block;
  margin: 0;
  padding: 3px 11px;
  border-radius: 999px;
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  background: var(--lavender);
  color: var(--slate);
}

.community-topic-page .status-label-featured,
.community-topic-page .status-label-pinned {
  background: var(--indigo-tint);
  color: var(--indigo);
}

.community-topic-page .status-label-answered,
.community-topic-page .status-label-completed,
.community-topic-page .status-label-solved {
  background: var(--green-bg);
  color: var(--green);
}

.community-topic-page .status-label-planned,
.community-topic-page .status-label-in-progress {
  background: #e8ecff;
  color: #3a45c4;
}

.community-topic-page .status-label-not-planned,
.community-topic-page .status-label-closed {
  background: #eef0f4;
  color: var(--slate);
}

/* empty state */

.community-topic-page .ct-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 52px 28px;
  color: var(--slate);
}

.community-topic-page .ct-empty svg {
  color: var(--slate-light);
}

.community-topic-page .ct-empty h3 {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}

/* pagination */

.community-topic-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
}

.community-topic-page .pagination a,
.community-topic-page .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--slate);
  font-weight: 600;
  font-size: 14px;
  background: #fff;
}

.community-topic-page .pagination a:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  text-decoration: none;
}

.community-topic-page .pagination .current span {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

/* closing CTA */

.ct-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin: 40px 0 0;
  padding: 48px 40px;
  text-align: center;
  background: linear-gradient(135deg,var(--indigo),var(--indigo-deep));
}

.ct-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -90px;
  bottom: -140px;
  background: radial-gradient(circle,rgba(61,184,192,.5),transparent 65%);
}

.ct-cta-inner {
  position: relative;
  z-index: 1;
}

.ct-cta h2 {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 18px;
}

.ct-cta .ct-newpost {
  background: #fff;
  color: var(--indigo);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.ct-cta .ct-newpost:hover {
  color: var(--indigo-deep);
  transform: translateY(-2px);
}

@media(max-width:640px) {
  .community-topic-page .ct-hero {
    padding: 28px 24px;
  }

  .community-topic-page .ct-title {
    font-size: 27px;
  }

  .community-topic-page .ct-hero-actions {
    width: 100%;
  }

  .community-topic-page .ct-toolbar {
    justify-content: flex-start;
  }

  .community-topic-page .ct-post {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .community-topic-page .ct-stats {
    align-self: stretch;
  }

  .community-topic-page .ct-chip {
    flex: 1;
  }
}

/* ============================================================
   Community landing page  (.sf-doc.community-page)
   Reuses .ct-newpost / .ct-dropdown / .ct-eyebrow / .ct-empty /
   .ct-cta / pagination — rescope those to .sf-doc to share them.
   ============================================================ */

.community-page .breadcrumbs {
  padding: 22px 0 0;
}

.community-page .ct-cta,
.community-page .ct-activity {
  margin: 40px 0;
}

/* hero built around the search field */

.community-page .ct-hero-search {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(150deg,var(--lavender),#fff 72%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 54px 32px;
  margin: 18px 0 30px;
}

.community-page .ct-hero-search::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg,var(--teal),var(--indigo),var(--pink));
}

.community-page .ct-hero-search .ct-eyebrow {
  margin-bottom: 14px;
}

.community-page .ct-hero-title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 12px;
}

.community-page .ct-hero-sub {
  color: var(--slate);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 28px;
}

.community-page .ct-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.community-page .ct-search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-light);
  z-index: 1;
}

.community-page .ct-search .search,
.community-page .ct-search form {
  border: 0;
  border-radius: 0;
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

.community-page .ct-search input[type=search] {
  width: 100%;
  height: 58px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  padding: 0 22px 0 52px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.community-page .ct-search input[type=search]:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(226,29,122,.13),var(--shadow-md);
}

/* toolbar (topics/posts dropdown + new post) */

.community-page .ct-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.community-page .ct-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
}

.community-page .ct-dropdown .dropdown-toggle:hover {
  border-color: var(--indigo);
}

.community-page .ct-dropdown .title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.community-page .ct-dropdown .dropdown-chevron-icon {
  color: var(--slate-light);
}

.community-page .ct-dropdown .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  margin-top: 6px;
  min-width: 180px;
}

.community-page .ct-dropdown .dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}

.community-page .ct-dropdown .dropdown-menu a:hover {
  background: var(--lavender);
  color: var(--indigo);
  text-decoration: none;
}

.community-page .ct-dropdown .dropdown-menu a[aria-checked=true] {
  color: var(--indigo);
  font-weight: 700;
  background: var(--indigo-tint);
}

/* topics grid */

.community-page .ct-topic-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.community-page .ct-topic-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: transform .2s,box-shadow .2s,border-color .2s;
}

.community-page .ct-topic-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--teal),var(--indigo));
  opacity: 0;
  transition: opacity .2s;
}

.community-page .ct-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.community-page .ct-topic-card:hover::before {
  opacity: 1;
}

.community-page .ct-topic-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 24px 20px;
  color: inherit;
}

.community-page .ct-topic-name {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.community-page .ct-topic-card:hover .ct-topic-name {
  color: var(--indigo);
}

.community-page .ct-topic-name .icon-lock {
  width: 14px;
  height: 14px;
  color: var(--slate-light);
}

.community-page .ct-topic-desc {
  margin: 10px 0 0;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
}

.community-page .ct-topic-link:hover {
  text-decoration: none;
}

.community-page .ct-topic-meta {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 600;
}

.community-page .ct-topic-card.is-internal {
  background: var(--lavender);
}

/* section title (featured / activity) */

.community-page .ct-section-title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 48px 0 18px;
}

/* featured posts */

.community-page .ct-featured-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.community-page .ct-featured-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  transition: .18s;
}

.community-page .ct-featured-item:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--lavender);
  text-decoration: none;
}

.community-page .ct-featured-item .star {
  color: var(--pink);
  flex: none;
}

.community-page .ct-featured-item .arr {
  margin-left: auto;
  color: var(--slate-light);
  flex: none;
  transition: .18s;
}

.community-page .ct-featured-item:hover .arr {
  color: var(--indigo);
  transform: translateX(3px);
}

/* recent activity (styles the {{recent_activity}} helper output) */

.community-page .ct-activity .recent-activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.community-page .ct-activity .recent-activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-soft);
}

.community-page .ct-activity .recent-activity-item:last-child {
  border-bottom: 0;
}

.community-page .ct-activity .recent-activity-item:hover {
  background: var(--lavender);
}

.community-page .ct-activity .recent-activity-item a {
  color: var(--ink);
  font-weight: 600;
}

.community-page .ct-activity .recent-activity-item a:hover {
  color: var(--indigo);
}

.community-page .ct-activity .recent-activity-item-meta,
.community-page .ct-activity .recent-activity-item-time {
  color: var(--slate-light);
  font-size: 13px;
}

@media(max-width:880px) {
  .community-page .ct-topic-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .community-page .ct-featured-list {
    grid-template-columns: 1fr;
  }
}

@media(max-width:560px) {
  .community-page .ct-topic-grid {
    grid-template-columns: 1fr;
  }

  .community-page .ct-hero-title {
    font-size: 30px;
  }

  .community-page .ct-hero-search {
    padding: 38px 22px;
  }

  .community-page .ct-toolbar {
    align-items: flex-start;
  }
}

/* ============================================================
   Community POST page  (.sf-doc.community-post-page)
   ============================================================ */

/* layout: post + sidebar */

.community-post-page .post-container {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}

@media(max-width:900px) {
  .community-post-page .post-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.community-post-page .post {
  display: block;
  flex: none;
  max-width: none;
  min-width: 0;
  margin: 0;
}

/* post card */

.community-post-page article#main-content {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}

/* header: title + pills + follow */

.community-post-page .post-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.community-post-page .post-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  width: auto;
  margin: 0;
  padding: 0;
}

.community-post-page .post-title h1 {
  display: inline;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 27px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.community-post-page .post-title h1 .icon-lock {
  width: 18px;
  height: 18px;
  color: var(--slate-light);
  vertical-align: -2px;
}

.community-post-page .community-follow {
  margin: 0;
  flex: none;
  width: auto;
}

.community-post-page .community-follow button {
  width: auto;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 11px;
  padding: 9px 16px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}

.community-post-page .community-follow button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.community-post-page .community-follow button[data-selected=true] {
  background: var(--indigo-tint);
  border-color: transparent;
  color: var(--indigo);
}

.community-post-page .community-follow button::after {
  content: attr(data-follower-count);
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
  color: var(--slate-light);
}

/* author block */

.community-post-page .post-info-container {
  display: block;
}

.community-post-page .post-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.community-post-page .post-avatar {
  margin: 0;
  flex: none;
}

.community-post-page .post-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.community-post-page .post-avatar .icon-agent {
  color: var(--indigo);
}

.community-post-page .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.community-post-page .post-meta > span:first-child a,
.community-post-page .post-meta > span:first-child {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.community-post-page .post-meta > span:first-child a:hover {
  color: var(--indigo);
}

.community-post-page .meta-group-opposite {
  float: none;
}

.community-post-page .meta-data {
  color: var(--slate-light);
  font-size: 13px;
}

.community-post-page .meta-data::after {
  display: none;
}

.community-post-page .community-badge-titles {
  display: inline-flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-post-page .community-badge-title {
  background: var(--indigo-tint);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
}

.community-post-page .community-badge-achievements {
  display: flex;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-basis: 100%;
}

.community-post-page .community-badge-achievement img {
  width: 22px;
  height: 22px;
  display: block;
}

.community-post-page .community-badge-achievements-rest {
  font-size: 12px;
  color: var(--indigo);
  font-weight: 600;
}

/* post body prose */

.community-post-page .post-content {
  margin: 0;
}

.community-post-page .post-body {
  font-size: 16px;
  line-height: 1.75;
  color: #41415c;
}

.community-post-page .post-body > *:first-child {
  margin-top: 0;
}

.community-post-page .post-body p {
  margin: 0 0 16px;
}

.community-post-page .post-body h2 {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  color: var(--ink);
  font-size: 21px;
  margin: 28px 0 10px;
}

.community-post-page .post-body h3 {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  color: var(--ink);
  font-size: 18px;
  margin: 22px 0 8px;
}

.community-post-page .post-body a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.community-post-page .post-body ul,
.community-post-page .post-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.community-post-page .post-body li {
  margin: 6px 0;
}

.community-post-page .post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin: 18px 0;
}

.community-post-page .post-body blockquote {
  margin: 18px 0;
  padding: 12px 20px;
  border-left: 3px solid var(--indigo);
  background: var(--lavender);
  border-radius: 0 10px 10px 0;
  color: var(--ink);
}

.community-post-page .post-body code {
  font-family: ui-monospace,Menlo,monospace;
  font-size: .88em;
  background: var(--lavender);
  padding: .15em .42em;
  border-radius: 6px;
  color: var(--indigo-deep);
}

.community-post-page .post-body pre {
  background: #1e1b34;
  color: #e9e8f6;
  padding: 16px 18px;
  border-radius: 12px;
  overflow: auto;
  margin: 18px 0;
  font-size: 14px;
}

.community-post-page .post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* vote + actions */

.community-post-page .post-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.community-post-page .post-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px;
  width: auto;
}

.community-post-page .post-vote .vote-up,
.community-post-page .post-vote .vote-down {
  min-height: 34px;
  min-width: 34px;
  border-radius: 50%;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  cursor: pointer;
}

.community-post-page .post-vote .vote-up:hover,
.community-post-page .post-vote .vote-down:hover {
  background: var(--lavender);
  color: var(--indigo);
}

.community-post-page .post-vote .vote-up svg {
  transform: scale(1,-1);
}

.community-post-page .post-vote .vote-sum {
  color: var(--ink);
  font-weight: 700;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  min-width: 30px;
  text-align: center;
  margin: 0;
}

.community-post-page .vote-voted {
  color: var(--indigo);
}

.community-post-page .post-actions.actions {
  flex: none;
}

.community-post-page .post-actions button,
.community-post-page .comment-actions button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--slate-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.community-post-page .post-actions button:hover,
.community-post-page .comment-actions button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* post footer: share + comment count */

.community-post-page .post-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

.community-post-page .post-share ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.community-post-page .post-share li {
  height: auto;
  width: auto;
}

.community-post-page .post-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
}

.community-post-page .post-share a:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.community-post-page .post-comment-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--slate);
  font-weight: 600;
}

.community-post-page .post-comment-count .icon-comments {
  color: var(--indigo);
  width: 18px;
  height: 18px;
}

/* comments overview */

.community-post-page .comment-overview {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  border: 0;
  margin: 40px 0 0;
  padding: 0;
}

.community-post-page .comment-heading {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 22px;
  color: var(--ink);
  margin: 0;
}

.community-post-page .comment-callout {
  color: var(--slate-light);
  font-size: 14px;
}

.community-post-page .comment-sorter {
  margin-left: auto;
  float: none;
}

.community-post-page .comment-sorter .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.community-post-page .comment-sorter .dropdown-toggle:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.community-post-page .comment-sorter .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  margin-top: 6px;
  min-width: 170px;
}

.community-post-page .comment-sorter .dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}

.community-post-page .comment-sorter .dropdown-menu a:hover {
  background: var(--lavender);
  color: var(--indigo);
  text-decoration: none;
}

.community-post-page .comment-sorter .dropdown-menu a[aria-checked=true] {
  color: var(--indigo);
  font-weight: 700;
  background: var(--indigo-tint);
}

/* comment cards */

.community-post-page .comment-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-post-page .comment {
  border: 0;
  padding: 0;
}

.community-post-page .comment-wrapper {
  display: flex;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 20px 22px;
  position: relative;
}

.community-post-page .comment-wrapper.comment-official {
  border-color: var(--indigo);
  background: linear-gradient(180deg,rgba(226,29,122,.04),transparent 60%);
}

.community-post-page .comment-info {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.community-post-page .status-label-official {
  position: static;
  width: auto;
  border-radius: 999px;
  background: var(--indigo);
  color: #fff;
  display: inline-block;
  margin: 0 0 12px;
  padding: 3px 11px;
  font-size: 11.5px;
  font-weight: 700;
}

.community-post-page .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.community-post-page .comment-avatar {
  margin: 0;
  flex: none;
}

.community-post-page .comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.community-post-page .comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  flex: 1;
  min-width: 0;
}

.community-post-page .comment-meta > span:first-child a,
.community-post-page .comment-meta > span:first-child {
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
}

.community-post-page .comment-meta > span:first-child a:hover {
  color: var(--indigo);
}

.community-post-page .comment-labels {
  flex-basis: 100%;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.community-post-page .comment-labels:empty {
  display: none;
}

.community-post-page .comment-body {
  font-size: 15px;
  line-height: 1.7;
  color: #41415c;
}

.community-post-page .comment-body > *:first-child {
  margin-top: 0;
}

.community-post-page .comment-body > *:last-child {
  margin-bottom: 0;
}

.community-post-page .comment-body a {
  color: var(--indigo);
  text-decoration: underline;
}

.community-post-page .comment-actions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: none;
}

.community-post-page .comment-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border: 0;
  width: auto;
}

.community-post-page .comment-vote .vote-up,
.community-post-page .comment-vote .vote-down {
  min-height: 30px;
  min-width: 30px;
  border-radius: 50%;
  color: var(--slate-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
}

.community-post-page .comment-vote .vote-up:hover,
.community-post-page .comment-vote .vote-down:hover {
  color: var(--indigo);
}

.community-post-page .comment-vote .vote-up svg {
  transform: scale(1,-1);
}

.community-post-page .comment-vote .vote-sum {
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  margin: 1px 0;
}

/* comment form */

.community-post-page .post-comments {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.community-post-page .comment-form {
  display: flex;
  gap: 14px;
}

.community-post-page .comment-form .comment-avatar img,
.community-post-page .comment-form .user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.community-post-page .comment-container {
  flex: 1;
  min-width: 0;
}

.community-post-page .comment-form textarea,
.community-post-page .comment-form .comment-body-field,
.community-post-page #hc-wysiwyg {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  min-height: 120px;
  color: var(--ink);
}

.community-post-page .comment-form textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(226,29,122,.12);
}

.community-post-page .comment-form-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.community-post-page .comment-form-controls label {
  font-size: 14px;
  color: var(--slate);
}

.community-post-page .comment-form input[type=submit] {
  margin-left: auto;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--indigo);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 11px 24px;
  min-width: 0;
  width: auto;
  cursor: pointer;
  transition: background .18s;
}

.community-post-page .comment-form input[type=submit]:hover {
  background: var(--indigo-deep);
}

.community-post-page .post > .comment-callout {
  color: var(--slate-light);
  font-size: 14px;
  margin: 14px 0 0;
}

/* sidebar */

.community-post-page .post-sidebar {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--lavender);
  padding: 24px;
  position: sticky;
  top: 92px;
  flex: none;
  text-align: left;
}

@media(max-width:900px) {
  .community-post-page .post-sidebar {
    position: static;
  }
}

.community-post-page .post-sidebar-title {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 700;
}

.community-post-page .post-sidebar .post-to-community {
  display: block;
}

.community-post-page .post-sidebar .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--indigo);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 12px 22px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(226,29,122,.22);
  transition: background .18s,transform .18s;
}

.community-post-page .post-sidebar .button:hover {
  background: var(--indigo-deep);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* status + escalation pills */

.community-post-page .status-label {
  display: inline-block;
  margin: 0;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  background: var(--lavender);
  color: var(--slate);
  vertical-align: middle;
}

.community-post-page .status-label-featured,
.community-post-page .status-label-pinned {
  background: var(--indigo-tint);
  color: var(--indigo);
}

.community-post-page .status-label-answered,
.community-post-page .status-label-completed,
.community-post-page .status-label-solved {
  background: var(--green-bg);
  color: var(--green);
}

.community-post-page .status-label-planned,
.community-post-page .status-label-in-progress {
  background: #e8ecff;
  color: #3a45c4;
}

.community-post-page .status-label-not-planned,
.community-post-page .status-label-closed {
  background: #eef0f4;
  color: var(--slate);
}

.community-post-page .status-label-pending-moderation {
  background: #fbf0cf;
  color: #8a6b00;
}

.community-post-page .escalation-badge {
  background: var(--indigo-tint);
  color: var(--indigo);
}

/* ============================================================
   Community — New post form  (.sf-doc.community-new-post-page)
   Reuses .sf-doc .sub-nav, .page-header and the Statflo tokens.
   Append to the end of style.css.
   ============================================================ */

.sf-doc.community-new-post-page {
  max-width: 820px;
}

/* eyebrow in the page-header card */

.community-new-post-page .page-header {
  display: block;
  position: relative;
}

.community-new-post-page .np-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}

.community-new-post-page .np-eyebrow svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.community-new-post-page .page-header h1 {
  margin: 0 0 8px;
}

.community-new-post-page .page-header-description {
  font-style: normal;
  margin: 0;
  max-width: 620px;
}

/* ---- Form card ---- */

.community-new-post-page .np-form-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 34px 36px;
  box-shadow: var(--shadow-sm);
}

.community-new-post-page .np-form {
  max-width: none;
}

@media(max-width:560px) {
  .community-new-post-page .np-form-card {
    padding: 24px 20px;
  }

  .community-new-post-page .page-header {
    padding: 30px 24px;
  }
}

/* ---- Fields + labels ---- */

.community-new-post-page .form-field {
  margin: 0;
}

.community-new-post-page .form-field ~ .form-field {
  margin-top: 24px;
}

.community-new-post-page .form-field label {
  display: block;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.community-new-post-page .form-field .optional {
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--slate-light);
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.community-new-post-page .form-field p {
  color: var(--slate-light);
  font-size: 12.5px;
  margin: 6px 0 0;
}

/* ---- Text input ---- */

.community-new-post-page .form-field input:not([type=checkbox]):not([type=submit]),
.community-new-post-page .form-field input[type=text] {
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .18s,box-shadow .18s;
}

.community-new-post-page .form-field input:not([type=checkbox]):not([type=submit]):focus,
.community-new-post-page .form-field input[type=text]:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(226,29,122,.12);
}

.community-new-post-page .form-field input::placeholder {
  color: var(--slate-light);
}

/* ---- Details: WYSIWYG + textarea fallback ---- */

.community-new-post-page #hc-wysiwyg {
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
}

.community-new-post-page .form-field textarea {
  width: 100%;
  min-height: 190px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  transition: border-color .18s,box-shadow .18s;
}

.community-new-post-page .form-field textarea:focus,
.community-new-post-page #hc-wysiwyg:focus-within {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(226,29,122,.12);
}

.community-new-post-page .upload-dropzone {
  border: 1px dashed var(--line);
  border-radius: 11px;
}

.community-new-post-page .upload-dropzone span {
  color: var(--slate-light);
}

/* ---- Topic select ---- */

.community-new-post-page .form-field select,
.community-new-post-page select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background-color: #fff;
  padding: 0 38px 0 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background-position: right 14px center;
  transition: border-color .18s,box-shadow .18s;
}

.community-new-post-page select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(226,29,122,.12);
}

/* ---- Content tags ---- */

.community-new-post-page .content-tags-add-hint {
  display: block;
  color: var(--slate-light);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.community-new-post-page .nesty-input,
.community-new-post-page .hc-multiselect-toggle {
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  line-height: normal;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.community-new-post-page .nesty-input {
  padding: 0 14px;
}

.community-new-post-page .nesty-input:focus,
.community-new-post-page .hc-multiselect-toggle:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(226,29,122,.12);
  text-decoration: none;
}

/* ---- Suggestion list (shown under the title field) ---- */

.community-new-post-page .suggestion-list {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--lavender);
  padding: 6px 16px;
  font-size: 14px;
}

.community-new-post-page .suggestion-list label {
  display: block;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate-light);
  border-bottom: 1px solid var(--line);
  padding: 10px 0 8px;
  margin-bottom: 2px;
}

.community-new-post-page .suggestion-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}

.community-new-post-page .suggestion-list li:last-child {
  border-bottom: 0;
}

.community-new-post-page .suggestion-list a {
  color: var(--ink);
  font-weight: 500;
}

.community-new-post-page .suggestion-list a:hover {
  color: var(--indigo);
  text-decoration: none;
}

/* ---- Inline validation errors ---- */

.community-new-post-page .notification-inline.notification-error {
  margin-top: 8px;
  border-radius: 9px;
  border: 1px solid #e35b66;
  background-color: #fff0f1;
  color: #cc3340;
}

/* ---- Footer + submit ---- */

.community-new-post-page .np-form > footer,
.community-new-post-page .form-footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: flex-end;
}

.community-new-post-page input[type=submit] {
  width: auto;
  min-width: 0;
  cursor: pointer;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--indigo);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 12px 28px;
  box-shadow: 0 6px 18px rgba(226,29,122,.22);
  transition: background .18s,transform .18s,box-shadow .18s;
}

.community-new-post-page input[type=submit]:hover {
  background: var(--indigo-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(226,29,122,.3);
}

.community-new-post-page input[type=submit][disabled] {
  background: var(--line);
  color: var(--slate-light);
  box-shadow: none;
  transform: none;
  cursor: default;
}

@media(max-width:560px) {
  .community-new-post-page .np-form-footer {
    justify-content: stretch;
  }

  .community-new-post-page input[type=submit] {
    width: 100%;
  }
}

/* ============================================================
   Submit a request — new request form  (.sf-doc.request-new-page)
   The form itself is rendered by Zendesk's `new-request-form`
   module (Garden React components) into #new-request-form, so the
   control rules below are best-effort element-level theming.
   Append to the end of style.css.
   ============================================================ */

.sf-doc.request-new-page {
  max-width: 820px;
}

/* eyebrow in the page-header card */

.request-new-page .page-header {
  display: block;
  position: relative;
}

.request-new-page .rn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}

.request-new-page .rn-eyebrow svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.request-new-page .page-header h1 {
  margin: 0 0 8px;
}

.request-new-page .page-header-description {
  font-style: normal;
  margin: 0;
  max-width: 620px;
}

/* ---- Form card ---- */

.request-new-page .rn-container {
  display: block;
  margin: 0;
}

.request-new-page .rn-form-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 34px 36px;
  box-shadow: var(--shadow-sm);
}

@media(max-width:560px) {
  .request-new-page .rn-form-card {
    padding: 24px 20px;
  }

  .request-new-page .page-header {
    padding: 30px 24px;
  }
}

/* ---- Best-effort theming of the rendered Garden form ----
   Garden uses generated class names, so we target plain controls.
   Keep these light; remove any that fight the form's own layout. */

.request-new-page #new-request-form label {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.request-new-page #new-request-form input[type=text],
.request-new-page #new-request-form input[type=email],
.request-new-page #new-request-form input[type=number],
.request-new-page #new-request-form input[type=tel],
.request-new-page #new-request-form input[type=url],
.request-new-page #new-request-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
.request-new-page #new-request-form textarea,
.request-new-page #new-request-form select {
  border-radius: 11px;
  border-color: var(--line);
  font-family: inherit;
  color: var(--ink);
  transition: border-color .18s,box-shadow .18s;
}

.request-new-page #new-request-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):focus,
.request-new-page #new-request-form textarea:focus,
.request-new-page #new-request-form select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(226,29,122,.12);
}

.request-new-page #new-request-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* primary submit button — matches .ct-newpost */

.request-new-page #new-request-form button[type=submit],
.request-new-page #new-request-form input[type=submit] {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--indigo);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(226,29,122,.22);
  transition: background .18s,transform .18s,box-shadow .18s;
}

.request-new-page #new-request-form button[type=submit]:hover,
.request-new-page #new-request-form input[type=submit]:hover {
  background: var(--indigo-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(226,29,122,.3);
}

/* suggested-articles panel that the form can render alongside fields */

.request-new-page #new-request-form a {
  color: var(--indigo);
}

/* ===== Requests page — header eyebrow + subtitle ===== */

/* ============================================================
   Requests page — table polish  (.sf-doc.requests-page)
   Overrides the shared user-area table rules. Append to style.css.
   ============================================================ */

/* pin cell padding so it never changes across breakpoints or on hover */

.sf-doc.requests-page .my-activities-table tr {
  padding: 0;
  height: auto;
}

.sf-doc.requests-page .my-activities-table thead th {
  padding: 13px 18px;
  height: auto;
  white-space: nowrap;
}

.sf-doc.requests-page .my-activities-table tbody td {
  padding: 16px 18px;
  height: auto;
  vertical-align: middle;
  transition: background .16s ease, box-shadow .16s ease, color .16s ease;
}

/* hover is cosmetic only — background + inset accent, zero layout shift */

.sf-doc.requests-page .my-activities-table tbody tr:hover td {
  background: var(--lavender);
}

.sf-doc.requests-page .my-activities-table tbody td:first-child {
  box-shadow: inset 0 0 0 0 var(--indigo);
}

.sf-doc.requests-page .my-activities-table tbody tr:hover td:first-child {
  box-shadow: inset 3px 0 0 0 var(--indigo);
}

/* subject link */

.sf-doc.requests-page .my-activities-table .striped-list-title {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

.sf-doc.requests-page .my-activities-table tbody tr:hover .striped-list-title {
  color: var(--indigo);
  text-decoration: none;
}

/* ID + date columns: muted, tabular for tidy alignment */

.sf-doc.requests-page .my-activities-table tbody td:nth-child(2),
.sf-doc.requests-page .my-activities-table tbody td:nth-child(3),
.sf-doc.requests-page .my-activities-table tbody td:nth-child(4) {
  color: var(--slate-light);
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}

/* sortable header affordance — tiny caret + indigo hover */

.sf-doc.requests-page .my-activities-table thead th a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--slate-light);
  transition: color .16s;
}

.sf-doc.requests-page .my-activities-table thead th a:hover {
  color: var(--indigo);
  text-decoration: none;
}

.sf-doc.requests-page .my-activities-table thead th a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .55;
}

/* trailing chevron that nudges in on row hover (desktop only) */

.sf-doc.requests-page .my-activities-table tbody td.requests-table-status {
  position: relative;
  padding-right: 40px;
}

.sf-doc.requests-page .my-activities-table tbody td.requests-table-status::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--slate-light);
  border-top: 2px solid var(--slate-light);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity .16s ease, right .16s ease;
}

.sf-doc.requests-page .my-activities-table tbody tr:hover td.requests-table-status::after {
  opacity: .7;
  right: 14px;
}

/* closed requests: mute the text, keep the status pill crisp (replaces flat opacity) */

.sf-doc.requests-page .my-activities-table tbody tr.request-closed {
  opacity: 1;
}

.sf-doc.requests-page .my-activities-table tbody tr.request-closed .striped-list-title {
  color: var(--slate);
}

.sf-doc.requests-page .my-activities-table tbody tr.request-closed td {
  color: var(--slate-light);
}

/* fixed column widths so rows line up cleanly */

@media(min-width:768px) {
  .sf-doc.requests-page .my-activities-table th:nth-child(2),
  .sf-doc.requests-page .my-activities-table td:nth-child(2) {
    width: 90px;
  }

  .sf-doc.requests-page .my-activities-table th:nth-child(3),
  .sf-doc.requests-page .my-activities-table td:nth-child(3) {
    width: 150px;
  }

  .sf-doc.requests-page .my-activities-table th:nth-child(4),
  .sf-doc.requests-page .my-activities-table td:nth-child(4) {
    width: 150px;
  }

  .sf-doc.requests-page .my-activities-table th:nth-child(5),
  .sf-doc.requests-page .my-activities-table td:nth-child(5) {
    width: 140px;
  }
}

/* toolbar + search-info spacing */

.sf-doc.requests-page .requests-table-toolbar {
  margin-bottom: 22px;
}

.sf-doc.requests-page .requests-search-info.meta-data {
  margin-bottom: 14px;
  color: var(--slate);
}

.sf-doc.requests-page .requests-search-info.meta-data::after {
  content: none;
}

/* ============================================================
   Request detail — polish  (.sf-doc.request-page)
   ============================================================ */

/* the {{#form 'organization'}} wrapper is a <form> sitting directly
   inside the grid <dl>; display:contents lets its dt/dd join the grid
   so the Organization row aligns like every other row */

.sf-doc.request-page .request-details #request-organization,
.sf-doc.request-page #request-organization {
  display: contents;
}

/* neutralize Copenhagen base rules the grid override left behind */

.sf-doc.request-page .request-details {
  font-size: inherit;
}

.sf-doc.request-page .request-details dt,
.sf-doc.request-page .request-details dd {
  width: auto;
  vertical-align: baseline;
  margin: 0;
}

.sf-doc.request-page .request-details dd::after {
  content: none;
}

/* let long values wrap instead of squishing the label column */

.sf-doc.request-page .request-details dt {
  align-self: start;
  white-space: nowrap;
}

.sf-doc.request-page .request-details dd {
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

/* organization select sits full-width in its value cell */

.sf-doc.request-page .request-details dd select {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background-color: #fff;
  padding: 0 30px 0 12px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
}

.sf-doc.request-page .request-details dd select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(226,29,122,.12);
}

/* status pill / collaborators read cleanly on the right */

.sf-doc.request-page .request-details dd .status-label {
  margin: 0;
}

.sf-doc.request-page .request-details .request-collaborators {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
}

.sf-doc.request-page .request-details .request-collaborators li {
  display: inline;
}

.sf-doc.request-page .request-details .request-collaborators li:not(:last-child)::after {
  content: ", ";
}

/* ============================================================
   Search results  (.sf-doc.search-page)
   No themed search styling existed, so this is the full layer.
   Append to the end of style.css.
   ============================================================ */

.sf-doc.search-page {
  max-width: 1180px;
}

/* layout: filters left, results right */

.sf-doc.search-page .search-results {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media(min-width:1024px) {
  .sf-doc.search-page .search-results {
    flex-direction: row;
    gap: 44px;
    align-items: flex-start;
  }
}

.sf-doc.search-page .search-results-column {
  flex: 1;
  min-width: 0;
}

.sf-doc.search-page .search-results-sidebar {
  flex: none;
  border: 0;
  margin: 0;
  padding: 0;
}

@media(min-width:1024px) {
  .sf-doc.search-page .search-results-sidebar {
    width: 248px;
    position: sticky;
    top: 92px;
  }
}

/* ---- Sidebar filter groups ---- */

.sf-doc.search-page .filters-in-section {
  margin-bottom: 26px;
}

.sf-doc.search-page .sidenav-title,
.sf-doc.search-page .collapsible-sidebar-title {
  display: block;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-light);
  margin: 0 0 12px;
}

.sf-doc.search-page .multibrand-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sf-doc.search-page .sidenav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.4;
}

.sf-doc.search-page .sidenav-item:hover {
  background: var(--lavender);
  color: var(--ink);
  text-decoration: none;
}

.sf-doc.search-page .sidenav-item.current {
  background: var(--indigo-tint);
  color: var(--indigo);
  font-weight: 600;
}

.sf-doc.search-page .sidenav-item .filter-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-doc.search-page .sidenav-item .doc-count {
  flex: none;
  color: var(--slate-light);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.sf-doc.search-page .sidenav-item.current .doc-count {
  color: var(--indigo);
}

.sf-doc.search-page .see-all-filters {
  background: none;
  border: 0;
  cursor: pointer;
  display: block;
  padding: 8px 12px;
  color: var(--indigo);
  font-weight: 600;
  font-size: 13.5px;
  text-align: left;
}

.sf-doc.search-page .see-all-filters:hover {
  text-decoration: underline;
}

.sf-doc.search-page .see-all-filters[aria-hidden=true] {
  display: none;
}

/* content-tag chips */

.sf-doc.search-page .sidenav-tag {
  margin-bottom: 6px;
}

.sf-doc.search-page .sidenav-tag .content-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo-tint);
  border-radius: 999px;
  padding: 5px 12px;
}

.sf-doc.search-page .sidenav-tag .content-tag .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
}

.sf-doc.search-page .sidenav-tag .content-tag a {
  display: inline-flex;
  color: var(--indigo);
  opacity: .7;
}

.sf-doc.search-page .sidenav-tag .content-tag a:hover {
  opacity: 1;
}

.sf-doc.search-page .sidenav-tag .close-icon {
  width: 11px;
  height: 11px;
}

/* collapsible toggle: desktop static, mobile gets the chevron/x */

.sf-doc.search-page .collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid var(--indigo);
}

/* ---- Generative answer block (themed lightly; it renders its own markup) ---- */

.sf-doc.search-page .generative-answers,
.sf-doc.search-page [data-generative-answers] {
  margin-bottom: 26px;
}

/* ---- Results heading ---- */

.sf-doc.search-page .search-results-subheading {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
}

/* ---- Result cards ---- */

.sf-doc.search-page .search-results-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sf-doc.search-page .search-results-list > li {
  padding: 0;
  border: 0;
}

.sf-doc.search-page .search-results-list > li:first-child {
  border-top: 0;
}

.sf-doc.search-page .search-results-list article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 22px 24px;
  transition: box-shadow .2s,border-color .2s,transform .2s;
}

.sf-doc.search-page .search-results-list article:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.sf-doc.search-page .search-result-title-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sf-doc.search-page .search-result-title {
  font-size: 18px;
  margin: 0;
  line-height: 1.35;
}

.sf-doc.search-page .search-result-title a {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sf-doc.search-page .search-result-title a:hover {
  color: var(--indigo);
  text-decoration: none;
}

.sf-doc.search-page .search-result-title svg {
  width: 12px;
  height: 12px;
  color: var(--slate-light);
  flex: none;
}

/* vote + comment counts */

.sf-doc.search-page .search-result-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}

.sf-doc.search-page .search-result-votes,
.sf-doc.search-page .search-result-meta-count {
  color: var(--slate-light);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.sf-doc.search-page .search-result-votes-icon,
.sf-doc.search-page .search-result-meta-count-icon {
  color: var(--indigo);
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-right: 4px;
}

/* meta row: breadcrumbs · author · date */

.sf-doc.search-page .search-result-meta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-top: 10px;
  color: var(--slate-light);
  font-size: 13px;
}

.sf-doc.search-page .search-result-meta-container nav {
  min-width: 0;
}

.sf-doc.search-page .search-result-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc.search-page .search-result-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--slate-light);
  font-size: 13px;
}

.sf-doc.search-page .search-result-breadcrumbs li + li::before {
  content: "›";
  margin: 0 5px;
  color: var(--slate-light);
}

.sf-doc.search-page .search-result-breadcrumbs a {
  color: var(--slate);
}

.sf-doc.search-page .search-result-breadcrumbs a:hover {
  color: var(--indigo);
}

.sf-doc.search-page .search-result-meta-container .meta-data {
  color: var(--slate-light);
}

.sf-doc.search-page .search-result-meta-container .meta-data::after {
  content: none;
}

/* description + search-term highlight */

.sf-doc.search-page .search-result-description {
  margin: 12px 0 0;
  color: #41415c;
  font-size: 14.5px;
  line-height: 1.6;
}

.sf-doc.search-page .search-result-description em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

/* ---- No results ---- */

.sf-doc.search-page .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 56px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--lavender);
}

.sf-doc.search-page .no-results svg {
  margin-bottom: 10px;
}

.sf-doc.search-page .no-results .headline {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}

.sf-doc.search-page .no-results .action-prompt {
  color: var(--slate);
  font-size: 14px;
}

.sf-doc.search-page .no-results .action-prompt a {
  color: var(--indigo);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sf-doc.search-page .no-results .action-prompt a:hover {
  text-decoration: underline;
}

/* ---- Pagination (matches the community look) ---- */

.sf-doc.search-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
}

.sf-doc.search-page .pagination a,
.sf-doc.search-page .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--slate);
  font-weight: 600;
  font-size: 14px;
}

.sf-doc.search-page .pagination span.pagination-prev-icon {
  padding: 0 0 0 0;
}

.sf-doc.search-page .pagination a:hover {
  border-color: var(--indigo);
  color: #fff;
  text-decoration: none;
}

.sf-doc.search-page .pagination .current span {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

/* ============================================================
   Footer — enhanced multi-column layout + status pill
   ============================================================ */

.sf-footer .foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 36px;
}

/* brand block */

.sf-footer .foot-brand {
  flex: 1 1 280px;
  max-width: 340px;
}

.sf-footer .foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
  color: #fff;
}

.sf-footer .foot-logo:hover {
  text-decoration: none;
  color: #fff;
}

.sf-footer .foot-logo .sf-logo-mark {
  color: var(--teal);
  flex: none;
}

.sf-footer .foot-tagline {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 18px;
}

/* status pill on the dark footer */

.sf-footer .foot-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  --st: var(--green);
  --st-bg: rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .35s ease,border-color .35s ease,color .35s ease;
}

.sf-footer .foot-status:hover {
  text-decoration: none;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

.sf-footer .foot-status .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #94a3b8;
  position: relative;
  flex: none;
  transition: background .35s ease;
}

.sf-footer .foot-status .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .4;
  animation: pulse 2s infinite;
}

/* link columns */

.sf-footer .foot-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
}

.sf-footer .foot-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 130px;
}

.sf-footer .foot-col h4 {
  font-family: "Schibsted Grotesk","Helvetica Neue",Arial,sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
  margin: 0 0 3px;
}

.sf-footer .foot-col a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  transition: color .16s;
}

.sf-footer .foot-col a:hover {
  color: #fff;
  text-decoration: none;
}

/* bottom bar */

.sf-footer .foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.sf-footer .foot-bottom .socials {
  display: flex;
  gap: 12px;
}

.sf-footer .foot-bottom .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: .18s;
}

.sf-footer .foot-bottom .socials a:hover {
  background: #fff;
  color: var(--footer);
}

@media(max-width:760px) {
  .sf-footer .foot-top {
    flex-direction: column;
    gap: 32px;
    padding: 36px 0 28px;
  }

  .sf-footer .foot-cols {
    gap: 28px 40px;
  }

  .sf-footer .foot-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ---- Status pill: dark-footer palette (driven by data-state) ---- */

/* operational */

.sf-footer .foot-status[data-state="none"] {
  background: rgba(52,211,153,.14);
  border-color: rgba(52,211,153,.3);
  color: #7ee8b4;
}

.sf-footer .foot-status[data-state="none"] .dot {
  background: #34d399;
}

/* minor */

.sf-footer .foot-status[data-state="minor"] {
  background: rgba(251,191,36,.14);
  border-color: rgba(251,191,36,.32);
  color: #fcd591;
}

.sf-footer .foot-status[data-state="minor"] .dot {
  background: #fbbf24;
}

/* major */

.sf-footer .foot-status[data-state="major"] {
  background: rgba(251,113,133,.15);
  border-color: rgba(251,113,133,.32);
  color: #fda4af;
}

.sf-footer .foot-status[data-state="major"] .dot {
  background: #fb7185;
}

/* critical */

.sf-footer .foot-status[data-state="critical"] {
  background: rgba(244,63,94,.17);
  border-color: rgba(244,63,94,.36);
  color: #fda4af;
}

.sf-footer .foot-status[data-state="critical"] .dot {
  background: #fb6f84;
}

/* maintenance */

.sf-footer .foot-status[data-state="maintenance"] {
  background: rgba(129,140,248,.16);
  border-color: rgba(129,140,248,.34);
  color: #c7d2fe;
}

.sf-footer .foot-status[data-state="maintenance"] .dot {
  background: #a5b4fc;
}

/* loading / unknown / error — neutral */

.sf-footer .foot-status[data-state="loading"],
.sf-footer .foot-status[data-state="unknown"],
.sf-footer .foot-status[data-state="error"] {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}

.sf-footer .foot-status[data-state="loading"] .dot,
.sf-footer .foot-status[data-state="unknown"] .dot,
.sf-footer .foot-status[data-state="error"] .dot {
  background: #94a3b8;
}

.sf-search {
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(120deg,var(--teal),var(--indigo),var(--pink),var(--teal));
  background-size: 300% 100%;
  animation: sf-search-flow 8s linear infinite;
}

.sf-search input[type=search] {
  border-color: transparent;
}

@keyframes sf-search-flow {
  to {
    background-position: 300% 0;
  }
}

@media(prefers-reduced-motion:reduce) {
  .sf-search {
    animation: none;
  }
}

/* ============================================================
   Statflo article page — roomier reading layout
   Wider canvas, slimmer rails, looser vertical rhythm.
   ============================================================ */

/* more canvas + slimmer rails => ~735px reading column (was ~615) */

.sf-doc.article-page {
  max-width: 1340px;
  padding-bottom: 96px;
}

.sf-doc .article-container {
  grid-template-columns: 212px minmax(0,1fr);
  gap: 60px;
}

@media(min-width:1180px) {
  .sf-doc .article-container {
    grid-template-columns: 212px minmax(0,1fr) 196px;
    gap: 72px;
  }
}

@media(max-width:900px) {
  .sf-doc .article-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* cap the measure so wide (2-col) screens don't run lines too long */

.sf-doc .article {
  min-width: 0;
}

.sf-doc .article-header,
.sf-doc .article-info,
.sf-doc .article-footer,
.sf-doc .article > div,
.sf-doc .article-relatives,
.sf-doc .article-comments {
  max-width: 760px;
}

/* --- looser, calmer prose --- */

.sf-doc .article-body {
  font-size: 17px;
  line-height: 1.85;
  color: #3c3c58;
}

.sf-doc .article-body > *:first-child {
  margin-top: 0;
}

.sf-doc .article-body p {
  margin: 0 0 22px;
}

.sf-doc .article-body h2 {
  font-size: 26px;
  line-height: 1.25;
  margin: 52px 0 16px;
  scroll-margin-top: 90px;
}

.sf-doc .article-body h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 38px 0 12px;
  scroll-margin-top: 90px;
}

.sf-doc .article-body h4 {
  font-size: 17px;
  margin: 28px 0 10px;
}

.sf-doc .article-body ul,
.sf-doc .article-body ol {
  margin: 0 0 22px;
  padding-left: 26px;
}

.sf-doc .article-body li {
  margin: 10px 0;
}

.sf-doc .article-body li > ul,
.sf-doc .article-body li > ol {
  margin: 10px 0 0;
}

.sf-doc .article-body img {
  margin: 28px 0;
}

.sf-doc .article-body blockquote {
  margin: 28px 0;
  padding: 16px 24px;
}

.sf-doc .article-body pre {
  margin: 28px 0;
  padding: 20px 22px;
  line-height: 1.7;
}

.sf-doc .article-body table {
  margin: 28px 0;
}

.sf-doc .article-body hr {
  margin: 40px 0;
}

/* breathing room around header + section blocks */

.sf-doc .article-header {
  padding-bottom: 28px;
  margin-bottom: 38px;
}

.sf-doc .article-title {
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 20px;
}

.sf-doc .article-votes {
  margin-top: 56px;
  padding: 34px;
}

.sf-doc .article-more-questions {
  margin-top: 34px;
}

.sf-doc .article-relatives {
  margin-top: 48px;
  gap: 40px;
}

.sf-doc .article-comments {
  margin-top: 56px;
}

/* --- "On this page" rail (right column ≥1180, hidden below) --- */

.sf-doc .doc-toc {
  display: none;
}

@media(min-width:1180px) {
  .sf-doc .doc-toc {
    display: block;
    position: sticky;
    top: 92px;
    align-self: start;
  }
}

.sf-doc .doc-toc-title {
  display: block;
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-light);
  margin-bottom: 14px;
}

.sf-doc .doc-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sf-doc .doc-toc a {
  display: block;
  padding: 6px 0 6px 14px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--slate);
}

.sf-doc .doc-toc a:hover {
  color: var(--ink);
  text-decoration: none;
}

.sf-doc .doc-toc a.active {
  color: var(--indigo);
  border-left-color: var(--indigo);
  font-weight: 600;
}

.sf-doc .doc-toc .toc-h3 a {
  padding-left: 26px;
  font-size: 13px;
  color: var(--slate-light);
}

.video-library .vl-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 46px;
}

.video-library .vl-pager button {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 11px;
  cursor: pointer;
  transition: .16s;
}

.video-library .vl-pager button:hover:not(:disabled):not([aria-current]) {
  border-color: var(--indigo);
  color: var(--indigo);
}

.video-library .vl-pager button[aria-current="page"] {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
  cursor: default;
}

.video-library .vl-pager button:disabled {
  opacity: .4;
  cursor: default;
}

.video-library .vl-pager .gap {
  padding: 0 4px;
  color: var(--slate-light);
  font-weight: 600;
}

.video-library .lb-frame .lb-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: #fff;
  font-size: 15.5px;
  background: #1b1a32;
}

/* Video Library — filter toolbar */

.video-library .vl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 6px 0 22px;
}

.video-library .vl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-library .vl-chips button {
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: .16s;
}

.video-library .vl-chips button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.video-library .vl-chips button[aria-pressed="true"] {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.video-library .vl-sort {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
}

.video-library .vl-sort-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-light);
}

.video-library .vl-sort select {
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 34px 9px 14px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%238585a0' stroke-linecap='round' stroke-width='1.5' d='M3 4.5l2.6 2.6c.2.2.5.2.7 0L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.video-library .vl-sort select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}

@media(max-width:600px) {
  .video-library .vl-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .video-library .vl-sort {
    justify-content: space-between;
  }
}

/* Home-page featured video cards render as <button> */

.sf-main button.vcard {
  font: inherit;
  text-align: left;
  width: 100%;
  padding: 0;
  color: inherit;
}

.sf-main button.vcard:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,.35);
  border-color: var(--indigo);
}

.sf-main .lb-frame .lb-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: #fff;
  font-size: 15.5px;
  background: #1b1a32;
}

/* ============================================================
   System Status page  (.sf-status) — append to style.css
   Pairs with templates/system_status.hbs. Reuses the theme's
   tokens, .sf-hero, .eyebrow, .status pill, .sec-head. All
   classes are prefixed sfs- and scoped under .sf-status.
   ============================================================ */

.sf-status {
  --st-op: var(--green,#1fa463);
  --st-op-bg: var(--green-bg,#e7f6ee);
  --st-op-tx: #0e7a47;
  --st-minor: #d49400;
  --st-minor-bg: #fbf0cf;
  --st-minor-tx: #8a6b00;
  --st-partial: #d9730f;
  --st-partial-bg: #fdeede;
  --st-partial-tx: #a4530a;
  --st-major: #d33f3c;
  --st-major-bg: #fdeaea;
  --st-major-tx: #c0392b;
  --st-maint: #4a5bd0;
  --st-maint-bg: #e8ecff;
  --st-maint-tx: #3a45c4;
}

/* hero meta: updated + refresh */

.sf-status .sfs-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--slate);
}

.sf-status .sfs-meta .sfs-sep {
  color: var(--slate-light);
}

.sf-status .sfs-refresh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-family: "Hanken Grotesk",-apple-system,sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  transition: .16s;
}

.sf-status .sfs-refresh:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.sf-status .sfs-refresh svg {
  width: 13px;
  height: 13px;
}

.sf-status .sfs-refresh.is-spinning svg {
  animation: sfs-spin .8s linear infinite;
}

@keyframes sfs-spin {
  to {
    transform: rotate(360deg);
  }
}

/* sample-data notice */

.sf-status .sfs-sample {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  background: var(--st-minor-bg);
  border: 1px solid #efdca6;
  color: var(--st-minor-tx);
  border-radius: var(--r-sm);
  padding: 11px 16px;
  font-size: 14px;
}

/* shared card */

.sf-status .sfs-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sf-status .sfs-card + .sfs-card {
  margin-top: 22px;
}

.sf-status .sfs-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
}

.sf-status .sfs-card-head h2 {
  font-family: "Schibsted Grotesk",sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.sf-status .sfs-card-head .sfs-link {
  color: var(--indigo);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* legend */

.sf-status .sfs-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sf-status .sfs-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--slate-light);
  font-weight: 600;
}

.sf-status .sfs-legend i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  display: inline-block;
}

/* group label */

.sf-status .sfs-group {
  padding: 16px 22px 4px;
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate-light);
}

/* component row */

.sf-status .sfs-comp {
  padding: 17px 22px;
  border-top: 1px solid var(--line-soft);
}

.sf-status .sfs-comp:first-child {
  border-top: none;
}

.sf-status .sfs-comp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sf-status .sfs-comp-name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.sf-status .sfs-comp-desc {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 2px;
}

/* status pill (component rows + callouts) — mirrors theme .status-label palette */

.sf-status .sfs-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.sf-status .sfs-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.sf-status .sfs-pill.is-op {
  background: var(--st-op-bg);
  color: var(--st-op-tx);
  border-color: #bfe6cf;
}

.sf-status .sfs-pill.is-op i {
  background: var(--st-op);
}

.sf-status .sfs-pill.is-minor {
  background: var(--st-minor-bg);
  color: var(--st-minor-tx);
  border-color: #efdca6;
}

.sf-status .sfs-pill.is-minor i {
  background: var(--st-minor);
}

.sf-status .sfs-pill.is-partial {
  background: var(--st-partial-bg);
  color: var(--st-partial-tx);
  border-color: #f5d2ab;
}

.sf-status .sfs-pill.is-partial i {
  background: var(--st-partial);
}

.sf-status .sfs-pill.is-major,
.sf-status .sfs-pill.is-critical {
  background: var(--st-major-bg);
  color: var(--st-major-tx);
  border-color: #f3c4c2;
}

.sf-status .sfs-pill.is-major i,
.sf-status .sfs-pill.is-critical i {
  background: var(--st-major);
}

.sf-status .sfs-pill.is-maint {
  background: var(--st-maint-bg);
  color: var(--st-maint-tx);
  border-color: #ccd4f7;
}

.sf-status .sfs-pill.is-maint i {
  background: var(--st-maint);
}

/* 90-day uptime timeline — the signature element */

.sf-status .sfs-tl {
  margin-top: 13px;
}

.sf-status .sfs-tl-bars {
  display: flex;
  gap: 2px;
  height: 30px;
  align-items: stretch;
}

.sf-status .sfs-tick {
  flex: 1 1 0;
  min-width: 2px;
  border-radius: 2px;
  background: var(--st-op);
  transition: opacity .12s;
}

.sf-status .sfs-tick:hover {
  opacity: .55;
}

.sf-status .sfs-tick--op {
  background: var(--st-op);
}

.sf-status .sfs-tick--minor {
  background: var(--st-minor);
}

.sf-status .sfs-tick--partial {
  background: var(--st-partial);
}

.sf-status .sfs-tick--major {
  background: var(--st-major);
}

.sf-status .sfs-tick--maint {
  background: var(--st-maint);
}

.sf-status .sfs-tick--nodata {
  background: var(--line);
}

.sf-status .sfs-tl-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--slate-light);
}

.sf-status .sfs-uptime {
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 700;
  color: var(--ink-soft);
}

.sf-status .sfs-uptime b {
  color: var(--st-op-tx);
  font-weight: 800;
}

/* active incident / maintenance callouts */

.sf-status .sfs-callouts {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.sf-status .sfs-callout {
  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: var(--r-md);
  background: #fff;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.sf-status .sfs-callout.is-minor {
  border-left-color: var(--st-minor);
}

.sf-status .sfs-callout.is-partial {
  border-left-color: var(--st-partial);
}

.sf-status .sfs-callout.is-major,
.sf-status .sfs-callout.is-critical {
  border-left-color: var(--st-major);
}

.sf-status .sfs-callout.is-maint {
  border-left-color: var(--st-maint);
}

.sf-status .sfs-callout-h {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sf-status .sfs-callout-title {
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.sf-status .sfs-callout-body {
  margin-top: 9px;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}

.sf-status .sfs-callout-when {
  margin-top: 9px;
  font-size: 12.5px;
  color: var(--slate-light);
}

/* past incidents */

.sf-status .sfs-day {
  padding: 18px 22px;
  border-top: 1px solid var(--line-soft);
}

.sf-status .sfs-day:first-of-type {
  border-top: none;
}

.sf-status .sfs-day-date {
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .03em;
  color: var(--slate-light);
  margin-bottom: 4px;
}

.sf-status .sfs-day-empty {
  font-size: 14.5px;
  color: var(--slate-light);
}

.sf-status .sfs-inc {
  margin-top: 12px;
}

.sf-status .sfs-inc-h {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sf-status .sfs-inc-name {
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}

.sf-status .sfs-inc-body {
  margin-top: 6px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.sf-status .sfs-inc-time {
  margin-top: 5px;
  font-size: 12px;
  color: var(--slate-light);
}

/* error + skeleton */

.sf-status .sfs-error {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sf-status .sfs-error h3 {
  font-family: "Schibsted Grotesk",sans-serif;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}

.sf-status .sfs-error p {
  font-size: 15px;
  color: var(--slate);
  margin: 0 0 20px;
}

.sf-status .sfs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  background: var(--indigo);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 11px 24px;
  transition: background .18s,transform .18s;
}

.sf-status .sfs-btn:hover {
  background: var(--indigo-deep);
  transform: translateY(-1px);
}

.sf-status .sfs-skeleton {
  display: grid;
  gap: 16px;
}

.sf-status .sfs-skeleton>div {
  border-radius: var(--r-md);
  background: linear-gradient(90deg,var(--line-soft) 25%,#fafafe 37%,var(--line-soft) 63%);
  background-size: 400% 100%;
  animation: sfs-shimmer 1.4s ease infinite;
}

.sf-status .sfs-sk-a {
  height: 120px;
}

.sf-status .sfs-sk-b {
  height: 72px;
}

@keyframes sfs-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

/* footnote */

.sf-status .sfs-footnote {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--slate-light);
  text-align: center;
}

.sf-status .sfs-footnote a {
  color: var(--slate);
  font-weight: 600;
}

@media(prefers-reduced-motion:reduce) {
  .sf-status .sfs-refresh.is-spinning svg,
  .sf-status .sfs-skeleton>div {
    animation: none;
  }
}

@media(max-width:600px) {
  .sf-status .sfs-comp-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .sf-status .sfs-legend {
    display: none;
  }
}

/* ============================================================
   Day popup + clickable ticks (added for day-details feature)
   ============================================================ */

/* ticks are now <button>s — reset and make them feel clickable */

.sf-status .sfs-tick {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  display: block;
}

.sf-status .sfs-tick:hover {
  opacity: .55;
}

.sf-status .sfs-tick:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
}

/* "click a day" hint under the component list */

.sf-status .sfs-hint {
  padding: 12px 22px 16px;
  font-size: 12px;
  color: var(--slate-light);
}

/* modal */

.sf-status .sfs-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18,17,34,.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}

.sf-status .sfs-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.sf-status .sfs-modal-box {
  position: relative;
  width: min(520px,100%);
  max-height: 85vh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 28px;
  transform: scale(.96);
  transition: transform .25s cubic-bezier(.2,.8,.3,1);
}

.sf-status .sfs-modal.open .sfs-modal-box {
  transform: scale(1);
}

.sf-status .sfs-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .16s;
}

.sf-status .sfs-modal-close:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.sf-status .sfs-modal-date {
  font-size: 12.5px;
  color: var(--slate-light);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.sf-status .sfs-modal-title {
  font-family: "Schibsted Grotesk",sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  padding-right: 30px;
}

.sf-status .sfs-modal-status {
  margin-bottom: 18px;
}

.sf-status .sfs-modal-ev {
  border-top: 1px solid var(--line-soft);
  padding: 15px 0;
}

.sf-status .sfs-modal-ev:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.sf-status .sfs-modal-ev:last-child {
  padding-bottom: 0;
}

.sf-status .sfs-modal-ev-h {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sf-status .sfs-modal-ev-name {
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.sf-status .sfs-modal-ev-body {
  margin-top: 8px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.sf-status .sfs-modal-ev-time {
  margin-top: 6px;
  font-size: 12px;
  color: var(--slate-light);
}

.sf-status .sfs-modal-ev-link {
  display: inline-block;
  margin-top: 9px;
  color: var(--indigo);
  font-weight: 600;
  font-size: 13.5px;
}

.sf-status .sfs-modal-ev-link:hover {
  text-decoration: underline;
}

.sf-status .sfs-modal-ok {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--st-op-tx);
  font-weight: 600;
  font-size: 14.5px;
}

.sf-status .sfs-modal-ok svg {
  color: var(--st-op);
  flex: none;
}

@media(prefers-reduced-motion:reduce) {
  .sf-status .sfs-modal,
  .sf-status .sfs-modal-box {
    transition: none;
  }
}

/* ============================================================
   Category page — clean card layout
   ============================================================ */

.sf-doc.category-page .cat-hero {
  padding: 10px 0 32px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
}

.sf-doc.category-page .cat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Schibsted Grotesk",sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--indigo);
  margin-bottom: 14px;
}

.sf-doc.category-page .cat-hero h1 {
  font-size: 34px;
  line-height: 1.14;
  margin: 0;
}

.sf-doc.category-page .cat-hero-desc {
  margin: 10px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 680px;
}

/* section cards grid */

.sf-doc.category-page .cat-sections {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

@media(max-width:820px) {
  .sf-doc.category-page .cat-sections {
    grid-template-columns: 1fr;
  }
}

.sf-doc.category-page .cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 26px 8px;
  transition: box-shadow .22s, border-color .22s;
}

.sf-doc.category-page .cat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.sf-doc.category-page .cat-card-head {
  margin-bottom: 14px;
}

.sf-doc.category-page .cat-card-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}

.sf-doc.category-page .cat-card-title a {
  color: var(--ink);
}

.sf-doc.category-page .cat-card-title a:hover {
  color: var(--indigo);
  text-decoration: none;
}

.sf-doc.category-page .cat-card-desc {
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
}

/* article rows */

.sf-doc.category-page .cat-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-doc.category-page .cat-article {
  border-top: 1px solid var(--line-soft);
}

.sf-doc.category-page .cat-article-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.4;
}

.sf-doc.category-page .cat-article-link:hover {
  text-decoration: none;
}

.sf-doc.category-page .cat-article-icon {
  flex: none;
  display: inline-flex;
  color: var(--slate-light);
  transition: color .16s;
}

.sf-doc.category-page .cat-article.is-promoted .cat-article-icon {
  color: var(--indigo);
}

.sf-doc.category-page .cat-article-link:hover .cat-article-icon {
  color: var(--indigo);
}

.sf-doc.category-page .cat-article-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .16s;
}

.sf-doc.category-page .cat-article-link:hover .cat-article-title {
  color: var(--indigo);
}

.sf-doc.category-page .cat-article .icon-lock {
  flex: none;
  color: var(--slate-light);
}

.sf-doc.category-page .cat-article-go {
  flex: none;
  color: var(--slate-light);
  opacity: 0;
  transform: translateX(-4px);
  transition: .16s;
}

.sf-doc.category-page .cat-article-link:hover .cat-article-go {
  opacity: 1;
  transform: translateX(0);
  color: var(--indigo);
}

/* card footer link */

.sf-doc.category-page .cat-card-foot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 16px 0 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--indigo);
  font-weight: 600;
  font-size: 14px;
}

.sf-doc.category-page .cat-card-foot:hover {
  gap: 10px;
  text-decoration: none;
}

/* empty state */

.sf-doc.category-page .cat-empty {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
  text-align: center;
  color: var(--slate-light);
}

.sf-doc.category-page .cat-empty a {
  color: var(--indigo);
  font-weight: 600;
}

/* Category hero — icon tile beside the title */

.sf-doc.category-page .cat-hero-icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-tint);
  color: var(--indigo);
}

.sf-doc.category-page .cat-hero-text {
  min-width: 0;
}

@media(max-width:600px) {
  .sf-doc.category-page .cat-hero {
    gap: 14px;
  }

  .sf-doc.category-page .cat-hero-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .sf-doc.category-page .cat-hero h1 {
    font-size: 26px;
  }
}

/* Sub-nav / search — stack full width on mobile (applies to all .sf-doc pages) */

@media(max-width:600px) {
  .sf-doc .sub-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .sf-doc .search-container {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

/* ============================================================
   Section page — reuses .cat-hero + .cat-article rows
   ============================================================ */

.sf-doc.section-page .cat-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0 32px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.sf-doc.section-page .section-subscribe {
  margin-left: auto;
  flex: none;
  align-self: center;
}

.sf-doc.section-page .section-subscribe button,
.sf-doc.section-page .section-subscribe .button {
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  padding: 8px 16px;
  cursor: pointer;
  width: auto;
}

.sf-doc.section-page .section-subscribe button:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* subsection list */

.sf-doc.section-page .sec-subsections {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

@media(max-width:820px) {
  .sf-doc.section-page .sec-subsections {
    grid-template-columns: 1fr;
  }
}

.sf-doc.section-page .sec-subsection {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.sf-doc.section-page .sec-subsection:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  text-decoration: none;
}

.sf-doc.section-page .sec-subsection-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-tint);
  color: var(--indigo);
}

.sf-doc.section-page .sec-subsection-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-doc.section-page .sec-subsection-go {
  flex: none;
  color: var(--slate-light);
  transition: .18s;
}

.sf-doc.section-page .sec-subsection:hover .sec-subsection-go {
  color: var(--indigo);
  transform: translateX(3px);
}

/* articles sit in a bordered list once subsections are present */

.sf-doc.section-page .sec-article-list {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 20px;
  margin-top: 24px;
}

.sf-doc.section-page .sec-article-list .cat-article:first-child {
  border-top: 0;
}

/* empty state */

.sf-doc.section-page .sec-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 64px 28px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  background: var(--indigo-tint-2);
}

.sf-doc.section-page .sec-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate-light);
  margin-bottom: 8px;
}

.sf-doc.section-page .sec-empty h2 {
  font-size: 20px;
  margin: 0;
}

.sf-doc.section-page .sec-empty p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  max-width: 420px;
}

.sf-doc.section-page .sec-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  background: var(--indigo);
  color: #fff;
  font-family: "Schibsted Grotesk",sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: 11px;
  transition: background .18s,gap .18s;
}

.sf-doc.section-page .sec-empty-btn:hover {
  background: var(--indigo-deep);
  gap: 10px;
  text-decoration: none;
}

.sf-doc.section-page .cat-hero-icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-tint);
  color: var(--indigo);
}

.sf-doc.section-page .cat-hero-text {
  min-width: 0;
}

.sf-doc.section-page .cat-hero h1 {
  font-size: 34px;
  line-height: 1.14;
  margin: 0;
}

.sf-doc.section-page .cat-hero-desc {
  margin: 10px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 680px;
}

@media(max-width:600px) {
  .sf-doc.section-page .cat-hero {
    gap: 14px;
  }

  .sf-doc.section-page .cat-hero-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .sf-doc.section-page .cat-hero h1 {
    font-size: 26px;
  }
}

.sf-doc.section-page .section-container {
  display: block;
}

.sf-doc.section-page .section-content {
  flex: none;
  max-width: none;
  width: 100%;
}
