/**********
 Variables
 **********/
 body {
  /* Colors */
  --primary-color: rgba(16, 76, 133, 1);
  --secondary-color: rgba(47, 72, 88, 100);
  --primary-bg-color: rgba(255, 255, 255, 100);
  --primary-bg-color-always: rgba(255, 255, 255, 100);
  --secondary-bg-color: rgba(173, 216, 230, 100);
  --secondary-bg-color-always: rgba(173, 216, 230, 100);
  --primary-text-color: #000000;
  --secondary-text-color: rgba(7, 62, 115, 100);
  --link-color: rgba(16, 76, 133, 100);
  --border-color: rgba(16, 76, 133, 100);
  --placeholder-text-color: #9A9A9A;
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #092d4e;
  --primary-color-active: #082541;
  --secondary-color-hover: #1a2730;
  --secondary-color-active: #141f26;
  --secondary-bg-color-hover: #9dd1e1;
  --secondary-bg-color-active: #96cddf;
  --secondary-text-color-hover: #063460;
  --secondary-text-color-active: #052e56;
  --link-color-hover: #092d4e;
  --link-color-active: #082541;

  /* Text */
  --text-font-family: 'Montserrat', sans-serif;
  --heading-font-family: 'Montserrat', sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --text-font-size-small: calc(16px - 2px);
  --heading-1-font-size: 40px;
  --heading-2-font-size: 30px;
  --heading-3-font-size: 26px;
  --heading-4-font-size: 20px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

  /* Other */
  --border-radius-base: 8px;
  --border-radius-small: calc(8px / 2);
  --border-radius-button: 8px;
  --logo-height: 40px;

  /* Theme settings */
  --white-color: #fff;
  --border-width: 1px;
  --minus-border-width: -1px;
  --box-shadow: 0px 0px 15px rgba(233, 235, 243, .8);
  --duration: 400ms;
  --timing-function: cubic-bezier(.17, .67, .54, 1);
  --assets-check-svg: url(/hc/theming_assets/01KHKS6WAEZRX5VZVR3T1WARV5);
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  background-color: var(--primary-bg-color);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

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

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-color-hover);
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

a.link-primary,
.my-activities-menu__item a {
  color: var(--primary-color);
}

a.link-primary:hover,
.my-activities-menu__item a:hover {
  color: var(--primary-color-hover);
}

a.link-primary:active,
a.link-primary.is-active,
.my-activities-menu__item a:active {
  color: var(--primary-color-active);
}

.my-activities-menu__item.is-active a {
  color: var(--primary-text-color);
}

a.link-secondary {
  color: var(--secondary-color);
}

a.link-secondary:hover {
  color: var(--secondary-color-hover);
}

a.link-secondary:active,
a.link-secondary.is-active {
  color: var(--secondary-color-active);
}

a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

a,
button,
[type=submit],
[type=button],
[type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

figure {
  margin: 0;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.iframe {
  position: relative;
}

.iframe iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-container {
  width: 100%;
  overflow-y: auto;
}

.list-unstyled {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.list-unstyled li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.is-hidden,
[hidden] {
  display: none !important;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .is-hidden--xl {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .is-hidden--lg {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .is-hidden--md {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .is-hidden--sm {
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .is-hidden--xl-down {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-hidden--lg-down {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-hidden--md-down {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .is-hidden--sm-down {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .is-hidden--xs,
  .is-hidden--xs-down {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .is-hidden--xxl,
  .is-hidden--xxl-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-hidden--xl-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-hidden--lg-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-hidden--md-up {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .is-hidden--sm-up {
    display: none !important;
  }
}

[dir=ltr] .is-hidden--ltr {
  display: none !important;
}

[dir=rtl] .is-hidden--rtl {
  display: none !important;
}

.ui-light .is-hidden--light-mode {
  display: none !important;
}

.ui-dark .is-hidden--dark-mode {
  display: none !important;
}

/********
 Headings
 ********/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--heading-font-family);
  font-weight: 700;
}

h1, .h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

h2, .h2 {
  font-size: var(--heading-3-font-size);
  line-height: 1.3;
}

h3, .h3,
h4, .h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

h5, .h5 {
  font-size: var(--heading-5-font-size);
}

h6, .h6 {
  font-size: var(--heading-5-font-size);
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  h2, .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  h3, .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }
}

h1,
.h1 {
  margin: 0 0 1.2em;
}

.markdown h1,
.markdown .h1 {
  margin-top: 1.2em;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 0;
}

.breadcrumbs--bottom {
  margin: 12px 0 0;
}

.breadcrumbs li {
  font-size: var(--text-font-size-small);
  margin-right: 24px;
  display: block;
  position: relative;
}

.breadcrumbs li + li {
  padding-left: 28px;
}

.breadcrumbs li + li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-size: 10px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .breadcrumbs li {
    margin-right: 12px;
  }

  .breadcrumbs li + li {
    padding-left: 16px;
  }
}

/* Inner pages */
.inner-page-heading .section__title {
  margin-bottom: 12px;
}

.section__description {
  color: var(--secondary-text-color);
}

.inner-page-heading--center {
  text-align: center;
}

.inner-page {
  background-color: var(--primary-bg-color);
  padding-top: 48px;
  padding-bottom: 48px;
}

.inner-page .category-list__item {
  background-color: var(--secondary-bg-color);
}

.inner-page .category-list__item:hover,
.inner-page .category-list__item:active {
  box-shadow: none;
}

.inner-page__sections {
  margin-bottom: 10px;
}

.inner-page__sections .col-12 {
  margin-bottom: 30px;
}

.entry-info {
  display: flex;
  font-size: 14px;
}

.entry-info__avatar {
  flex-shrink: 0;
}

[dir=ltr] .entry-info__avatar {
  padding-right: 12px;
}

[dir=rtl] .entry-info__avatar {
  padding-left: 12px;
}

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

.user-avatar {
  border-radius: 100%;
}

.user-avatar--profile {
  margin-bottom: 12px;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

.meta {
  font-size: var(--text-font-size-small);
  color: var(--secondary-text-color);
}

.inner-page__rightbar + .inner-page__rightbar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.inner-page__rightbar h3,
.recent-articles-title,
.related-articles-title,
.recent-articles h3 {
  margin: 0 0 24px;
  font-size: var(--heading-3-font-size);
}

.related-articles ul,
.recent-articles ul {
  margin: 0;
  padding: 0;
  display: block;
}

.related-articles ul li,
.recent-articles ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.share {
  display: flex;
  margin: 24px 0;
  padding: 0;
}

.share li {
  display: block;
  margin: 0 12px 0 0;
  padding: 0;
  list-style: none;
}

.attachments {
  margin: 24px 0;
}

.attachment-list {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.attachment-list__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attachment-list__item + .attachment-list__item {
  margin-top: 8px;
}

.attachment-list__item i {
  color: var(--primary-color);
}

.article-vote {
  margin: 40px 0;
  border-top: var(--border-width) solid var(--border-color);
  padding-top: 24px;
  text-align: center;
}

.article-vote__title {
  margin: 0 0 24px;
}

.article-vote__count {
  margin-top: 12px;
}

.article-more-questions {
  display: none !important;
}

/* Comments */
.comments__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.comments__title {
  margin: 0;
}

.comment-form__body textarea {
  height: 112px;
  background-color: var(--secondary-bg-color);
  border-color: var(--primary-color);
}

.comment-form__attachments,
.comment-form__controls {
  margin-top: 8px;
}

.comment-form__ccs ul {
  display: block;
  margin: 0 0 8px;
}

.comment-form__mark-as-solved {
  display: flex;
  margin-bottom: 8px;
}

.comment-form__mark-as-solved label {
  margin-left: 8px;
}

.comments__list {
  padding: 0 40px 16px;
  margin: 0 -40px 40px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.comments__list--content {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.comment {
  position: relative;
  margin-bottom: 24px;
}

.comment__left {
  width: 100%;
}

.comment__sidebar {
  width: 30px;
  margin-left: 12px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.comment__sidebar ~ .comment__left {
  width: calc(100% - 42px);
  min-height: 80px;
}

.comment + .comment {
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.comment + .comment .comment__sidebar {
  top: 24px;
}

.comment__heading {
  display: flex;
  align-items: center;
}

.user-avatar {
  margin-right: 12px;
}

.comment__body {
  margin-top: 12px;
}

.comment__body .h5 {
  font-size: 18px;
}

.comment__actions {
  margin-top: 4px;
}

.request-details {
  display: flex;
  flex-wrap: wrap;
}

.request-details dt {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  font-weight: bold;
}

.request-details dd {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  color: var(--secondary-text-color);
}

.request-status {
  padding: 2px 8px;
  border: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-size: var(--text-font-size-small);
}

.request-status--open,
.request-status--new {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.request-status--answered {
  background-color: var(--warning-color);
  color: var(--white-color);
}

.request-status--solved,
.request-status--closed {
  background-color: var(--success-color);
  color: var(--white-color);
}

/**/
.my-activities-menu {
  display: flex;
  padding: 0;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: -32px;
}

.my-activities-menu__item {
  display: block;
  margin: 0 32px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 480px) {
  .my-activities-menu__item {
    margin: 0 12px 0 0;
  }
}

.my-activities-menu__item.is-active {
  padding: 0 0 12px;
  border-bottom: 3px solid var(--primary-color);
}

.my-activities {
  width: 100%;
}

.my-activities thead {
  font-weight: bold;
}

.my-activities thead td {
  padding-bottom: 12px;
}

.my-activities tbody td {
  padding: 4px 0;
}

.my-activities__btn {
  width: 10px;
}

.pagination {
  display: block;
  margin: 24px 0;
}

.pagination-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-list li + li {
  margin-left: 4px;
}

@media (max-width: 767px) {
  .my-activities__is-hidden {
    display: none !important;
  }
}

.my-activities thead .requests-link,
.my-activities thead .requests-link:hover,
.my-activities thead .requests-link:active {
  color: var(--primary-text-color);
}

.my-activities thead .requests-sort-symbol {
  font-size: 10px;
  color: var(--link-color);
  margin-left: 4px;
}

#search-filter {
  margin-bottom: 40px;
}

.filter {
  margin: 0;
}

@media (min-width: 768px) {
  .filter {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  #search-filter h3::after {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: "\f107";
    color: var(--secondary-text-color);
    margin-left: 8px;
  }
}


.filter li {
  padding: 4px 0;
}

.filter__btn {
  margin-top: 24px;
}

.topic-list__item + .topic-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.topic-list__heading {
  margin-top: 0;
}

.topic-list + .pagination {
  margin-top: 40px;
}

.topic-controls {
  margin-bottom: 40px;
}

.vote-sum {
  margin: 0 12px;
}

/* Profile */
.profile-stats:first-child {
  margin-top: 0;
}

.profile-stats__stat {
  display: flex !important;
}

.profile-stats__label {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--secondary-text-color);
  font-size: var(--text-font-size-small);
}

.profile-stats__label::after {
  content: ':';
}

.profile-stats__value {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  font-weight: bold;
  font-size: var(--text-font-size-small);
}

.community-badges-block {
  padding-bottom: 24px;
}

.community-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badges img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.community-badge-titles {
  display: inline-block;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size-small);
  font-weight: normal;
  background-color: var(--secondary-color);
  padding: 2px 4px;
  border-radius: var(--border-radius-button);
  color: var(--white-color);
  line-height: 1;
  vertical-align: middle;
}

.profile-heading {
  margin-bottom: 40px;
}

.profile-heading h2 {
  margin: 0 0 12px;
}

.profile-user-meta > span {
  display: block;
  font-weight: bold;
  color: var(--primary-text-color);
}

.profile-badges-item-image {
  display: block;
  margin-right: 12px;
}

.profile-badges-item-image img {
  width: 40px;
  height: 40px;
  display: block;
}

.profile-badges-item-image.titles {
  border-radius: 50%;
  background-color: var(--secondary-text-color);
}

.profile-badges-item-metadata {
  margin-top: 12px;
}

/* Header */
.header {
  box-shadow: var(--box-shadow);
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--primary-bg-color);
}

.header-placeholder {
  height: 60px;
}

.header__container {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: var(--logo-height);
}

.header__logo span {
  margin-left: 12px;
}

.header__menu {
  display: flex;
  margin: 0;
  padding: 0;
}

.header__menu > * {
  display: block;
}

.header__menu > * + * {
  margin-left: 22px;
}

.header__menu .fas {
  font-size: 11px;
}

.header__mobile-toggle.is-active i::before {
  content: "\f00d";
}

@media (min-width: 768px) and (max-width: 991px) {
  .header__menu,
  .header__logo span {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg-color);
    border-bottom: var(--border-width) solid var(--border-color);
  }

  .header__menu.is-active {
    display: block;
  }

  .header__menu > * {
    display: block;
    width: 100%;
    padding: 6px 15px;
  }

  .header__menu > * + * {
    margin-left: 0;
  }
}

.header__search .fas {
  font-size: 14px;
}

.header-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--primary-bg-color);
  transition: all var(--duration) var(--timing-function);
  transform: translateY(-100%);
  visibility: hidden;
}

.header-search.is-active {
  transform: translateY(0);
  visibility: visible;
}

.header-search .welcome__search input[type=search] {
  border: none;
  border-radius: 0;
  height: 60px;
  padding-left: 0;
}

/* Welcome */
.welcome {
  padding: 30px 0;
}

.welcome--with-border {
  border-bottom: var(--border-width) solid var(--border-color);
}

.welcome__title {
  margin-bottom: 37px;
}

.welcome__search {
  display: block;
  position: relative;
}

.welcome__search .meta {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.welcome__search input[type=search] {
  height: 50px;
  outline: none;
  border-color: var(--primary-color);
}

.welcome__search input[type=search]:focus,
.welcome__search input[type=search]:active {
  outline: none;
}

.welcome__search input[type=submit] {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.welcome__search input[type=submit],
.welcome__search input[type=submit]:hover,
.welcome__search input[type=submit]:focus,
.welcome__search input[type=submit]:active {
  background-color: transparent;
  border-color: transparent;
}

.welcome__search::after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .welcome {
    padding: 48px 0;
  }

  .welcome__title {
    margin-bottom: 24px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .welcome {
    padding: 30px 0;
  }

  .welcome__title {
    margin-bottom: 12px;
    font-size: var(--heading-4-font-size);
  }
}

/* Helpers */
.helpers {
  padding-top: 62px;
  padding-bottom: 62px;
}

.welcome ~ .helpers {
  padding-top: 0;
}

@media (max-width: 575px) {
  .helpers {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .welcome ~ .helpers {
    padding-top: 0;
  }
}

.helpers__item {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  background-color: var(--primary-bg-color);
  padding: 36px 12px 24px 150px;
  position: relative;
  height: 100%;
  min-height: 150px;
  border: var(--border-width) solid var(--primary-bg-color);
}

.helpers__item:hover,
.helpers__item:focus,
.helpers__item:active {
  border-color: var(--primary-color);
}

.helpers__icon {
  display: block;
  position: absolute;
  width: 110px;
  height: 110px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.helpers__icon img {
  max-width: 110px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.helpers__title {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-text-color);
}

.helpers__description {
  color: var(--secondary-text-color);
  line-height: 1;
}

@media (max-width: 991px) {
  .helpers .col {
    margin-top: 15px;
  }
}

/* Category list */
.category-list {
  background-color: var(--secondary-bg-color);
  padding: 36px 0 12px;
}

.category-list .col-12 {
  margin-bottom: 24px;
}

.category-list__item {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-button);
  background-color: var(--primary-bg-color);
  height: 100%;
  padding: 24px;
  transition: background-color var(--duration) var(--timing-function);
}

.category-list__item:hover,
.category-list__item:focus,
.category-list__item:active {
  background-color: var(--secondary-color);
}

.category-list__title {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-text-color);
  transition: color var(--duration) var(--timing-function);
}

.category-list__description {
  color: var(--secondary-text-color);
  transition: color var(--duration) var(--timing-function);
}

.category-list__item:hover .category-list__title,
.category-list__item:focus .category-list__title,
.category-list__item:active .category-list__title,
.category-list__item:hover .category-list__description,
.category-list__item:focus .category-list__description,
.category-list__item:active .category-list__description {
  color: var(--white-color);
}

@media (max-width: 575px) {
  .category-list {
    padding: 36px 0 21px;
  }

  .category-list .col-12 {
    margin-bottom: 15px;
  }

  .category-list__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}

/* Promoted articles */
.promoted {
  padding: 72px 0;
}

.promoted__title {
  margin: 0 0 33px;
}

.promoted__link {
  display: block;
  width: 100%;
  background-color: var(--secondary-bg-color);
  padding: 13px 24px;
  border-radius: var(--border-radius-base);
}

.promoted__link + .promoted__link {
  margin-top: 6px;
}

.promoted__link span {
  display: block;
}

/* CTA */
.cta {
  padding: 72px 0;
  border-top: var(--border-width) solid var(--border-color);
  text-align: center;
}

.cta__title {
  margin: 0 0 12px;
}

.cta__subtitle {
  display: block;
  font-size: 20px;
  color: var(--secondary-text-color);
  margin-bottom: 32px;
}

.cta__link {
  text-decoration: underline;
}

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

@media (max-width: 575px) {
  .cta {
    padding: 48px 0;
  }

  .cta__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/* Footer */
.footer {
  padding-bottom: 18px;
}

.footer--single {
  padding: 18px 0;
  border-top: var(--border-width) solid var(--border-color);
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-self: center;
}

@media (max-width: 767px) {
  .footer__container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
  }
}

.soc {
  font-size: 18px;
}

.soc a + a {
  margin-left: 12px;
}

/* Section */
.section {
  padding: 72px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 42px 0;
  }
}

.inner-page-heading {
  padding: 32px 0;
  background-color: var(--secondary-bg-color);
}

/* Category tree */
.category-tree__section {
  margin-bottom: 42px;
}

.category-tree__section-name {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-text-color);
}

.category-tree__subsections,
.category-tree__articles {
  display: block;
  margin-bottom: 12px;
}

.category-tree__subsection {
  display: block;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-small);
  padding: 4px 12px;
}

.category-tree__subsection + .category-tree__subsection {
  margin-top: 4px;
}

.category-tree__article {
  display: block;
}

.category-tree__article + .category-tree__article {
  margin-top: 4px;
}

.comments {
  background-color: var(--secondary-bg-color);
}

.comments__container {
  border-radius: var(--border-radius-base);
}

.markdown {
  width: 100%;
  overflow: hidden;
}

.markdown pre {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
  font-size: 14px;
  padding: 12px;
  overflow-x: auto;
}

[dir] zd-autocomplete-title-multibrand,
[dir] zd-autocomplete-header {
  font-family: var(--heading-font-family);
  font-size: var(--text-font-size);
  line-height: 1.5;
  color: var(--link-color);
  margin-bottom: 8px;
}

[dir] zd-autocomplete-multibrand,
[dir] zd-autocomplete-option {
  font-family: var(--text-font-family);
  line-height: 1.5;
  font-size: var(--heading-6-font-size);
  color: var(--link-color);
  border-color: var(--border-color);
  transition: all var(--duration) var(--timing-function);
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-radius: 0;
}

[dir] zd-autocomplete-multibrand:hover,
[dir] zd-autocomplete-multibrand[aria-selected="true"],
[dir] zd-autocomplete-option:hover,
[dir] zd-autocomplete-option[aria-selected="true"] {
  background-color: var(--secondary-bg-color);
  box-shadow: var(--primary-color) 3px 0 inset;
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-bottom: none !important;
}

[dir] zd-autocomplete-breadcrumbs-multibrand {
  color: var(--secondary-text-color) !important;
}

.my-activities__filter {
  display: flex;
  align-items: flex-end;
  margin-top: 12px;
  margin-bottom: 32px;
}

.my-activities__filter > * + * {
  margin-left: 8px;
}

.my-activities__filter label[for] {
  margin-bottom: 4px;
}

.my-activities__search {
  width: 50%;
  position: relative;
}

.my-activities__search input[type="search"] {
  padding-left: 42px;
}

.my-activities__search::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f002";
  left: 15px;
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .my-activities__filter {
    flex-direction: column;
  }

  .my-activities__filter > * {
    width: 100%;
  }

  .my-activities__filter > * + * {
    margin-left: 0;
    margin-top: 8px;
  }
}

.markdown > * {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

/* Wysiwyg body */
.wysiwyg-body p code {
  display: inline-block;
  padding: 0 0.25em;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-bg-color);
  color: var(--primary-text-color);
  white-space: pre;
}

.wysiwyg-body pre {
  background-color: var(--secondary-bg-color) !important;
  border: 1px solid var(--border-color);
  color: var(--primary-text-color);
  padding: 10px 15px;
  white-space: pre;
  border-radius: 3px;
  overflow-x: auto;
}

.wysiwyg-body pre code {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.wysiwyg-body a {
  text-decoration: underline;
}

.wysiwyg-body a:hover {
  text-decoration: none;
}

.wysiwyg-body blockquote {
  border-left: 5px solid var(--border-color);
  font-style: italic;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.approval-request .fSbCBS {
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
}

.approval-request .bFtQSZ {
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-base);
}

.powered-by-zendesk a {
  color: var(--secondary-text-color);
}

[dir] zd-summary-block {
  color: var(--primary-text-color);
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  border-color: var(--primary-color);
}

/* Blockquotes */
.markdown blockquote {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

[dir=ltr] .markdown blockquote {
  border-top-right-radius: var(--border-radius-base, 8px);
  border-bottom-right-radius: var(--border-radius-base, 8px);
  border-left: 4px solid var(--primary-color, #436436);
  padding: 8px 0 8px 12px;
}

[dir=rtl] .markdown blockquote {
  border-top-left-radius: var(--border-radius-base, 8px);
  border-bottom-left-radius: var(--border-radius-base, 8px);
  border-right: 4px solid var(--primary-color, #436436);
  padding: 8px 12px 8px 0;
}

@media (min-width: 768px) {
  [dir=ltr] .markdown blockquote {
    padding: 8px 0 8px 24px;
  }

  [dir=rtl] .markdown blockquote {
    padding: 8px 24px 8px 0;
  }
}

.markdown blockquote::before {
  content: "\f10e";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  z-index: -1;
  top: -8px;
  font-size: 50px;
  color: var(--secondary-bg-color, #f1f4fa);
}

[dir=ltr] .markdown blockquote::before {
  left: 8px;
}

[dir=rtl] .markdown blockquote::before {
  right: 8px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  [dir=ltr] .markdown blockquote::before {
    left: 12px;
  }

  [dir=rtl] .markdown blockquote::before {
    right: 12px;
  }
}

@media (min-width: 1024px) {
  [dir=ltr] .markdown blockquote::before {
    left: 16px;
  }

  [dir=rtl] .markdown blockquote::before {
    right: 16px;
  }
}

/* Tables */
[dir] figure.wysiwyg-table {
  display: block;
  width: 100%;
  overflow-y: auto;
}

#service-catalog a {
  color: var(--primary-text-color);
}

/* Copyright */
.powered-by-zendesk {
  display: none !important;
}

html[dir] .pp-copyright {
  display: block;
  padding: 16px 6px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: var(--primary-text-color);
  text-decoration: none;
}

html[dir] .pp-copyright span {
  opacity: 0.5;
  text-decoration: none;
  transition: all .3s ease;
}

html[dir] .pp-copyright:hover span {
  opacity: 1;
  text-decoration: underline;
}

/* ========== Czech Vignette Design (matches design image) ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

:root {
  --cv-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --cv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --cv-blue-900: #436436;
  --cv-blue-800: #436436;
  --cv-blue-200: #436436;
  --cv-teal-700: #0f766e;
  --cv-teal-500: #14b8a6;
  --cv-teal-50: #f0fdfa;
  --cv-gray-50: #f9fafb;
  --cv-gray-200: #e5e7eb;
  --cv-gray-400: #9ca3af;
  --cv-gray-500: #6b7280;
  --cv-gray-700: #374151;
  --cv-gray-800: #1f2937;
  --cv-gray-900: #111827;
  --cv-radius-small: 8px;
  --cv-radius-large: 16px;
  --cv-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --cv-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
  font-family: var(--cv-font-body);
  background-color: var(--cv-gray-50);
}

.cv-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .cv-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .cv-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ----- Header (ամբողջությամբ նկարի նման) ----- */
.header.cv-design {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: none;
}

.header-placeholder {
  height: 80px;
}

.cv-header__row-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  gap: 1rem;
}

.cv-header__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  justify-self: start;
}

.cv-header__logo-link:hover {
  color: inherit;
}

.cv-header__logo-box {
  width: 140px;
}

.cv-header__logo-icon {
  color: #ffffff;
  font-size: 24px;
  font-family: 'Material Symbols Outlined', sans-serif;
}

.cv-header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cv-header__logo-title {
  font-family: var(--cv-font-heading);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #436436;
}

.cv-header__logo-subtitle {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.cv-header__nav {
  display: none;
  align-items: center;
  justify-self: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .cv-header__nav {
    display: flex;
  }
}

.cv-header__nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.cv-header__nav-link:hover {
  color: #436436;
}

.cv-header__nav-link--active {
  color: #436436;
  border-bottom: 2px solid #436436;
  padding-bottom: 6px;
}

.cv-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.cv-header__lang {
  display: none;
}
@media (min-width: 768px) {
  .cv-header__lang {
    display: block;
  }
}

.cv-header__lang-trigger,
.cv-header__user-trigger {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  background: none;
  border: none;
}

.cv-header__lang-trigger:hover,
.cv-header__user-trigger:hover {
  color: #436436;
}

.cv-header__lang-trigger .fas,
.cv-header__user-trigger .fas {
  font-size: 10px;
}

/* Language dropdown: 2-column layout (header + mobile)
   Use !important because the theme dropdown may set display inline. */
.cv-header__lang .dropdown__content,
.cv-header__mobile-menu .cv-header__lang-trigger + .dropdown__content {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.125rem;
  padding: 6px !important;
  min-width: 400px;
  overflow: auto;
}

.cv-header__lang .dropdown__menuitem,
.cv-header__mobile-menu .cv-header__lang-trigger + .dropdown__content .dropdown__menuitem {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  white-space: normal;
  break-inside: avoid;
}
.dropdown__menuitem{
  margin: 0 0 !important;
  padding: 6px 12px !important;
}

@media (max-width: 420px) {
  .cv-header__lang .dropdown__content,
  .cv-header__mobile-menu .cv-header__lang-trigger + .dropdown__content {
    grid-template-columns: 1fr;
    min-width: 220px;
  }
}

.cv-header__signin-link {
  font-size: 14px;
  font-weight: 600;
  color: #436436;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cv-header__signin-link:hover {
  color: #436436;
}

.cv-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #436436;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.cv-header__cta:hover {
  background-color: #436436;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #ffffff;
}

.cv-header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .cv-header__mobile-actions {
    display: none;
  }
}

.cv-header__icon-btn {
  padding: 0.5rem;
  color: var(--cv-gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cv-header__icon-btn:hover {
  color: var(--cv-blue-900);
}

.cv-header__dropdown {
  position: relative;
}

.cv-dropdown__panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--cv-gray-200);
  border-radius: var(--cv-radius-small);
  box-shadow: var(--cv-shadow-hover);
  padding: 4px 0;
  z-index: 100;
}

.cv-dropdown__panel--user {
  min-width: 200px;
}

.dropdown.is-open .cv-dropdown__panel,
.dropdown[data-state="open"] .cv-dropdown__panel {
  display: block;
}

.cv-dropdown__item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--cv-gray-700);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.cv-dropdown__item:hover {
  background-color: var(--cv-gray-50);
  color: var(--cv-blue-900);
}

.cv-dropdown__item--border {
  border-top: 1px solid var(--cv-gray-200);
  margin-top: 4px;
  padding-top: 8px;
}

.cv-header__mobile-menu {
  display: none !important;
  border-top: 1px solid var(--cv-gray-200);
  padding: 1rem 0;
}

@media (max-width: 767px) {
  .cv-header__mobile-menu.is-active {
    display: block !important;
  }
}

.cv-header__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cv-header__mobile-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cv-gray-700);
  padding: 0.5rem 0;
  text-decoration: none;
}

.cv-header__mobile-link:hover {
  color: var(--cv-blue-900);
}

.cv-header__mobile-link--active {
  color: var(--cv-blue-900);
  font-weight: 700;
}

.cv-header__mobile-menu .cv-header__dropdown {
  margin-bottom: 1rem;
}

.cv-header__mobile-menu .cv-dropdown__panel {
  position: static;
  margin-top: 0.5rem;
  margin-left: 1rem;
  box-shadow: none;
  border: none;
}

.cv-header__search-wrap .cv-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cv-header__search-wrap .welcome__search input[type=search] {
  height: 56px;
  padding-left: 1rem;
  padding-right: 3.5rem;
  border: 1px solid var(--cv-gray-200);
  border-radius: var(--cv-radius-small);
  font-size: 1rem;
}

.cv-header__search-wrap .welcome__search::after {
  right: 1rem;
  color: var(--cv-gray-400);
}

/* ----- Hero / Welcome ----- */
.welcome,
.welcome.cv-hero {
  padding: 5rem 0;
  background: #436436;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.welcome::before,
.cv-hero::before {
  display: none;
}

.welcome::after,
.cv-hero::after {
  display: none;
}

.cv-hero__deco {
  display: none;
}

.welcome__title,
.cv-hero__title {
  font-family: var(--cv-font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .welcome__title,
  .cv-hero__title {
    font-size: 3.5rem;
  }
}

.cv-hero__subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #436436;
  text-align: center;
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

.cv-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cv-hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cv-hero__deco--top-right {
  top: 2rem;
  right: 4rem;
  width: 12rem;
  height: 12rem;
  background: rgba(20, 184, 166, 0.1);
  filter: blur(40px);
}

.cv-hero__deco--bottom-left {
  bottom: 1rem;
  left: 6rem;
  width: 8rem;
  height: 8rem;
  background: rgba(67, 100, 54, 0.1);
  filter: blur(32px);
}

.cv-hero__search-wrap {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}

.cv-hero__search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--cv-radius-small);
  box-shadow: var(--cv-shadow-hover);
  overflow: hidden;
}

.cv-hero__search-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: #9ca3af;
}

.cv-hero__search-icon .material-symbols-outlined,
.cv-hero__search-icon .fas,
.cv-hero__search-icon i {
  font-size: 1.35rem;
  color: #9ca3af;
}

.cv-hero__search-icon .material-symbols-outlined {
  font-family: 'Material Symbols Outlined', sans-serif;
  font-weight: 400;
}

.cv-hero__search {
  flex: 1;
  position: relative;
  min-width: 0;
}

.cv-hero__search form {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.cv-hero__search input[type=search] {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 1rem 1rem 1rem 0.5rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cv-gray-800);
}

.cv-hero__search input[type=search]::placeholder {
  color: var(--cv-gray-400);
}

.cv-hero__search input[type=submit] {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  height: 56px;
  background: var(--cv-blue-900);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cv-hero__search input[type=submit]:hover {
  background: var(--cv-blue-800);
}

.cv-hero__search::after {
  display: none;
}

.cv-hero__popular {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(67, 100, 54, 0.8);
  margin-top: 0.75rem;
}

.cv-hero__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 42rem;
  margin: 2.5rem auto 0;
}
@media (min-width: 640px) {
  .cv-hero__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cv-hero__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--cv-radius-large);
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cv-hero__card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cv-hero__card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--cv-radius-small);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-hero__card:hover .cv-hero__card-icon {
  background: rgba(255, 255, 255, 0.3);
}

.cv-hero__card-icon .material-symbols-outlined,
.cv-hero__card-icon .fas,
.cv-hero__card-icon i {
  font-size: 1.25rem;
  color: #fff;
}

.cv-hero__card-icon .material-symbols-outlined {
  font-family: 'Material Symbols Outlined', sans-serif;
  font-weight: 400;
}

.cv-hero__card-title {
  font-family: var(--cv-font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  margin: 0 0 0.125rem 0;
}

.cv-hero__card-desc {
  font-size: 0.75rem;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.welcome__search {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.welcome__search input[type=search] {
  height: 56px;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: var(--cv-radius-small);
  background: #fff;
  font-size: 1rem;
  box-shadow: var(--cv-shadow-hover);
}

.welcome__search input[type=search]:focus {
  outline: none;
}

.welcome__search input[type=submit] {
  width: auto;
  height: auto;
  padding: 1rem 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--cv-blue-900);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  border-radius: 0 var(--cv-radius-small) var(--cv-radius-small) 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.welcome__search input[type=submit]:hover {
  background: var(--cv-blue-800);
}

.welcome__search::after {
  left: 1rem;
  right: auto;
  color: var(--cv-gray-400);
}

.welcome .meta {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(67, 100, 54, 0.8);
  margin-top: 0.75rem;
}

.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section__title {
  font-family: var(--cv-font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cv-gray-900);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.category-tree__section-name,
.category-tree__section-name a {
  display: block;
}

.category-tree__section-name a,
.helpers__item {
  background: #fff;
  border: 1px solid var(--cv-gray-200);
  border-radius: var(--cv-radius-large);
  padding: 1.25rem;
  box-shadow: var(--cv-shadow);
  text-decoration: none;
  color: var(--cv-gray-900);
  transition: box-shadow 0.2s ease;
}

.category-tree__section-name a:hover,
.helpers__item:hover {
  box-shadow: var(--cv-shadow-hover);
  color: var(--cv-blue-900);
}

.helpers__item {
  padding: 1.5rem 1rem 1rem 6rem;
}

/* Category grid (design: teal-50 bg, card grid) */
.cv-category-grid {
  background: rgba(240, 253, 250, 0.6);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.cv-category-grid__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cv-category-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cv-category-card {
  display: block;
  background: #fff;
  border: 1px solid var(--cv-gray-200);
  border-radius: var(--cv-radius-large);
  padding: 1.25rem;
  box-shadow: var(--cv-shadow);
  text-decoration: none;
  color: var(--cv-gray-900);
  transition: box-shadow 0.2s ease, color 0.2s ease;
}

.cv-category-card:hover {
  box-shadow: var(--cv-shadow-hover);
  color: var(--cv-blue-900);
}

.cv-category-card--full {
  grid-column: 1 / -1;
}

.cv-category-card__title {
  font-family: var(--cv-font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
  color: inherit;
}

.cv-category-card__desc {
  font-size: 0.875rem;
  color: var(--cv-gray-500);
  margin: 0;
}

/* Promoted articles (design: teal-50 rows, chevron) */
.cv-promoted {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.cv-section__title {
  font-family: var(--cv-font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cv-gray-900);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.cv-promoted__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cv-promoted__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cv-teal-50);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--cv-radius-small);
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  color: var(--cv-gray-800);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.cv-promoted__link:hover {
  background: #ccfbf1;
  color: var(--cv-blue-900);
}

.cv-promoted__link-text {
  flex: 1;
}

.cv-promoted__chevron {
  font-size: 1rem;
  color: var(--cv-gray-400);
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.cv-promoted__link:hover .cv-promoted__chevron {
  color: var(--cv-blue-900);
}

/* ----- Section page hero (deep blue gradient — match design ref) ----- */
.cv-section-hero {
  background: linear-gradient(
    90deg,
    #436436 0%,
    #436436 35%,
    #436436 70%,
    #436436 100%
  );
  color: #fff;
  padding: 2.5rem 0 3rem;
}

.cv-section-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
}

.cv-section-hero__bc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cv-section-hero__bc-link:hover {
  color: #fff;
  opacity: 1;
}

/* FA5 solid webfont uses font-weight:900; 400 shows missing-glyph boxes */
.cv-section-hero__bc-link .fas {
  font-size: 0.8125rem;
  font-weight: 900;
  opacity: 1;
}

.cv-section-hero__bc-sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.625rem;
  display: inline-flex;
  align-items: center;
}

.cv-section-hero__bc-sep .fas {
  font-weight: 900;
}

.cv-section-hero__bc-current {
  font-weight: 700;
  color: #fff;
}

.cv-section-hero__main {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (max-width: 639px) {
  .cv-section-hero__main {
    flex-direction: column;
    align-items: stretch;
  }
}

.cv-section-hero__icon-wrap {
  flex-shrink: 0;
  width: 4.75rem;
  height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cv-section-hero__icon-symbol {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  opacity: 0.98;
}

.cv-section-hero__text {
  flex: 1;
  min-width: 0;
}

.cv-section-hero__title {
  font-family: var(--cv-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem 0;
  color: #fff;
}

.cv-section-hero__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: #cdcdcd;
  margin: 0 0 1.25rem 0;
  max-width: 48rem;
}

.cv-section-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.cv-section-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  background: rgba(67, 100, 54, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  box-shadow: none;
}

.cv-section-hero__pill .fas {
  font-size: 0.875rem;
  font-weight: 900;
  color: #436436;
  opacity: 1;
}

.cv-section-hero__subscribe {
  margin-top: 1.25rem;
}

.cv-section-hero__subscribe a,
.cv-section-hero__subscribe button {
  color: #fff;
}

/* ----- Request confirmation hero (request_page) ----- */
.cv-request-confirm-hero {
  background: linear-gradient(100deg, #0f8f87 0%, #0e938e 38%, #436436 66%, #436436 100%);
  color: #fff;
  padding: 1.9rem 0 2.1rem;
}

.cv-request-confirm-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
}

.cv-request-confirm-hero__bc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(67, 100, 54, 0.78);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cv-request-confirm-hero__bc-link:hover {
  color: #fff;
}

.cv-request-confirm-hero__bc-link .fas {
  font-size: 0.75rem;
  font-weight: 900;
  color: rgba(67, 100, 54, 0.82);
}

.cv-request-confirm-hero__bc-sep {
  color: rgba(67, 100, 54, 0.48);
  font-size: 0.625rem;
  display: inline-flex;
  align-items: center;
}

.cv-request-confirm-hero__bc-sep .fas {
  font-weight: 900;
}

.cv-request-confirm-hero__bc-current {
  color: #fff;
  font-weight: 700;
}

.cv-request-confirm-hero__main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cv-request-confirm-hero__icon-wrap {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cv-request-confirm-hero__icon {
  font-size: 0.9rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}

.cv-request-confirm-hero__title {
  margin: 0 0 0.2rem 0;
  color: #fff;
  font-family: var(--cv-font-heading);
  font-size: clamp(1.65rem, 3.6vw, 2.25rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cv-request-confirm-hero__desc {
  margin: 0;
  color: rgba(67, 100, 54, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cv-request-confirm-hero {
    padding: 1.35rem 0 1.55rem;
  }

  .cv-request-confirm-hero__breadcrumb {
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
  }

  .cv-request-confirm-hero__title {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
  }

  .cv-request-confirm-hero__desc {
    font-size: 0.85rem;
  }
}

.cv-request-confirm-page {
  background: #f4f7fb;
  padding: 1.35rem 0 2.5rem;
}

.cv-request-confirm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.3rem;
  align-items: start;
}

.cv-request-confirm-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv-request-confirm-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 2px rgba(67, 100, 54, 0.03);
}

.cv-request-confirm-card__header {
  margin: 0 0 0.8rem 0;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #edf2f7;
}

.cv-request-confirm-card__title {
  margin: 0;
  font-family: var(--cv-font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #436436;
  font-weight: 800;
}

.cv-request-confirm-card--success {
  border: 1px solid #436436;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.cv-request-confirm-card__success-top {
  background: linear-gradient(125deg, #179e97 0%, #20b2a8 55%, #23b6a8 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.55rem 1rem 1.35rem;
}

.cv-request-confirm-card__success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.26);
}

.cv-request-confirm-card__success-icon .fas {
  font-size: 1.35rem;
  font-weight: 900;
}

.cv-request-confirm-card__success-title {
  margin: 0.05rem 0 0;
  color: #fff;
  font-family: var(--cv-font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.15rem);
  line-height: 1.12;
}

.cv-request-confirm-card__success-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.cv-request-confirm-card__reference {
  background: #f8fafc;
  border-top: 1px solid #436436;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cv-request-confirm-card__reference-main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.cv-request-confirm-card__reference-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.8rem;
  background: #436436;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-request-confirm-card__reference-icon .fas {
  font-size: 0.9rem;
  font-weight: 900;
}

.cv-request-confirm-card__reference-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.15rem;
}

.cv-request-confirm-card__reference-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #436436;
}

.cv-request-confirm-card__reference-id {
  color: #436436;
  font-family: var(--cv-font-heading);
  font-size: 0.5rem;
  line-height: 1.05;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.cv-request-confirm-card__copy-btn {
  border: 1px solid #436436;
  background: #fff;
  color: #436436;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  min-height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.cv-request-confirm-card__copy-btn:hover {
  border-color: #436436;
  color: #436436;
  background: #f8fbff;
}

.cv-request-confirm-card__copy-btn .fa-copy,
.cv-request-confirm-card__copy-btn .fa-check {
  font-size: 0.9rem;
}

.cv-request-confirm-card__summary-block {
  padding: 1.2rem 1.35rem 1.25rem;
  border-top: 1px solid #436436;
  background: #fff;
}

.cv-request-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cv-request-summary-item {
  border: 1px solid #eef2f7;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.65rem 0.75rem;
  min-height: 4.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
}

.cv-request-summary-item__label {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #436436;
  font-weight: 700;
}

.cv-request-summary-item__value {
  font-size: 0.85rem;
  line-height: 1.35;
  color: #436436;
  font-weight: 700;
}

.cv-request-summary-extra {
  margin-top: 0.9rem;
  border-top: 1px solid #edf2f7;
  padding-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.cv-request-summary-extra__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed #edf2f7;
}

.cv-request-summary-extra__row:last-child {
  border-bottom: none;
}

.cv-request-summary-extra__label {
  font-size: 0.78rem;
  color: #436436;
  font-weight: 600;
}

.cv-request-summary-extra__value {
  font-size: 0.8rem;
  color: #436436;
  text-align: right;
}

.cv-request-next-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.cv-request-next-list__item {
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.cv-request-next-list__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  top: 2rem;
  width: 2px;
  height: calc(100% - 0.2rem);
  background: #436436;
}

.cv-request-next-list__marker {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: #436436;
  color: #436436;
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cv-request-next-list__item--done .cv-request-next-list__marker {
  background: #0f9d8e;
  color: #fff;
}

.cv-request-next-list__item--progress .cv-request-next-list__marker {
  background: #436436;
  color: #fff;
}

.cv-request-next-list__marker .fas {
  font-size: 0.8rem;
  font-weight: 900;
}

.cv-request-next-list__body {
  padding-top: 0.05rem;
}

.cv-request-next-list__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.12rem;
}

.cv-request-next-list__title {
  color: #436436;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.cv-request-next-list__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.1;
}

.cv-request-next-list__badge--done {
  color: #0f766e;
  background: #ccfbf1;
  border: 1px solid #99f6e4;
}

.cv-request-next-list__badge--progress {
  color: #436436;
  background: #436436;
  border: 1px solid #436436;
}

.cv-request-next-list__desc {
  color: #436436;
  font-size: 0.88rem;
  line-height: 1.45;
  display: block;
}

.cv-request-next-actions .cv-request-confirm-card__header {
  margin-bottom: 0.95rem;
  border-bottom: none;
  padding-bottom: 0;
}

.cv-request-next-actions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.cv-request-next-actions__item {
  text-decoration: none;
  color: inherit;
  border: 1px solid #e6ebf2;
  background: #f8fafc;
  border-radius: 12px;
  min-height: 6.2rem;
  padding: 0.85rem 0.95rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cv-request-next-actions__item:hover {
  border-color: #436436;
  background: #f5f8fc;
}

.cv-request-next-actions__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #436436;
  color: #436436;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-request-next-actions__icon .fas {
  font-size: 0.85rem;
  font-weight: 900;
}

.cv-request-next-actions__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.2rem;
}

.cv-request-next-actions__item-title {
  color: #436436;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.3;
}

.cv-request-next-actions__item-subtitle {
  color: #436436;
  font-size: 0.86rem;
  line-height: 1.35;
}

.cv-request-confirm-card .comments__list {
  margin-bottom: 0.75rem;
}

.cv-request-confirm-card .comment {
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.65rem;
  background: #fff;
}

.cv-request-confirm-card .comment:last-child {
  margin-bottom: 0;
}

.cv-request-confirm-card .comments__callout {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  color: #436436;
}

.cv-request-confirm-card .comment-form {
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 0.8rem;
  background: #f8fafc;
}

.cv-request-confirm-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cv-request-sidebar__submitted-by {
  margin: 0 0 0.7rem;
  color: #436436;
  font-size: 0.8rem;
  line-height: 1.4;
}

.cv-request-sidebar__new-request-btn-wrap {
  margin: 0;
}

.cv-request-sidebar__new-request-btn-wrap .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 991px) {
  .cv-request-confirm-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cv-request-confirm-page {
    padding-top: 1rem;
  }

  .cv-request-confirm-card {
    padding: 0.85rem;
  }

  .cv-request-summary-grid {
    grid-template-columns: 1fr;
  }

  .cv-request-next-actions__grid {
    grid-template-columns: 1fr;
  }

  .cv-request-confirm-card__success-top {
    padding: 1.2rem 0.9rem 1.05rem;
  }

  .cv-request-confirm-card__success-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-width: 2px;
  }

  .cv-request-confirm-card__success-title {
    font-size: 1.35rem;
  }

  .cv-request-confirm-card__success-text {
    font-size: 0.85rem;
  }

  .cv-request-confirm-card__reference {
    padding: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-request-confirm-card__summary-block {
    padding: 0.95rem 0.9rem 1rem;
  }

  .cv-request-confirm-card__reference-id {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    white-space: normal;
    word-break: break-word;
  }

  .cv-request-confirm-card__copy-btn {
    width: 100%;
  }

  .cv-request-summary-extra__row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .cv-request-summary-extra__value {
    text-align: left;
  }
}

/* ----- New request page (full design: breadcrumb bar + hero + 2-col + steps + CTA) ----- */
.cv-request-breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf3;
  padding: 0.75rem 0;
}

.cv-request-breadcrumb-bar__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
}

.cv-request-breadcrumb-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #436436;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cv-request-breadcrumb-bar__link:hover {
  color: #436436;
}

.cv-request-breadcrumb-bar__link .fas {
  font-size: 0.8125rem;
  font-weight: 900;
  color: #436436;
}

.cv-request-breadcrumb-bar__sep {
  color: #436436;
  font-size: 0.625rem;
  display: inline-flex;
}

.cv-request-breadcrumb-bar__sep .fas {
  font-weight: 900;
}

.cv-request-breadcrumb-bar__current {
  font-weight: 700;
  color: #436436;
}

.cv-section-hero--request {
  background: linear-gradient(125deg, #436436 0%, #436436 38%, #0f766e 100%);
  padding: 2.25rem 0 2.75rem;
}

.cv-section-hero--request .cv-section-hero__main {
  margin-top: 0;
}

.cv-request-page {
  background: #f4f7f9;
  padding: 2rem 0 2.5rem;
}

.cv-request-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .cv-request-page__layout {
    grid-template-columns: 1fr;
  }
}

.cv-request-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
  background: #f0fbf9;
  border: 1px solid #aee9e1;
  border-radius: 12px;
  color: #004f54;
}

.cv-request-notice__icon {
  flex-shrink: 0;
  color: #004f54;
  font-size: 1.125rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.cv-request-notice__icon .fas {
  font-weight: 900;
}

.cv-request-notice__content {
  flex: 1;
  min-width: 0;
}

.cv-request-notice__title {
  margin: 0 0 0.45rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: #004f54;
}

.cv-request-notice__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #004f54;
  font-weight: 400;
}

.cv-request-notice__link {
  color: #004f54;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cv-request-notice__link:hover {
  color: #003a3e;
}

/* Legacy form mount (Zendesk newRequestForm expects this structure) */
.cv-request-form-legacy {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Custom sheet header (above injected form — match design) */
.cv-request-form-sheet-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.35rem 1.1rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.cv-request-form-sheet-header__icon {
  flex-shrink: 0;
  color: #436436;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.08rem;
}

.cv-request-form-sheet-header__icon .fas {
  font-weight: 900;
}

.cv-request-form-sheet-header__text {
  flex: 1;
  min-width: 0;
}

.cv-request-form-sheet-header__title {
  font-family: var(--cv-font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cv-request-form-sheet-header__hint {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: #6c757d;
}

.cv-request-form-sheet-header__req {
  color: #dc2626;
  font-weight: 700;
}

.cv-request-form-legacy .section.comments {
  margin: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  background: #fff;
}

/* CC + Priority Level side by side (50/50) — row inserted by new_request_page script */
.cv-request-cc-priority-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}
.cv-request-cc-priority-row > .form-field,
.cv-request-cc-priority-row > * {
  margin-bottom: 0 !important;
  min-width: 0;
}
.form-field ul{
  border: none !important;
  padding: 0 !important;
}
.form-field ul li{
  float: none !important;
}
.form-field ul li input{
  width: 100% !important;
  height: 42px !important;
}
@media (max-width: 639px) {
  .cv-request-cc-priority-row {
    grid-template-columns: 1fr;
  }
}

/* Zendesk request form — inputs, borders, headings (match screenshot) */
.cv-request-form-legacy .form {
  margin: 0;
}

.cv-request-form-legacy #new-request-form h1,
.cv-request-form-legacy #new-request-form h2,
.cv-request-form-legacy #new-request-form h3 {
  font-family: var(--cv-font-heading);
  color: #436436;
  letter-spacing: -0.02em;
}

.cv-request-form-legacy #new-request-form h1,
.cv-request-form-legacy #new-request-form h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  line-height: 1.25;
}

.cv-request-form-legacy #new-request-form h1:not(:first-child),
.cv-request-form-legacy #new-request-form h2:not(:first-child) {
  margin-top: 1.75rem;
}

.cv-request-form-legacy #new-request-form h3 {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0.85rem 0;
  line-height: 1.3;
}

.cv-request-form-legacy #new-request-form p,
.cv-request-form-legacy #new-request-form .form-field__description,
.cv-request-form-legacy #new-request-form .form-field__hint {
  font-size: 0.8125rem;
  color: #436436;
  line-height: 1.5;
}

.cv-request-form-legacy .form-field,
.cv-request-form-legacy .nesty-input,
.cv-request-form-legacy .hc-mention-marker {
  margin-bottom: 1rem;
}

.cv-request-form-legacy label,
.cv-request-form-legacy .form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #436436;
  margin-bottom: 0.4rem;
}

.cv-request-form-legacy label a,
.cv-request-form-legacy .form-field label a {
  color: #436436;
  font-weight: 600;
}

.cv-request-form-legacy .form-field abbr[title],
.cv-request-form-legacy .form-field .required,
.cv-request-form-legacy label .required,
.cv-request-form-legacy label .required-asterisk {
  color: #dc2626;
  font-weight: 700;
  text-decoration: none;
}

.cv-request-form-legacy input[type='text'],
.cv-request-form-legacy input[type='email'],
.cv-request-form-legacy input[type='number'],
.cv-request-form-legacy input[type='tel'],
.cv-request-form-legacy input[type='url'],
.cv-request-form-legacy input[type='search'],
.cv-request-form-legacy input[type='password'],
.cv-request-form-legacy input[type='date'],
.cv-request-form-legacy input[type='datetime-local'],
.cv-request-form-legacy select,
.cv-request-form-legacy textarea,
.cv-request-form-legacy #new-request-form input[type='text'],
.cv-request-form-legacy #new-request-form input[type='email'],
.cv-request-form-legacy #new-request-form input[type='number'],
.cv-request-form-legacy #new-request-form input[type='tel'],
.cv-request-form-legacy #new-request-form input[type='url'],
.cv-request-form-legacy #new-request-form input[type='search'],
.cv-request-form-legacy #new-request-form input[type='password'],
.cv-request-form-legacy #new-request-form input[type='date'],
.cv-request-form-legacy #new-request-form select,
.cv-request-form-legacy #new-request-form textarea {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #436436;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #436436;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cv-request-form-legacy textarea,
.cv-request-form-legacy #new-request-form textarea {
  min-height: 6.5rem;
  line-height: 1.5;
  resize: vertical;
}

.cv-request-form-legacy input::placeholder,
.cv-request-form-legacy textarea::placeholder,
.cv-request-form-legacy #new-request-form input::placeholder,
.cv-request-form-legacy #new-request-form textarea::placeholder {
  color: #436436;
  opacity: 1;
}

.cv-request-form-legacy input:focus,
.cv-request-form-legacy select:focus,
.cv-request-form-legacy textarea:focus,
.cv-request-form-legacy #new-request-form input:focus,
.cv-request-form-legacy #new-request-form select:focus,
.cv-request-form-legacy #new-request-form textarea:focus {
  outline: none;
  border-color: #436436;
  box-shadow: 0 0 0 3px rgba(67, 100, 54, 0.12);
}

/* CC (email tags) field — Garden FauxInput: no outer border, full width */
.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']),
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']) > div,
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']) > div,
.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']) [role='group'],
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']) [role='group'],
.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']) [tabindex='0'],
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']) [tabindex='0'] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']):focus-within,
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']):focus-within {
  box-shadow: none !important;
}

.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']) input[type='text'],
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']) input[type='text'],
.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']) input:not([type='hidden']),
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']) input:not([type='hidden']) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.cv-request-form-legacy #new-request-form form > *:has(input[name*='email_cc']) input:focus,
.cv-request-form-legacy #new-request-form form > *:has(input[name*='[cc]']) input:focus {
  border: none !important;
  box-shadow: none !important;
}

.cv-request-form-legacy .nesty-input,
.cv-request-form-legacy #new-request-form .nesty-input {
  border-radius: 10px;
  border: 1px solid #436436;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cv-request-form-legacy .nesty-input:focus,
.cv-request-form-legacy .nesty-input:focus-within,
.cv-request-form-legacy .nesty-input.is-open {
  border-color: #436436;
  box-shadow: 0 0 0 3px rgba(67, 100, 54, 0.12);
}

.cv-request-form-legacy .nesty-input-button,
.cv-request-form-legacy .nesty-input-open .nesty-input-button {
  background: #fff !important;
  color: #436436 !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 0.875rem !important;
  padding: 0.65rem 0.85rem !important;
}

.cv-request-form-legacy .nesty-input-button .nesty-input__icon {
  color: #436436;
}

.cv-request-form-legacy .upload-dropzone,
.cv-request-form-legacy #new-request-form .upload-dropzone {
  border-radius: 12px;
  border: 2px dashed #436436 !important;
  background: #fafafa !important;
  border-style: dashed !important;
}

.cv-request-form-legacy .upload-dropzone:hover,
.cv-request-form-legacy #new-request-form .upload-dropzone:hover {
  border-color: #436436 !important;
  background: #f8fafc !important;
}

.cv-request-form-legacy input[type='checkbox'],
.cv-request-form-legacy input[type='radio'],
.cv-request-form-legacy #new-request-form input[type='checkbox'],
.cv-request-form-legacy #new-request-form input[type='radio'] {
  width: auto;
  max-width: none;
  accent-color: #436436;
  margin-right: 0.4rem;
}

.cv-request-form-legacy #new-request-form trix-editor,
.cv-request-form-legacy #new-request-form .trix-content,
.cv-request-form-legacy #new-request-form [data-test-id='editor'] {
  border-radius: 10px;
  border: 1px solid #436436;
  background: #fff;
}

.cv-request-form-legacy footer,
.cv-request-form-legacy .form-footer {
  margin-top: 1.75rem;
  padding: 2.15rem 1.95rem;
  border-top: 1px solid #e7ebf1;
  background: #f8fafc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cv-request-form-legacy footer > :not(input[type='submit']):not(button[type='submit']),
.cv-request-form-legacy .form-footer > :not(input[type='submit']):not(button[type='submit']) {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 500;
  color: #436436;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cv-request-form-legacy footer > :not(input[type='submit']):not(button[type='submit']) i,
.cv-request-form-legacy .form-footer > :not(input[type='submit']):not(button[type='submit']) i {
  font-size: 0.78rem;
  color: #436436;
}

.cv-request-form-legacy .form-footer input[type='submit'],
.cv-request-form-legacy button[type='submit'],
.cv-request-form-legacy input[type='submit'].button,
.cv-request-form-legacy #new-request-form button[type='submit'] {
  background: #436436 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9px !important;
  padding: 0 1.65rem !important;
  min-height: 3.25rem !important;
  min-width: 12.4rem;
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  line-height: 1.1 !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: none !important;
  transition: background 0.15s ease;
}

@media (max-width: 767px) {
  .cv-request-form-legacy footer,
  .cv-request-form-legacy .form-footer {
    padding: 1.15rem;
    align-items: stretch;
  }

  .cv-request-form-legacy footer > :not(input[type='submit']):not(button[type='submit']),
  .cv-request-form-legacy .form-footer > :not(input[type='submit']):not(button[type='submit']) {
    width: 100%;
  }

  .cv-request-form-legacy .form-footer input[type='submit'],
  .cv-request-form-legacy button[type='submit'],
  .cv-request-form-legacy input[type='submit'].button,
  .cv-request-form-legacy #new-request-form button[type='submit'] {
    width: 100%;
    min-width: 0;
  }
}

.cv-request-form-legacy .form-footer input[type='submit']:hover,
.cv-request-form-legacy button[type='submit']:hover,
.cv-request-form-legacy #new-request-form button[type='submit']:hover {
  background: #436436 !important;
}

.cv-request-sidebar__stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.cv-request-sidebar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem 1.15rem 1.15rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cv-request-sidebar-card--quicklinks {
  background: #436436;
  border-color: #436436;
  box-shadow: 0 4px 14px rgba(67, 100, 54, 0.25);
}

.cv-request-sidebar-card__title {
  font-family: var(--cv-font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #436436;
  margin: 0 0 0.75rem 0;
}

.cv-request-sidebar-card--quicklinks .cv-request-sidebar-card__title {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.65rem;
  margin-bottom: 0.65rem;
}

/* Response times card (match design: header strip + dots + badges + footer) */
.cv-request-sidebar-card--response-times {
  padding: 0;
  overflow: hidden;
  border-color: #e9ecef;
}

.cv-request-response-times__header {
  margin: 0;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.cv-request-response-times__heading {
  font-family: var(--cv-font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #436436;
  margin: 0;
}

.cv-request-response-times__body {
  padding: 0.5rem 1rem 0.65rem;
  background: #fff;
}

.cv-request-response-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-request-response-list__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.8125rem;
}

.cv-request-response-list__row:last-child {
  border-bottom: none;
}

.cv-request-response-list__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
}

.cv-request-response-list__dot--normal {
  background: #10b981;
}

.cv-request-response-list__dot--urgent {
  background: #f59e0b;
}

.cv-request-response-list__dot--weekend {
  background: #ced4da;
}

.cv-request-response-list__label {
  flex: 1;
  min-width: 0;
  color: #436436;
  font-weight: 500;
}

.cv-request-response-list__badge {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.cv-request-response-list__badge--muted {
  background: #f1f3f5;
  color: #436436;
  border: 1px solid #e9ecef;
}

.cv-request-response-list__badge--urgent {
  background: #fff9e6;
  color: #8b5e02;
  border: 1px solid #f59e0b;
}

.cv-request-response-times__footer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding: 0.65rem 1rem 0.85rem;
  border-top: 1px solid #e9ecef;
  background: #fff;
}

.cv-request-response-times__footer-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #00a389;
  font-weight: 900;
}

.cv-request-response-times__footer-text {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #707b81;
}

/* Solve it yourself (header strip + icon tiles + title/subtitle) */
.cv-request-sidebar-card--solve {
  padding: 0;
  overflow: hidden;
  border-color: #eef2f6;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(67, 100, 54, 0.06);
}

.cv-request-solve__header {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: #f9fafb;
  border-bottom: 1px solid #eef2f6;
}

.cv-request-solve__heading {
  font-family: var(--cv-font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #436436;
  margin: 0;
}

.cv-request-solve-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.cv-request-solve-list > li {
  border-bottom: 1px solid #f3f4f6;
}

.cv-request-solve-list > li:last-child {
  border-bottom: none;
}

.cv-request-solve-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.cv-request-solve-item:hover {
  background: #fafbfc;
}

.cv-request-solve-item__icon-wrap {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cv-request-solve-item__icon-wrap--blue {
  background: #436436;
  color: #436436;
}

.cv-request-solve-item__icon-wrap--mint {
  background: #f0faf6;
  color: #0f766e;
}

.cv-request-solve-item__icon-wrap .fas {
  font-weight: 900;
}

.cv-request-solve-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cv-request-solve-item__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #436436;
  line-height: 1.3;
}

.cv-request-solve-item__subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: #436436;
}

.cv-request-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cv-request-topics__pill {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #436436;
  background: #436436;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cv-request-topics__pill:hover {
  background: #436436;
  color: #436436;
}

.cv-request-quicklinks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-request-quicklinks li + li {
  margin-top: 0.35rem;
}

.cv-request-quicklinks__a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.cv-request-quicklinks__a:hover {
  color: #fff;
}

.cv-request-quicklinks__a .fas {
  width: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #436436;
}

.cv-request-quicklinks__a:hover .fas {
  color: #fff;
}

.cv-request-contact__line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.5rem 0;
  font-size: 0.8125rem;
  color: #436436;
  line-height: 1.45;
}

.cv-request-contact__line:last-child {
  margin-bottom: 0;
}

.cv-request-contact__line .fas {
  margin-top: 0.15rem;
  color: #436436;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.cv-request-contact__line a {
  color: #436436;
  font-weight: 600;
  text-decoration: none;
}

.cv-request-contact__line a:hover {
  text-decoration: underline;
}

.cv-request-after {
  background: #fff;
  border-top: 1px solid #e8edf3;
  padding: 2.5rem 0 3rem;
}

.cv-request-after__heading {
  font-family: var(--cv-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #436436;
  text-align: center;
  margin: 0 0 2rem 0;
}

.cv-request-after__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .cv-request-after__grid {
    grid-template-columns: 1fr;
  }
}

.cv-request-after__step {
  text-align: center;
  padding: 0 0.5rem;
}

.cv-request-after__num {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #436436;
  color: #fff;
  font-family: var(--cv-font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.cv-request-after__step-title {
  font-family: var(--cv-font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  color: #436436;
  margin: 0 0 0.5rem 0;
}

.cv-request-after__step-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #436436;
}

.cv-footer-cta--request {
  border-top: 1px solid #e8edf3;
}

.cv-footer-cta__btn--back {
  gap: 0.5rem;
}

/* ----- Article page (match screenshot) ----- */
.cv-article-page {
  background: #f4f7f9;
  padding: 2rem 0 3rem;
}

.cv-article-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .cv-article-page__layout {
    grid-template-columns: 1fr;
  }
}

.cv-article-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cv-article-card__body {
  padding: 1.5rem;
}

/* Article typography (match screenshot) */
.cv-article-card__body .markdown,
.cv-article-card__body .wysiwyg-body {
  color: #436436;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.cv-article-card__body .markdown > *,
.cv-article-card__body .wysiwyg-body > * {
  margin-top: 1.1em;
  margin-bottom: 1.1em;
}

.cv-article-card__body .markdown h1,
.cv-article-card__body .markdown h2,
.cv-article-card__body .markdown h3,
.cv-article-card__body .markdown h4,
.cv-article-card__body .wysiwyg-body h1,
.cv-article-card__body .wysiwyg-body h2,
.cv-article-card__body .wysiwyg-body h3,
.cv-article-card__body .wysiwyg-body h4 {
  font-family: var(--cv-font-heading);
  color: #436436;
  letter-spacing: -0.02em;
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}

.cv-article-card__body .markdown h2,
.cv-article-card__body .wysiwyg-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
}

.cv-article-card__body .markdown h3,
.cv-article-card__body .wysiwyg-body h3 {
  font-size: 1.0625rem;
  font-weight: 800;
}

.cv-article-card__body .markdown a,
.cv-article-card__body .wysiwyg-body a {
  color: #436436;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cv-article-card__body .markdown a:hover,
.cv-article-card__body .wysiwyg-body a:hover {
  text-decoration: none;
}

.cv-article-card__body .markdown ul,
.cv-article-card__body .markdown ol,
.cv-article-card__body .wysiwyg-body ul,
.cv-article-card__body .wysiwyg-body ol {
  padding-left: 1.25rem;
}

.cv-article-card__body .markdown li + li,
.cv-article-card__body .wysiwyg-body li + li {
  margin-top: 0.35em;
}

.cv-article-card__body .markdown blockquote,
.cv-article-card__body .wysiwyg-body blockquote {
  border-left: 4px solid #436436;
  color: #436436;
  background: #f8fafc;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.cv-article-card__body .markdown pre,
.cv-article-card__body .wysiwyg-body pre {
  background: #436436;
  color: #e5e7eb;
  border: 1px solid rgba(67, 100, 54, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
}

.cv-article-sidebar__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Sidebar: E-Vignette promo card */
.cv-sidebar-promo {
  background: #436436;
  border-radius: 16px;
  padding: 1.25rem 1.15rem 1.35rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(67, 100, 54, 0.35);
}

.cv-sidebar-promo__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cv-sidebar-promo__head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1db992;
  font-size: 1.125rem;
  line-height: 1;
}

.cv-sidebar-promo__head-icon .fas {
  font-weight: 900;
}

.cv-sidebar-promo__title {
  font-family: var(--cv-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.cv-sidebar-promo__text {
  margin: 0 0 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #436436;
}

.cv-sidebar-promo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.1rem;
  font-family: var(--cv-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: #1db992;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.cv-sidebar-promo__btn:hover {
  color: #fff !important;
  background: #18a882;
}

.cv-sidebar-promo__btn .fas {
  font-size: 0.875rem;
  font-weight: 900;
}

.cv-sidebar-promo__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cv-sidebar-promo__link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #436436 !important;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cv-sidebar-promo__link:hover {
  color: #436436 !important;
}

.cv-sidebar-promo__link .fas {
  width: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #436436;
  flex-shrink: 0;
}

.cv-sidebar-promo__link:hover .fas {
  color: #fff;
}

/* Related articles (helper output) — match screenshot card list */
.related-articles,
.recent-articles {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.related-articles h3,
.recent-articles h3,
.related-articles-title,
.recent-articles-title {
  margin: 0 !important;
  padding: 1rem 1.25rem !important;
  font-family: var(--cv-font-heading);
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #436436;
  border-bottom: 1px solid #e8edf3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.related-articles h3::before,
.related-articles-title::before {
  content: '\f02d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #436436;
  font-size: 0.875rem;
}

.related-articles ul,
.recent-articles ul {
  margin: 0;
  padding: 0;
}

.related-articles ul li,
.recent-articles ul li {
  padding: 0;
  border-bottom: 1px solid #eef2f7;
}

.related-articles ul li:last-child,
.recent-articles ul li:last-child {
  border-bottom: none;
}

.related-articles ul li a,
.recent-articles ul li a {
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  gap: 0.875rem;
  align-items: center;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  color: #436436;
  font-size: 0.875rem;
  font-weight: 600;
}

.related-articles ul li a::before,
.recent-articles ul li a::before {
  content: '\f15c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #436436;
  color: #436436;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.related-articles ul li a::after,
.recent-articles ul li a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #436436;
  justify-self: end;
  font-size: 0.75rem;
}

.related-articles ul li a:hover,
.recent-articles ul li a:hover {
  background: #f8fafc;
  color: #436436;
}

.related-articles ul li a:hover::after,
.recent-articles ul li a:hover::after {
  color: #436436;
}

/* Related articles box ({{related_articles}} helper) — separate card; hide when empty */
.cv-related-box:not(:has(.cv-related-box__content a[href])) {
  display: none;
}

.cv-related-box {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Flatten nested .related-articles from helper (avoid double card + duplicate title) */
.cv-related-box__content .related-articles {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.cv-related-box__content .related-articles h3,
.cv-related-box__content .related-articles .related-articles-title {
  display: none !important;
}

.cv-related-box__title {
  margin: 0 !important;
  padding: 1rem 1.25rem !important;
  font-family: var(--cv-font-heading);
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #436436;
  border-bottom: 1px solid #e8edf3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cv-related-box__title::before {
  content: '\f02d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #436436;
  font-size: 0.875rem;
}

.cv-related-box__content {
  padding: 0;
}

/* request_callout markup varies (often <p>Title</p> then <p><a>..</a></p>...) */
.cv-related-box__content > p:first-child,
.cv-related-box__content > h3:first-child,
.cv-related-box__content > h4:first-child {
  display: none;
}

.cv-related-box__content p {
  margin: 0;
}

.cv-related-box__content ul,
.cv-related-box__content ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv-related-box__content li,
.cv-related-box__content p {
  border-bottom: 1px solid #eef2f7;
}

.cv-related-box__content li:last-child,
.cv-related-box__content p:last-child {
  border-bottom: none;
}

.cv-related-box__content a {
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  gap: 0.875rem;
  align-items: center;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  color: #436436;
  font-size: 0.875rem;
  font-weight: 600;
}

.cv-related-box__content a::before {
  content: '\f15c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #436436;
  color: #436436;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.cv-related-box__content a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #436436;
  justify-self: end;
  font-size: 0.75rem;
}

.cv-related-box__content a:hover {
  background: #f8fafc;
  color: #436436;
}

.cv-related-box__content a:hover::after {
  color: #436436;
}

/* ----- Section page: two-column (articles + ALL CATEGORIES sidebar) ----- */
.cv-section-page {
  background: #f4f7f9;
  padding: 2rem 0 3rem;
}

.cv-section-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .cv-section-page__layout {
    grid-template-columns: 1fr;
  }
}

.cv-section-page__main {
  min-width: 0;
}

.cv-section-page__subsections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cv-section-page__subsection-link {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--cv-radius-small);
  background: #fff;
  border: 1px solid var(--cv-gray-200);
  color: var(--cv-blue-900);
  text-decoration: none;
}

.cv-section-page__subsection-link:hover {
  border-color: var(--cv-blue-900);
}

.cv-section-page__search-wrap {
  margin-bottom: 1.25rem;
}

.cv-section-page__search-bar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.5rem 0.875rem 0.5rem 0.875rem;
  box-shadow: none;
}

.cv-section-page__search-icon {
  color: #436436;
  flex-shrink: 0;
  font-size: 0.9375rem;
  line-height: 1;
}

.cv-section-page__search-form {
  flex: 1;
  min-width: 0;
  margin: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
}

.cv-section-page__search-form .search,
.cv-section-page__search-form input[type='search'] {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  outline: none;
  color: var(--cv-gray-800);
  -webkit-appearance: none;
  appearance: none;
}

.cv-section-page__search-form input[type='search']::placeholder {
  color: #436436;
  opacity: 1;
}

.cv-section-page__search-form input[type='submit'],
.cv-section-page__search-form button[type='submit'],
.cv-section-page__search-form button:not([type]) {
  display: none !important;
}

.cv-section-page__search-form input[type='hidden'] {
  margin: 0;
}

.cv-section-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cv-section-page__count {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.cv-section-page__count-muted {
  color: #436436;
  font-weight: 400;
}

.cv-section-page__count-strong {
  color: #436436;
  font-weight: 700;
}

.cv-section-page__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #436436;
}

.cv-section-page__sort-lines {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  flex-shrink: 0;
}

.cv-section-page__sort-line {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.cv-section-page__sort-line:nth-child(1) {
  width: 14px;
}

.cv-section-page__sort-line:nth-child(2) {
  width: 10px;
}

.cv-section-page__sort-line:nth-child(3) {
  width: 6px;
}

.cv-section-page__sort-label {
  color: inherit;
}

.cv-section-page__articles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cv-section-page__article-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(67, 100, 54, 0.04);
}

.cv-section-page__article-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(67, 100, 54, 0.06);
}

.cv-section-page__article-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #436436;
  color: #436436;
  font-size: 1rem;
}

.cv-section-page__article-icon .fas {
  font-size: 1rem;
  line-height: 1;
}

.cv-section-page__article-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cv-section-page__article-title {
  font-family: var(--cv-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #436436;
  line-height: 1.35;
}

.cv-section-page__article-snippet {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cv-section-page__article-chevron {
  flex-shrink: 0;
  color: #9ca3af;
  font-size: 0.875rem;
}

.cv-section-page__article-card:hover .cv-section-page__article-chevron {
  color: #436436;
}

.cv-section-page__article-card:hover .cv-section-page__article-title {
  color: #436436;
}

.cv-section-page__pagination {
  margin-top: 2rem;
}

.cv-section-page__empty {
  text-align: center;
  padding: 2rem;
}

.cv-section-page__sidebar-inner {
  background: #fff;
  border: 1px solid #436436;
  border-radius: 12px;
  padding: 1rem 0;
  box-shadow: none;
}

.cv-section-page__sidebar-title {
  font-family: var(--cv-font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #436436;
  margin: 0 0 0 0;
  padding: 0 1.25rem 0.875rem 1.25rem;
  border-bottom: 1px solid #436436;
  text-transform: uppercase;
}

.cv-section-page__sidebar-nav {
  display: flex;
  flex-direction: column;
}

.cv-section-page__sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.7rem 1.25rem;
  text-decoration: none;
  color: #436436;
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom: 1px solid #e8edf3;
  position: relative;
  transition: background 0.15s ease, color 0.15s ease;
}

.cv-section-page__sidebar-link .cv-section-page__sidebar-link-icon,
.cv-section-page__sidebar-link .cv-section-page__sidebar-badge {
  transition: background 0.15s ease, color 0.15s ease;
}

.cv-section-page__sidebar-link:last-child {
  border-bottom: none;
}

.cv-section-page__sidebar-link:hover:not(.cv-section-page__sidebar-link--active) {
  background: #f8fafc;
  color: #436436;
}

.cv-section-page__sidebar-link:hover:not(.cv-section-page__sidebar-link--active) .cv-section-page__sidebar-link-icon {
  color: #436436;
}

.cv-section-page__sidebar-link:hover:not(.cv-section-page__sidebar-link--active) .cv-section-page__sidebar-badge {
  background: #436436;
  color: #436436;
}

.cv-section-page__sidebar-link--active {
  background: #436436;
  color: #436436;
  font-weight: 600;
}

.cv-section-page__sidebar-link--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #436436;
  border-radius: 0 3px 3px 0;
}

.cv-section-page__sidebar-link-icon {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  color: rgb(156, 163, 175);
  font-size: 0.875rem;
}

.cv-section-page__sidebar-link--active .cv-section-page__sidebar-link-icon {
  color: #436436;
}

.cv-section-page__sidebar-link-text {
  flex: 1;
  min-width: 0;
}

.cv-section-page__sidebar-badge {
  flex-shrink: 0;
  min-width: 1.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  background: #f1f5f9;
  color: #436436;
}

.cv-section-page__sidebar-badge--active {
  background: #436436;
  color: #436436;
}

.cv-section-page__sidebar-badge--muted {
  color: #436436;
  background: #f1f5f9;
}

.cv-section-page__sidebar-loading {
  display: block;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  color: var(--cv-gray-500);
}

.cv-section-page__sidebar-fallback {
  margin: 0;
  padding: 0 1.25rem;
  font-size: 0.875rem;
}

.cv-section-page__sidebar-fallback a {
  color: var(--cv-blue-900);
  font-weight: 600;
}

.cv-section-page__sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Popular in this category (pale mint badges, dark teal numbers — match design) */
.cv-section-page__popular-card {
  background: #fff;
  border: 1px solid #436436;
  border-radius: 14px;
  overflow: hidden;
}

.cv-section-page__popular-title {
  font-family: var(--cv-font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #436436;
  margin: 0;
  padding: 1rem 1.25rem 0.75rem;
  text-transform: uppercase;
  border-bottom: 1px solid #e8edf3;
}

.cv-section-page__popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: cv-popular;
}

.cv-section-page__popular-item {
  counter-increment: cv-popular;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
}

.cv-section-page__popular-item:not(:first-child) {
  border-top: 1px solid #e8edf3;
}

.cv-section-page__popular-item::before {
  content: counter(cv-popular);
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #e1f7f3;
  color: #1e5150;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cv-section-page__popular-link {
  color: #436436;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
}

.cv-section-page__popular-link:hover {
  color: #436436;
  text-decoration: underline;
}

/* Quick Links (vibrant blue panel, pale blue links) */
.cv-section-page__quicklinks {
  background: #436436;
  border-radius: 14px;
  padding: 1rem 1.25rem 1.125rem;
}

.cv-section-page__quicklinks-title {
  font-family: var(--cv-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.cv-section-page__quicklinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-section-page__quicklinks-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.45rem 0;
  color: #436436;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

/* FA5 solid webfont maps glyphs to font-weight:900; lighter weights show missing glyphs */
.cv-section-page__quicklinks-link .fas {
  width: 1rem;
  text-align: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: #436436;
  font-weight: 900;
}

.cv-section-page__quicklinks-link:hover {
  color: #fff;
}

.cv-section-page__quicklinks-link:hover .fas {
  color: #fff;
}

/* Main column: help CTA */
.cv-article-page__help-cta {
  margin-top: 1.5rem;
}

.cv-section-page__help-cta {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #436436;
  border-radius: 12px;
}

.cv-section-page__help-cta-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: #e1f7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e5150;
  font-size: 1.25rem;
}

.cv-section-page__help-cta-icon .fas {
  font-weight: 900;
}

.cv-section-page__help-cta-body {
  flex: 1;
  min-width: 0;
}

.cv-section-page__help-cta-title {
  font-family: var(--cv-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #436436;
  margin: 0 0 0.5rem 0;
}

.cv-section-page__help-cta-text {
  font-size: 0.9375rem;
  color: #436436;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.cv-section-page__help-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff !important;
  background: #436436;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cv-section-page__help-cta-btn:hover {
  color: #fff !important;
  background: #436436;
}

.cv-section-page__help-cta-btn .fas {
  font-size: 0.875rem;
  font-weight: 900;
}

@media (max-width: 640px) {
  .cv-section-page__help-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cv-section-page__help-cta-body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Footer CTA ("Can't find what you're looking for?" — white band + navy bottom bar) */
.cv-footer-cta {
  padding: 4rem 0 0;
  background: #fff;
  border-top: 1px solid var(--cv-gray-200);
}

.cv-footer-cta__inner {
  text-align: center;
  padding-bottom: 4rem;
}

.cv-footer-cta::after {
  content: '';
  display: block;
  width: 100%;
  height: 14px;
  background: #436436;
}

.cv-footer-cta__title {
  font-family: var(--cv-font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cv-gray-900);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.025em;
}

.cv-footer-cta__text {
  font-size: 1rem;
  color: var(--cv-gray-500);
  margin: 0 0 1.5rem 0;
}

.cv-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--cv-blue-900);
  border-radius: var(--cv-radius-small);
  box-shadow: var(--cv-shadow);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cv-footer-cta__btn:hover {
  background: var(--cv-blue-800);
  box-shadow: var(--cv-shadow-hover);
  color: #fff;
}

.cv-footer-cta__btn-icon {
  font-size: 0.875rem;
  font-weight: 900;
}

/* ----- Main footer (4 columns, dark blue, like photo) ----- */
.cv-footer {
  background-color: #436436;
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 0;
}

.cv-footer--single {
  padding-top: 3rem;
}

.cv-footer__inner {
  padding-bottom: 1.5rem;
}

.cv-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 1023px) {
  .cv-footer__columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  .cv-footer__columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.cv-footer__col {
  min-width: 0;
}

.cv-footer__brand-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cv-footer__logo-link {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
}

.cv-footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cv-footer__logo-icon {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Material Symbols Outlined', sans-serif;
}

.cv-footer__brand-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}

.cv-footer__brand-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.cv-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.cv-footer__heading--follow {
  margin-top: 1.15rem;
}

.cv-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-footer__links li {
  margin-bottom: 0.5rem;
}

.cv-footer__links li:last-child {
  margin-bottom: 0;
}

.cv-footer__links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cv-footer__links a:hover {
  color: #fff;
}

.cv-footer__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cv-footer__socials a {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cv-footer__socials a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cv-footer__socials i {
  font-size: 0.78rem;
  font-weight: 900;
}

.cv-footer__separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.25rem;
}

.cv-footer__legal {
  text-align: center;
  margin-bottom: 1.2rem;
}

.cv-footer__heading--legal {
  margin-bottom: 0.6rem;
}

.cv-footer__legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
  margin-bottom: 0.5rem;
  font-size: 0.73rem;
}

.cv-footer__legal-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.cv-footer__legal-links a:hover {
  color: #fff;
}

.cv-footer__legal-links span {
  color: rgba(255, 255, 255, 0.45);
}

.cv-footer__company {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.cv-footer__trust {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 600;
}

.cv-footer__trust i {
  margin-right: 0.35rem;
  font-size: 0.72rem;
}

.cv-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.cv-footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.cv-footer__lang-trigger,
.cv-footer__lang--static {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
}

.cv-footer__lang--static {
  cursor: default;
}

.cv-footer__lang-trigger:hover {
  color: rgba(255, 255, 255, 0.9);
}

.cv-footer__lang-icon {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cv-footer__lang-chevron {
  font-size: 0.625rem;
  margin-left: 0.25rem;
}

.cv-footer .dropdown__content {
  background: #fff;
  border-radius: var(--cv-radius-small);
  box-shadow: var(--cv-shadow-hover);
  bottom: 100% !important;
  top: auto !important;
}

/* Footer language dropdown: 2-column layout */
.cv-footer .cv-footer__lang .dropdown__content {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.5rem;
  row-gap: 0.125rem;
  padding: 6px !important;
  min-width: 280px;
  max-height: min(55vh, 380px);
  overflow: auto;
}

.cv-footer .dropdown__menuitem {
  color: var(--cv-gray-800);
  font-size: 0.8125rem;
}

.cv-footer .dropdown__menuitem:hover {
  background: var(--cv-gray-50);
  color: var(--cv-blue-900);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cv-font-heading);
  font-weight: 700;
  color: var(--cv-gray-900);
}

a {
  color: var(--cv-blue-900);
}

a:hover {
  color: var(--cv-blue-800);
}