@charset "UTF-8";

/***** =========================================== *****/
/***** FORMUNAUTS HELP CENTER 2.0 - ULTIMATE THEME *****/
/***** =========================================== *****/

/***** Base & Reset *****/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #1a1a2e;
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/***** Typography *****/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  margin-top: 0;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

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

h4 {
  font-size: 17px;
  font-weight: 600;
}

a {
  color: #E03B50;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover, a:active, a:focus {
  color: #b21c2f;
  text-decoration: none;
}

input,
textarea {
  color: #1a1a2e;
  font-size: 15px;
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

input {
  font-weight: 400;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
  border: 1px solid #0074C8;
  box-shadow: 0 0 0 3px rgba(0, 116, 200, 0.1);
}

input[disabled] {
  background-color: #f1f5f9;
  cursor: not-allowed;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("/hc/theming_assets/01KG01DZHGV52ZG2HJYHVBMB9S") no-repeat #fff;
  background-position: right 12px center;
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-sm, 6px);
  padding: 10px 36px 10px 14px;
  outline: none;
  color: #1a1a2e;
  width: 100%;
  font-family: 'Figtree', sans-serif;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

select:focus {
  border: 1px solid #0074C8;
  box-shadow: 0 0 0 3px rgba(0, 116, 200, 0.1);
}

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

textarea {
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-sm, 6px);
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 12px 14px;
  font-family: 'Figtree', sans-serif;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea:focus {
  border: 1px solid #0074C8;
  box-shadow: 0 0 0 3px rgba(0, 116, 200, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.error-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.dropdown-toggle::after {
  color: inherit;
}

/***** ======================== *****/
/***** FEATURE BANNER (NEW!)   *****/
/***** ======================== *****/

.feature-banner {
  background: linear-gradient(135deg, #003087 0%, #0070ba 50%, #003087 100%);
  background-size: 200% 100%;
  animation: bannerGradient 8s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes bannerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.feature-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: bannerShine 3s ease-in-out infinite;
}

@keyframes bannerShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.feature-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.feature-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .feature-banner-content {
    gap: 8px;
    justify-content: center;
    width: 100%;
    padding-right: 30px;
  }
}

.feature-banner-badge {
  background: linear-gradient(135deg, #ffc439 0%, #f0b429 100%);
  color: #003087;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.feature-banner-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .feature-banner-text {
    font-size: 12px;
  }
  .feature-banner-text-secondary {
    display: none;
  }
  .feature-banner-divider {
    display: none;
  }
}

.feature-banner-divider {
  opacity: 0.5;
}

.feature-banner-text-secondary {
  opacity: 0.85;
}

.feature-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #003087;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.feature-banner-cta:hover {
  background: #ffc439;
  color: #003087;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.feature-banner-cta-divider {
  opacity: 0.4;
}

.feature-banner-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.feature-banner-cta:hover .feature-banner-arrow {
  transform: translateX(3px);
}

.feature-banner-close {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.7;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.feature-banner-close:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}

.feature-banner-progress {
  height: 2px;
  background: rgba(255,255,255,0.3);
  position: relative;
}

.feature-banner-progress::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #ffc439;
  animation: bannerProgress 10s linear infinite;
}

@keyframes bannerProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.feature-banner.hidden {
  display: none;
}

/***** ======================== *****/
/***** BUTTONS                 *****/
/***** ======================== *****/

.button, [role="button"] {
  border: 2px solid #0074C8;
  border-radius: var(--fn-radius-md, 10px);
  color: #0074C8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  padding: 10px 24px;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

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

.button::after, [role="button"]::after {
  color: #0074C8;
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], 
[role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: #0074C8;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 116, 200, 0.3);
}

.button[aria-selected="true"]:hover, .button[aria-selected="true"]:focus, .button[aria-selected="true"]:active, 
[role="button"][aria-selected="true"]:hover, [role="button"][aria-selected="true"]:focus, [role="button"][aria-selected="true"]:active {
  background-color: #005695;
  border-color: #005695;
}

.button[data-disabled], [role="button"][data-disabled] {
  cursor: default;
  opacity: 0.5;
}

.button-large, input[type="submit"] {
  background: linear-gradient(135deg, #0074C8 0%, #005c9f 100%);
  border: 0;
  border-radius: var(--fn-radius-md, 10px);
  color: #ffffff;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  min-width: 180px;
  padding: 14px 28px;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.button-large:hover, .button-large:active, .button-large:focus, 
input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background: linear-gradient(135deg, darken(#0074C8, 5%) 0%, darken(#0074C8, 15%) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 116, 200, 0.35);
}

.button-large[disabled], input[type="submit"][disabled] {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-secondary {
  color: #3f3f6f;
  border: 2px solid #e2e8f0;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: #1a1a2e;
  border-color: #cbd5e1;
  background-color: #f8fafc;
  transform: translateY(-1px);
}

/***** ======================== *****/
/***** TABLES                  *****/
/***** ======================== *****/

.table {
  width: 100%;
  table-layout: fixed;
}

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

.table th,
.table th a {
  color: #3f3f6f;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

.table td {
  display: block;
}

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

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

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

/***** ======================== *****/
/***** FORMS                   *****/
/***** ======================== *****/

.form {
  max-width: 680px;
}

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.form-field input {
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-sm, 6px);
  padding: 12px 16px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid #0074C8;
  box-shadow: 0 0 0 3px rgba(0, 116, 200, 0.1);
}

.form-field input[type="text"] {
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-sm, 6px);
}

.form-field input[type="text"]:focus {
  border: 1px solid #0074C8;
}

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

.form-field .nesty-input {
  border-radius: var(--fn-radius-sm, 6px);
  height: 44px;
  line-height: 44px;
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid #0074C8;
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
  min-height: 120px;
}

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

.form-field.required > label::after {
  content: "*";
  color: #E03B50;
  margin-left: 4px;
}

.form-field p {
  color: #48487f;
  font-size: 13px;
  margin: 8px 0 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url("/hc/theming_assets/01KG01DZGQYEHT7TVVV69P2XDM") 99% 50% no-repeat;
  background-size: 16px 16px;
}

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

.form footer a {
  color: #3f3f6f;
  cursor: pointer;
  margin-right: 16px;
}

.form .suggestion-list {
  font-size: 14px;
  margin-top: 32px;
}

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

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

.form .suggestion-list li a:visited {
  color: #9c1929;
}

/***** ======================== *****/
/***** HEADER                  *****/
/***** ======================== *****/

.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: space-between;
  background: #ffffff;
}

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

.logo img {
  max-height: 40px;
  transition: opacity 0.2s ease;
}

.logo img:hover {
  opacity: 0.85;
}

.user-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  white-space: nowrap;
}

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

.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-md, 10px);
  right: 0;
  left: 0;
  top: 72px;
  z-index: 100;
  padding: 16px;
}

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

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wrapper a {
  border: 0;
  color: #1a1a2e;
  display: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  width: auto;
  border-radius: var(--fn-radius-sm, 6px);
  transition: all 0.2s ease;
}

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

[dir="rtl"] .nav-wrapper a {
  padding: 8px 16px;
}

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: #f1f5f9;
  color: #0074C8;
  text-decoration: none;
}

.nav-wrapper a.submit-a-request {
  background: #E03B50;
  color: #fff;
}

.nav-wrapper a.submit-a-request:hover {
  background: #d12137;
  color: #fff;
}

.nav-wrapper a.login {
  display: inline-flex;
}

.nav-wrapper .icon-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 0;
  color: #1a1a2e;
  cursor: pointer;
  border-radius: var(--fn-radius-sm, 6px);
  transition: background-color 0.2s ease;
}

.nav-wrapper .icon-menu:hover {
  background-color: #f1f5f9;
}

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

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 0;
  margin-right: 0;
}

/***** User info in header *****/
.user-info {
  display: inline-flex;
  align-items: center;
}

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

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

.user-info > [role="button"] {
  border: 0;
  color: #1a1a2e;
  min-width: 0;
  padding: 8px 12px;
  white-space: nowrap;
  border-radius: var(--fn-radius-sm, 6px);
}

.user-info > [role="button"]:hover {
  color: #0074C8;
  background-color: #f1f5f9;
  transform: none;
  box-shadow: none;
}

.user-info > [role="button"]::after {
  color: inherit;
  padding-right: 0;
}

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

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

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

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

/***** User avatar *****/
.user-avatar {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

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

.avatar img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar .icon-agent::before {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -2px;
  color: #ffffff;
  content: "\1F464";
  font-size: 10px;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/***** ======================== *****/
/***** FOOTER                  *****/
/***** ======================== *****/

.footer {
  border-top: 1px solid #e2e8f0;
  margin-top: 80px;
  padding: 40px 0;
  background: #f8fafc;
}

.footer a {
  color: #3f3f6f;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #0074C8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-language-selector {
  color: #3f3f6f;
  display: inline-block;
  font-weight: 500;
}

/***** ======================== *****/
/***** BREADCRUMBS             *****/
/***** ======================== *****/

.breadcrumbs {
  margin: 0 0 20px 0;
  padding: 0;
}

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

.breadcrumbs li {
  color: #48487f;
  display: inline;
  font-weight: 400;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: "›";
  margin: 0 8px;
  color: #cbd5e1;
}

.breadcrumbs li a {
  color: #36365f;
}

.breadcrumbs li a:hover {
  color: #0074C8;
}

.breadcrumbs li a:visited {
  color: #36365f;
}

/***** ======================== *****/
/***** SEARCH FIELD            *****/
/***** ======================== *****/

.search {
  position: relative;
}

.search input[type="search"] {
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  box-sizing: border-box;
  color: #1a1a2e;
  height: 52px;
  padding-left: 52px;
  padding-right: 24px;
  -webkit-appearance: none;
  width: 100%;
  font-size: 16px;
  font-family: 'Figtree', sans-serif;
  background: #fff;
  transition: all 0.2s ease;
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 52px;
  padding-left: 24px;
}

.search input[type="search"]:focus {
  border-color: #0074C8;
  box-shadow: 0 0 0 4px rgba(0, 116, 200, 0.1), 0 4px 20px rgba(0, 116, 200, 0.1);
  color: #1a1a2e;
}

.search input[type="search"]::placeholder {
  color: #94a3b8;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #94a3b8;
  content: "\1F50D";
  font-size: 20px;
  position: absolute;
  left: 18px;
  z-index: 1;
}

[dir="rtl"] .search::before {
  right: 18px;
  left: auto;
}

.search-full input[type="search"] {
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.95);
  height: 60px;
  font-size: 17px;
}

.search-full input[type="search"]:focus {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 116, 200, 0.2);
}

/***** ======================== *****/
/***** HERO COMPONENT          *****/
/***** ======================== *****/

.hero {
  background: linear-gradient(135deg, #0074C8 0%, #005a9e 50%, #00a5c8 100%);
  background-size: 200% 200%;
  animation: heroGradient 15s ease infinite;
  min-height: 400px;
  padding: 60px 24px;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero .search {
  width: 100%;
  max-width: 600px;
}

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

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

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

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

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

.page-header-description {
  font-style: normal;
  font-weight: 400;
  color: #3f3f6f;
  margin: 0 0 32px 0;
  word-break: break-word;
}

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

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 18px;
  position: relative;
  left: -8px;
  vertical-align: baseline;
  opacity: 0.6;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 32px;
  min-height: 50px;
  padding-bottom: 20px;
}

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

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 320px;
  }
}

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

/***** ======================== *****/
/***** BLOCKS / CATEGORIES     *****/
/***** ======================== *****/

.blocks-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 640px) {
  .blocks-list {
    grid-template-columns: 1fr;
  }
}

.blocks-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-lg, 16px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.blocks-item:hover {
  border-color: #0074C8;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 116, 200, 0.15);
}

.blocks-item:hover .blocks-item-link {
  color: #0074C8;
}

.blocks-item:hover .blocks-item-title {
  color: #0074C8;
}

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

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 14px;
  margin-left: 8px;
  opacity: 0.5;
}

.blocks-item-internal a {
  color: #1a1a2e;
}

.blocks-item-link {
  color: #1a1a2e;
  padding: 28px 24px;
  display: block;
  height: 100%;
}

.blocks-item-link:hover {
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  transition: color 0.2s ease;
}

.blocks-item-description {
  font-weight: 400;
  color: #48487f;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

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

/***** ======================== *****/
/***** HOMEPAGE                *****/
/***** ======================== *****/

.section {
  margin-bottom: 48px;
}

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

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

/***** Promoted articles *****/
.promoted-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
}

@media (min-width: 1024px) {
  .promoted-articles {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

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

@media (min-width: 1024px) {
  .promoted-articles-item {
    padding-right: 0;
  }
}

.promoted-articles-item a {
  border-bottom: 1px solid #e2e8f0;
  color: #1a1a2e;
  display: block;
  padding: 16px 0;
  font-weight: 500;
  transition: all 0.2s ease;
}

.promoted-articles-item a:hover {
  color: #0074C8;
  padding-left: 8px;
}

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

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

/***** Community section *****/
.community {
  text-align: center;
  padding: 48px 0;
  background: #f8fafc;
  border-radius: var(--fn-radius-xl, 24px);
}

.community-image {
  min-height: 200px;
  background-image: url(/hc/theming_assets/01KG01E1FWWMGC9MPWV60Z60TC);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 100%;
  margin-top: 24px;
}

.community,
.activity {
  border-top: none;
  padding: 40px 0;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 24px;
  text-align: center;
}

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

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

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

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 8px 0;
  color: #1a1a2e;
  display: inline-block;
  width: 100%;
}

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

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 400;
  color: #3f3f6f;
}

.recent-activity-item-meta {
  margin: 16px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time, .recent-activity-item-comment {
  color: #48487f;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
}

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

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

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

.recent-activity-item-comment span::before {
  color: #0074C8;
  content: "\1F4AC";
  display: inline-block;
  font-size: 14px;
  padding-right: 4px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 4px;
}

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

/***** ======================== *****/
/***** CATEGORY PAGES          *****/
/***** ======================== *****/

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

.category-content {
  flex: 1;
}

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

.section-tree {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
}

@media (max-width: 768px) {
  .section-tree {
    grid-template-columns: 1fr;
  }
}

.section-tree .section {
  margin-bottom: 0;
}

.section-tree .icon-lock::before {
  vertical-align: baseline;
}

.section-tree-title {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.section-tree-title a {
  color: #1a1a2e;
  font-weight: 600;
}

.section-tree-title a:hover {
  color: #0074C8;
}

.section-tree .see-all-articles {
  display: inline-block;
  padding: 12px 0;
  font-weight: 500;
  color: #0074C8;
}

.article-list-item {
  border-bottom: 1px solid #e2e8f0;
  font-size: 15px;
  padding: 14px 0;
}

.article-list-item a {
  color: #1a1a2e;
  display: block;
  transition: all 0.2s ease;
}

.article-list-item a:hover {
  color: #0074C8;
  padding-left: 8px;
}

.icon-star::before {
  color: #ffc439;
  font-size: 16px;
}

/***** ======================== *****/
/***** SECTION PAGES           *****/
/***** ======================== *****/

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

.section-content {
  flex: 1;
}

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

.section-subscribe .dropdown-toggle::after {
  display: none;
}

/***** ======================== *****/
/***** ARTICLE                 *****/
/***** ======================== *****/

.article {
  flex: 1 0 auto;
}

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

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

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

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

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

.article-author {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -8px;
  vertical-align: baseline;
  opacity: 0.5;
}

.article [role="button"] {
  flex-shrink: 0;
  width: 100%;
}

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

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

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

.article-body img {
  height: auto;
  max-width: 100%;
  border-radius: var(--fn-radius-md, 10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.article-body li {
  margin-bottom: 8px;
}

.article-body a:visited {
  color: #b21c2f;
}

.article-body code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2px 6px;
  margin: 0 2px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
  font-size: 0.9em;
}

.article-body pre {
  background: #1e293b;
  border: none;
  border-radius: var(--fn-radius-md, 10px);
  padding: 20px 24px;
  overflow: auto;
  white-space: pre;
  color: #e2e8f0;
}

.article-body pre code {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
}

.article-body blockquote {
  border-left: 4px solid #0074C8;
  background: #f8fafc;
  color: #2c2c4f;
  font-style: normal;
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 0 var(--fn-radius-sm, 6px) var(--fn-radius-sm, 6px) 0;
}

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

.article-content {
  line-height: 1.7;
  margin: 40px 0;
  word-wrap: break-word;
  font-size: 16px;
}

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

.article-comment-count {
  color: #3f3f6f;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-comment-count:hover {
  text-decoration: none;
  color: #0074C8;
}

.article-comment-count .icon-comments {
  color: #0074C8;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
}

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

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

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

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

.article-relatives > * {
  flex: 1 0 auto;
}

.article-votes {
  border-top: 1px solid #e2e8f0;
  padding: 40px 0;
  text-align: center;
  background: #f8fafc;
  border-radius: var(--fn-radius-lg, 16px);
  margin: 32px 0;
}

.article-votes-question {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.article-vote {
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #1a1a2e;
  margin: 8px;
  min-width: 100px;
  width: auto;
  padding: 12px 24px;
}

.article-vote::before {
  font-size: 16px;
  margin-right: 8px;
}

[dir="rtl"] .article-vote::before {
  margin-right: 0;
  margin-left: 8px;
}

.article-vote::after {
  content: attr(title);
}

.article-vote:focus, .article-vote:active {
  background-color: #fff;
  color: #1a1a2e;
}

.article-vote:hover {
  border-color: #0074C8;
  background-color: #0074C8;
  color: #fff;
}

.article-vote:hover::before, .article-vote:hover::after, 
.article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: #fff;
}

.article-vote[aria-selected="true"] {
  background-color: #0074C8;
  border-color: #0074C8;
  color: #fff;
}

.article-vote-up::before {
  content: "\2713";
}

.article-vote-down::before {
  content: "\2715";
}

.article-more-questions {
  margin: 24px 0 32px;
  text-align: center;
}

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

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

.article-return-to-top a {
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
  font-weight: 500;
}

.article-return-to-top a:hover {
  color: #0074C8;
  text-decoration: none;
}

.article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
}

.article-unsubscribe {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  color: #ffffff;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background: linear-gradient(135deg, darken(#0074C8, 5%) 0%, darken(#0074C8, 15%) 100%);
}

.sidenav-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3f3f6f;
  margin-bottom: 16px;
}

.sidenav-item {
  border-radius: var(--fn-radius-sm, 6px);
  color: #1a1a2e;
  display: block;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 4px;
  padding: 10px 12px;
  transition: all 0.2s ease;
}

.sidenav-item:hover {
  background-color: #f1f5f9;
  color: #0074C8;
  text-decoration: none;
}

.sidenav-item.current-article {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  color: #ffffff;
  font-weight: 500;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3f3f6f;
  margin: 24px 0 16px;
}

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

.recent-articles li a,
.related-articles li a {
  color: #1a1a2e;
  font-size: 14px;
}

.recent-articles li a:hover,
.related-articles li a:hover {
  color: #0074C8;
}

/***** ======================== *****/
/***** ATTACHMENTS             *****/
/***** ======================== *****/

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

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

.attachments .attachment-item::before {
  color: #0074C8;
  content: "\1F4CE";
  font-size: 14px;
  left: 0;
  position: absolute;
  top: 4px;
}

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

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

.upload-dropzone span {
  color: #48487f;
}

/***** ======================== *****/
/***** SOCIAL SHARE            *****/
/***** ======================== *****/

.share {
  padding: 0;
  white-space: nowrap;
  display: flex;
  gap: 8px;
}

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

.share a {
  border-radius: 50%;
  height: 36px;
  width: 36px;
  line-height: 36px;
  overflow: hidden;
  background: #f1f5f9;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.share a::before {
  color: #3f3f6f;
  display: block;
  font-size: 18px;
  text-align: center;
}

.share a:hover {
  text-decoration: none;
  background: #0074C8;
}

.share a:hover::before {
  color: #fff;
}

.share a:hover [class^="icon-"]::before,
.share a:hover [class*=" icon-"]::before,
.share a[class*="icon-"]:hover::before {
  filter: brightness(0) invert(1);
}

/***** ======================== *****/
/***** COMMENTS                *****/
/***** ======================== *****/

.comment {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
}

.comment-heading {
  margin-bottom: 8px;
  margin-top: 0;
}

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

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

.comment-callout {
  color: #48487f;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
}

.comment-callout a {
  color: #0074C8;
  font-weight: 500;
}

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

.comment-sorter a {
  color: #3f3f6f;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
}

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

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

.comment-wrapper.comment-official {
  border: 2px solid #0074C8;
  border-radius: var(--fn-radius-md, 10px);
  padding: 40px 20px 20px;
  background: rgba(0, 116, 200, 0.02);
}

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

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

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

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

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

.comment-avatar {
  margin-right: 0;
}

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 16px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 16px;
  }
}

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

.comment-ccs {
  display: none;
}

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

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

.comment-attachments a {
  color: #0074C8;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  font-family: 'Figtree', sans-serif;
  line-height: 1.7;
  font-size: 15px;
}

.comment-body img {
  height: auto;
  max-width: 100%;
  border-radius: var(--fn-radius-sm, 6px);
}

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

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

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

.comment-body a:visited {
  color: #b21c2f;
}

.comment-body code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2px 6px;
  margin: 0 2px;
  font-family: 'SF Mono', monospace;
  font-size: 0.9em;
}

.comment-body pre {
  background: #1e293b;
  border: none;
  border-radius: var(--fn-radius-sm, 6px);
  padding: 16px 20px;
  overflow: auto;
  white-space: pre;
  color: #e2e8f0;
}

.comment-body blockquote {
  border-left: 4px solid #0074C8;
  background: #f8fafc;
  color: #2c2c4f;
  font-style: normal;
  padding: 12px 20px;
  margin: 16px 0;
  border-radius: 0 var(--fn-radius-sm, 6px) var(--fn-radius-sm, 6px) 0;
}

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

/***** Vote *****/
.vote {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 40px;
}

.vote a {
  outline: none;
}

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

.vote-sum {
  color: #1a1a2e;
  display: block;
  margin: 4px 0;
  font-weight: 600;
  font-size: 14px;
}

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

.vote-up:hover::before,
.vote-down:hover::before {
  color: #0074C8;
}

.vote-up::before, .vote-down::before {
  color: #cbd5e1;
  font-size: 20px;
  transition: color 0.2s ease;
}

.vote-up::before {
  content: "\2B06";
}

.vote-down::before {
  content: "\2B07";
}

.vote-voted::before {
  color: #0074C8;
}

.vote-voted:hover::before {
  color: #00487c;
}

/***** Actions *****/
.actions {
  text-align: center;
  flex-shrink: 0;
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 16px 0;
}

.actions .dropdown-toggle:hover::before, 
.actions .dropdown-toggle:focus::before, 
.actions .dropdown-toggle:active::before {
  background-color: #f1f5f9;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #48487f;
  content: "\2699";
  display: block;
  font-size: 16px;
  margin: auto;
  padding: 8px;
  transition: background-color 0.2s ease;
}

/***** ======================== *****/
/***** STATUS LABELS           *****/
/***** ======================== *****/

.status-label {
  background-color: #10b981;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  margin-right: 4px;
  padding: 4px 12px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

.status-label-pinned, .status-label-featured, .status-label-official {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
}

.status-label-official {
  border-radius: 0 0 var(--fn-radius-sm, 6px) var(--fn-radius-sm, 6px);
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    right: 24px;
    width: auto;
  }
}

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

.status-label-pending, .status-label-not-planned {
  background-color: #f1f5f9;
  color: #3f3f6f;
}

.status-label-pending {
  text-align: center;
}

.status-label-open {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.status-label-closed {
  background-color: #94a3b8;
}

.status-label-solved {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.status-label-new {
  background: linear-gradient(135deg, #ffc439 0%, #f59e0b 100%);
  color: #1a1a2e;
}

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

.status-label-open, .status-label-closed, .status-label-solved, 
.status-label-new, .status-label-hold, .status-label-answered {
  text-transform: uppercase;
}

/***** ======================== *****/
/***** PAGINATION              *****/
/***** ======================== *****/

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

.pagination * {
  display: inline-block;
}

.pagination li {
  border-radius: var(--fn-radius-sm, 6px);
  height: 40px;
  width: 40px;
  float: left;
  margin-left: 4px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 36px;
    width: 36px;
  }
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #f1f5f9;
}

.pagination li:hover:not(.pagination-current) span, 
.pagination li:hover:not(.pagination-current) a {
  color: #0074C8;
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 13px;
    padding: 8px 12px;
  }
}

.pagination-current {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
}

.pagination-current a, .pagination-current span {
  color: #ffffff;
}

.pagination-first {
  border-radius: var(--fn-radius-sm, 6px);
}

.pagination-last {
  border-radius: var(--fn-radius-sm, 6px);
}

/***** ======================== *****/
/***** METADATA                *****/
/***** ======================== *****/

.meta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #515190;
  font-size: 13px;
  font-weight: 400;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 6px;
}

/***** ======================== *****/
/***** ICONS                   *****/
/***** ======================== *****/

[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.search::before,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before { content: "\1F512"; }
.icon-star::before { content: "\2605"; }
.icon-linkedin::before {
  content: "" !important;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23475569'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-twitter::before {
  content: "" !important;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23475569'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-googleplus-::before {
  content: "" !important;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23475569'%3E%3Cpath d='M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0zm.14 19.018c-3.868 0-7-3.14-7-7.018s3.132-7.018 7-7.018c1.89 0 3.47.697 4.682 1.829l-1.974 1.978v-.003c-.735-.702-1.667-1.062-2.708-1.062-2.31 0-4.187 1.956-4.187 4.273 0 2.315 1.877 4.277 4.187 4.277 2.096 0 3.522-1.202 3.816-2.852H12.14v-2.737h6.585c.088.47.135.96.135 1.474 0 4.01-2.677 6.86-6.72 6.86z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-facebook::before {
  content: "" !important;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23475569'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-agent::before { content: "\1F464"; }
.icon-close::before { content: "\2715"; }
.icon-arrow-up::before { content: "\2B06"; }
.icon-arrow-down::before { content: "\2B07"; }
.icon-attachments::before { content: "\1F4CE"; }
.icon-comments::before { content: "\1F4AC"; }
.icon-search::before { content: "\1F50D"; }
.icon-vote::before { content: "\1F44D"; }
.icon-handle::before { content: "\25BE"; }
.icon-check::before { content: "\2713"; }
.icon-gear::before { content: "\2699"; }
.icon-menu::before { content: "\2630"; }
.icon-article::before { content: "\1F4C4"; }
.icon-post::before { content: "\1F4D4"; }
.icon-notification-alert::before { content: "\26A0"; }
.icon-notification-error::before { content: "\00D7"; }
.icon-notification-info::before { content: "\2139"; }
.icon-notification-success::before { content: "\2714"; }

/***** ======================== *****/
/***** SEARCH RESULTS          *****/
/***** ======================== *****/

.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

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

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 48%;
  }
}

.search-results-list {
  margin-bottom: 32px;
}

.search-results-list > li {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #e2e8f0;
}

.search-result-description {
  margin-top: 12px;
  color: #3f3f6f;
  font-size: 14px;
  line-height: 1.6;
}

.search-result-votes, .search-result-meta-count {
  color: #48487f;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 400;
  padding: 4px 8px;
  position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
  color: #0074C8;
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 8px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 8px;
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 6px;
}

/***** ======================== *****/
/***** CUSTOM CALLOUT BOXES    *****/
/***** ======================== *****/

.note {
  border-left: 4px solid #E03B50;
  background: rgba(224, 59, 80, 0.05);
  padding: 16px 16px 16px 56px;
  border-radius: 0 var(--fn-radius-sm, 6px) var(--fn-radius-sm, 6px) 0;
  margin: 20px 0;
  position: relative;
  background-image: url("https://gallery.mailchimp.com/bedf21b9d360a6cf862185a6b/images/03a224af-08c5-4ee2-a286-00bf7a87de1b.png");
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: 20px center;
}

.change {
  border-left: 4px solid #ffc439;
  background: rgba(255, 196, 57, 0.08);
  padding: 16px 16px 16px 56px;
  border-radius: 0 var(--fn-radius-sm, 6px) var(--fn-radius-sm, 6px) 0;
  margin: 20px 0;
  position: relative;
  background-image: url("https://gallery.mailchimp.com/bedf21b9d360a6cf862185a6b/images/2e6b41ca-6fb7-43c4-bee9-7e70d9a1be6e.png");
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: 16px center;
}

.hint {
  border-left: 4px solid #0074C8;
  background: rgba(0, 116, 200, 0.05);
  padding: 16px 16px 16px 56px;
  border-radius: 0 var(--fn-radius-sm, 6px) var(--fn-radius-sm, 6px) 0;
  margin: 20px 0;
  position: relative;
  font-style: normal;
  background-image: url("https://formunauts-email-assets.s3.eu-central-1.amazonaws.com/Formunauts/rocket.png");
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: 14px center;
}

/***** ======================== *****/
/***** COMMUNITY (abbreviated) *****/
/***** ======================== *****/

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

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

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

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

.community-header h4 {
  margin-bottom: 0;
}

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

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

/***** ======================== *****/
/***** STRIPED LIST            *****/
/***** ======================== *****/

.striped-list {
  padding: 0;
}

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

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

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

.striped-list-title {
  color: #1a1a2e;
  margin-bottom: 8px;
  margin-right: 8px;
  font-weight: 600;
}

.striped-list-title:hover {
  color: #0074C8;
  text-decoration: none;
}

.striped-list-title:visited {
  color: #1a1a2e;
}

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

.striped-list-count {
  color: #48487f;
  font-weight: 400;
  font-size: 13px;
  justify-content: flex-start;
}

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

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

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

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

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

@media (min-width: 768px) {
  .striped-list-number {
    color: #1a1a2e;
    display: block;
  }
}

/***** ======================== *****/
/***** USER PROFILES           *****/
/***** ======================== *****/

.profile-header {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

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

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

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

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

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

.profile-avatar .user-avatar {
  width: 72px;
  height: 72px;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-avatar .icon-agent::before {
  bottom: 2px;
  right: 2px;
  width: 24px;
  height: 24px;
  font-size: 12px;
}

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

.profile-header .basic-info .name {
  margin: 0;
  font-size: 24px;
}

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

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 16px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 16px;
  }
}

.profile-header .options [data-action="edit-profile"] {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  border: 0;
  color: #ffffff;
  line-height: normal;
  padding: 10px 24px;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  margin: 20px 0;
  flex-basis: 100%;
  color: #3f3f6f;
}

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

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

.profile-stats .stat-label {
  color: #48487f;
  font-weight: 400;
  flex: 0 0 100px;
  margin-right: 12px;
}

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

.profile-nav {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 0;
  margin-bottom: 40px;
}

.profile-section {
  width: 100%;
}

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

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 2px solid #e8ecf0;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a1a2e;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 4px 0 0;
  color: #48487f;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

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

.profile-private-badge {
  flex-basis: 100%;
  border: 2px solid #0074C8;
  border-radius: 50px;
  color: #0074C8;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 8px;
  font-family: "copenhagen-icons";
  vertical-align: middle;
  line-height: 15px;
}

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

/***** ======================== *****/
/***** COLLAPSIBLE ELEMENTS    *****/
/***** ======================== *****/

.collapsible-nav {
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  flex-direction: column;
  max-height: 48px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

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

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

.collapsible-nav-list li {
  color: #1a1a2e;
  line-height: 48px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 16px 20px;
    border-radius: var(--fn-radius-sm, 6px);
  }
}

.collapsible-nav-list li a {
  color: #1a1a2e;
  display: block;
  font-weight: 500;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: none;
  }
  .collapsible-nav-list li:hover a {
    background: #f1f5f9;
    text-decoration: none;
  }
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    order: 1;
  }
  .collapsible-nav-list li[aria-selected="true"] a {
    background: #0074C8;
    color: #fff;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #0074C8;
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

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

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

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

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

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

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

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

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 12px;
}

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

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 12px;
  right: auto;
}

/***** ======================== *****/
/***** MY ACTIVITIES           *****/
/***** ======================== *****/

.my-activities-nav {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 0;
  margin-bottom: 24px;
}

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: none;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: #0074C8;
}

.my-activities-table .striped-list-title {
  display: block;
  margin-bottom: 12px;
  max-width: 350px;
  white-space: normal;
}

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

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

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

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

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

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

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

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

.no-activities {
  color: #48487f;
  text-align: center;
  padding: 48px 0;
}

/***** ======================== *****/
/***** REQUEST PAGES           *****/
/***** ======================== *****/

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

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

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

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

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

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

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

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

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

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

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

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

.request-main .comment-show-container {
  border-radius: var(--fn-radius-sm, 6px);
  border: 2px solid #e2e8f0;
  cursor: pointer;
  display: flex;
  padding: 12px 20px;
  width: 100%;
  transition: border-color 0.2s ease;
}

.request-main .comment-show-container:hover {
  border-color: #0074C8;
}

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

.request-main .comment-show-container-content {
  align-self: center;
  color: #48487f;
  margin-left: 12px;
}

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

.request-title {
  width: 100%;
}

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

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

@media (min-width: 1024px) {
  .request-sidebar {
    background: #f8fafc;
    border: 0;
    border-radius: var(--fn-radius-md, 10px);
    font-size: 13px;
    flex: 0 0 auto;
    padding: 24px;
    width: 30%;
  }
}

.request-sidebar h5 {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

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

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

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

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

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

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

.request-details dt {
  color: #48487f;
  font-weight: 400;
  width: 40%;
}

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

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

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

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

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

/***** ======================== *****/
/***** REQUESTS TABLE          *****/
/***** ======================== *****/

.requests-search {
  width: 100%;
}

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

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

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

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

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

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

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 24px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 24px 0 0;
  }
}

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

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

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

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

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 44px;
  max-height: 44px;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 12px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe, [dir="rtl"]
  .requests-table-toolbar .organization-unsubscribe {
    margin: 0 12px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

/***** Subscriptions table *****/
.subscriptions-unsubscribe a {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  border-radius: var(--fn-radius-sm, 6px);
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  line-height: 2.2;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

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

.subscriptions-unsubscribe a:hover {
  background: linear-gradient(135deg, darken(#0074C8, 5%) 0%, darken(#0074C8, 15%) 100%);
  text-decoration: none;
}

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

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

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

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

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

/***** Contributions table *****/
.contributions-table td:last-child {
  color: #48487f;
  font-size: 13px;
  font-weight: 400;
}

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

/***** ======================== *****/
/***** POST PAGES              *****/
/***** ======================== *****/

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-content {
  font-family: 'Figtree', sans-serif;
  line-height: 1.7;
  word-break: break-word;
}

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

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

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

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

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

.post-body img {
  height: auto;
  max-width: 100%;
  border-radius: var(--fn-radius-sm, 6px);
}

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

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

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

.post-body a:visited {
  color: #b21c2f;
}

.post-body code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 2px 6px;
  margin: 0 2px;
}

.post-body pre {
  background: #1e293b;
  border: none;
  border-radius: var(--fn-radius-sm, 6px);
  padding: 20px 24px;
  overflow: auto;
  white-space: pre;
  color: #e2e8f0;
}

.post-body blockquote {
  border-left: 4px solid #0074C8;
  background: #f8fafc;
  color: #2c2c4f;
  font-style: normal;
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 0 var(--fn-radius-sm, 6px) var(--fn-radius-sm, 6px) 0;
}

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

.post-comment-count {
  color: #48487f;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-comment-count:hover {
  text-decoration: none;
  color: #0074C8;
}

.post-comment-count .icon-comments {
  color: #0074C8;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
}

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

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 48px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 48px 0 0;
  }
}

.post-sidebar h5 {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .post-sidebar h5 {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
  }
}

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

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

/***** Community topics grid *****/
.topics {
  max-width: none;
  width: 100%;
}

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

/***** Community topic page *****/
.topic-header {
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
}

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

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

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

.no-posts-with-filter {
  margin-top: 24px;
  margin-bottom: 24px;
  color: #48487f;
}

/***** Community follow button *****/
.community-follow {
  margin-bottom: 12px;
  width: 100%;
}

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

.community-follow .dropdown {
  width: 100%;
}

.community-follow [role="button"] {
  line-height: 32px;
  padding: 0 16px 0 20px;
  position: relative;
  width: 100%;
}

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

.community-follow [role="button"]:hover {
  background-color: #0074C8;
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #ffffff;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: #0074C8;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid #ffffff;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #005695;
  border-color: #005695;
}

.community-follow [role="button"]::after {
  border-left: 1px solid #0074C8;
  content: attr(data-follower-count);
  color: #0074C8;
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  margin-left: 16px;
  padding-left: 12px;
  position: absolute;
  right: 12px;
}

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

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid #0074C8;
  margin: 0 12px 0 0;
  padding: 0 12px 0 0;
}

/***** ======================== *****/
/***** PROFILE ACTIVITY        *****/
/***** ======================== *****/

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

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

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

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

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

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

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

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

.profile-contribution-title {
  margin: 0 0 8px 0;
  display: inline;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 600;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 12px 0;
  color: #3f3f6f;
}

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

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 36px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 36px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.profile-contribution-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #cbd5e1;
  font-family: "copenhagen-icons";
  line-height: 28px;
}

[dir="rtl"] .profile-contribution-list > .profile-contribution::before {
  right: 0;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 36px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 36px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 36px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 36px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #48487f;
}

.profile-section .private-activity::before {
  content: "\1f512";
  font-family: "copenhagen-icons";
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 12px;
}

[dir="rtl"] .profile-section .private-activity::before {
  margin-right: 0;
  margin-left: 12px;
}

.profile-activity-list {
  margin-top: 28px;
}

.profile-activity {
  position: relative;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 24px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 24px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 2px solid #e2e8f0;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 2px solid #e2e8f0;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 40px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 44px;
  height: 44px;
  margin-right: 12px;
  min-width: 44px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 12px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 12px;
  border-radius: var(--fn-radius-md, 10px);
  background-color: #f8fafc;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 56px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 56px;
  }
}

.profile-activity::before {
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-position: 50% 50%;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  color: #cbd5e1;
  font-family: "copenhagen-icons";
}

[dir="rtl"] .profile-activity::before {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity::before {
    left: -17px;
  }
  [dir="rtl"] .profile-activity::before {
    right: -17px;
  }
}

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
  content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
  content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  line-height: 32px;
}

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

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

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

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

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

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 24px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 24px;
  }
}

/***** ======================== *****/
/***** ADDITIONAL STYLES v2.1  *****/
/***** ======================== *****/

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: 600;
  color: #1a1a2e;
}

.section-title-small {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a2e;
}

/* Hero Subtitle */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Community Subtitle */
.community-subtitle {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 15px;
}

/* Promoted Section */
.promoted-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

/* Enhanced Footer Styles */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a2e !important;
}

.footer-logo-link:hover {
  color: #0074C8 !important;
}

.footer-logo-text {
  font-weight: 700;
  color: #0074C8;
  font-size: 16px;
}

.footer-logo-separator {
  color: #cbd5e1;
  font-weight: 300;
}

.footer-help-text {
  color: #64748b;
  font-weight: 400;
}

.footer-tagline {
  margin: 6px 0 0;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-links {
    margin-top: 20px;
    gap: 16px;
  }
}

.footer-link {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #0074C8;
}

.footer-language-toggle {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.footer-globe-icon {
  opacity: 0.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

@media (min-width: 1200px) {
  .footer-bottom {
    padding: 20px 0 0;
  }
}

.footer-copyright {
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #0074C8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 116, 200, 0.1);
  z-index: 9999;
}

.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0074C8, #00a5c8);
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Code Copy Button */
.code-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #e2e8f0;
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
}

pre:hover .code-copy-btn {
  opacity: 1;
}

.code-copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.code-copy-btn.copied {
  background: #10b981;
  border-color: #10b981;
}

/* Enhanced Card Hover */
.blocks-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blocks-item.is-hovered,
.blocks-item:hover {
  border-color: #0074C8;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 116, 200, 0.12);
}

/* Dropdown Enhanced */
.dropdown.is-open .dropdown-menu {
  display: block;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Using Mouse vs Keyboard */
body.using-mouse *:focus {
  outline: none !important;
}

body:not(.using-mouse) a:focus,
body:not(.using-mouse) button:focus,
body:not(.using-mouse) input:focus,
body:not(.using-mouse) select:focus,
body:not(.using-mouse) textarea:focus {
  outline: 2px solid #0074C8;
  outline-offset: 2px;
}

/* Feature Banner Transition */
.feature-banner {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-banner.hidden {
  display: none;
}

/* Mobile Menu Active State */
.icon-menu.is-active::before {
  content: "\2715";
}

/* Search Focus Enhancement */
.search.search-focused input[type="search"] {
  border-color: #0074C8;
  box-shadow: 0 0 0 4px rgba(0, 116, 200, 0.1), 0 4px 20px rgba(0, 116, 200, 0.1);
}

/* Empty State */
.no-results,
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}

.no-results h3,
.empty-state h3 {
  margin-bottom: 12px;
  color: #1a1a2e;
}

/* Loading State */
.is-loading {
  position: relative;
  pointer-events: none;
}

.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #e2e8f0;
  border-top-color: #0074C8;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
  .feature-banner,
  .header,
  .footer,
  .reading-progress,
  .skip-link {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .article-body {
    max-width: 100%;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .blocks-item {
    border-width: 2px;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  /* Uncomment to enable dark mode */
  /*
  body {
    background-color: #0f172a;
    color: #e2e8f0;
  }
  
  .blocks-item {
    background: #1e293b;
    border-color: #334155;
  }
  */
}

/***** ========================================= *****/
/***** ULTIMATE THEME v2.3 - PERFECTED LAYOUT   *****/
/***** ========================================= *****/

/* ===== LANGUAGE CONTENT SWITCHING ===== */
.lang-content {
  display: none; /* Hidden by default, JS shows the correct one */
}

/* Fallback: If JS doesn't load, show English */
.no-js .lang-content[data-lang="en"] {
  display: inline;
}

/* ===== HERO SECTION - PERFECTED ===== */
.hero {
  padding: 60px 24px 80px;
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 24px 100px;
  }
}

.hero-inner {
  max-width: 800px;
  min-height: auto;
  padding: 0;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
}

.hero-title .lang-content {
  display: none;
}

/* When JS applies language class */
body.lang-en .hero-title .lang-content[data-lang="en"],
body.lang-de .hero-title .lang-content[data-lang="de"] {
  display: inline;
}

/* ===== BLOCKS/CARDS - PERFECTED ===== */
.blocks-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 900px) {
  .blocks-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .blocks-list {
    gap: 28px;
  }
}

.blocks-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  min-height: 100px;
  display: flex;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.blocks-item:hover {
  border-color: #0074C8;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 116, 200, 0.12);
}

.blocks-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 28px 24px;
  color: #1a1a2e;
  text-decoration: none;
}

.blocks-item-link:hover {
  text-decoration: none;
}

.blocks-item-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.blocks-item:hover .blocks-item-title {
  color: #0074C8;
}

/* ===== SECTION TREE (CATEGORY PAGES) - PERFECTED ===== */
.section-tree {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .section-tree {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 48px;
  }
}

.section-tree .section {
  margin-bottom: 0;
}

.section-tree-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.section-tree-title a {
  color: #1a1a2e;
}

.section-tree-title a:hover {
  color: #0074C8;
}

/* ===== ARTICLE LIST - PERFECTED ===== */
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-list-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 0;
  margin: 0;
}

.article-list-item:last-child {
  border-bottom: none;
}

.article-list-item a {
  display: block;
  padding: 14px 0;
  color: #1a1a2e;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.article-list-item a:hover {
  color: #0074C8;
  padding-left: 8px;
}

/* ===== STARRED/PROMOTED ITEMS - FIXED ===== */
.article-list-item.article-promoted {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(255, 196, 57, 0.1) 0%, rgba(245, 158, 11, 0.06) 100%);
  border-radius: 10px;
  margin: 4px 0;
  padding: 0 !important;
  border-bottom: none !important;
}

.article-list-item.article-promoted + .article-list-item.article-promoted {
  margin-top: 8px;
}

.article-list-item.article-promoted a {
  padding: 12px 14px;
  flex: 1;
}

.article-list-item.article-promoted a:hover {
  padding-left: 20px;
}

.icon-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ffc439 0%, #f59e0b 100%);
  border-radius: 8px;
  margin-left: 12px;
  flex-shrink: 0;
}

.icon-star::before {
  content: "\2605" !important;
  color: white !important;
  font-size: 14px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== PROMOTED ARTICLES SECTION - PERFECTED ===== */
.promoted-articles-section {
  margin-top: 64px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .promoted-articles-section {
    padding: 48px 40px;
  }
}

.promoted-articles-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.promoted-articles-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0074C8 0%, #005a9e 100%);
  border-radius: 14px;
  flex-shrink: 0;
}

.promoted-articles-icon svg {
  stroke: white;
  fill: rgba(255, 255, 255, 0.2);
}

.promoted-articles-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.promoted-articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 600px) {
  .promoted-articles-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1000px) {
  .promoted-articles-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promoted-articles-item {
  list-style: none;
}

.promoted-articles-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: white;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  color: #1a1a2e;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  transition: all 0.25s ease;
  text-decoration: none;
  height: 100%;
  min-height: 72px;
}

.promoted-articles-link:hover {
  border-color: #0074C8;
  box-shadow: 0 8px 24px rgba(0, 116, 200, 0.12);
  transform: translateY(-2px);
  color: #0074C8;
}

.promoted-articles-item-icon {
  flex-shrink: 0;
  opacity: 0.4;
  transition: all 0.2s ease;
}

.promoted-articles-link:hover .promoted-articles-item-icon {
  opacity: 1;
  stroke: #0074C8;
}

.promoted-articles-item-title {
  flex: 1;
}

.promoted-articles-item-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}

.promoted-articles-link:hover .promoted-articles-item-arrow {
  opacity: 1;
  transform: translateX(0);
  stroke: #0074C8;
}

/* ===== CONTAINER SPACING - PERFECTED ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 24px;
  }
}

.knowledge-base {
  padding-top: 48px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .knowledge-base {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

/* ===== CATEGORY PAGE HEADER - FIXED (Description under title) ===== */
.page-header:not(.community-header) {
  display: block !important;
  flex-direction: column !important;
  margin-bottom: 48px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a2e;
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 40px;
  }
}

.page-header-description {
  display: block !important;
  width: 100%;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  max-width: 900px;
  margin: 0 0 0 0 !important;
  flex-basis: auto !important;
}

/* ===== SECTION TREE - COMPLETELY REDESIGNED ===== */
.section-tree {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .section-tree {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 64px;
  }
}

.section-tree .section {
  margin-bottom: 0;
  padding: 32px 0;
  border-bottom: 1px solid #e2e8f0;
}

.section-tree .section:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .section-tree .section:nth-last-child(1),
  .section-tree .section:nth-last-child(2) {
    border-bottom: none;
  }
}

.section-tree-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
  color: #1a1a2e;
}

.section-tree-title a {
  color: #1a1a2e;
  transition: color 0.2s ease;
}

.section-tree-title a:hover {
  color: #0074C8;
}

/* ===== ARTICLE LIST - CLEAN DESIGN ===== */
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-list-item {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #f1f5f9;
}

.article-list-item:last-child {
  border-bottom: none;
}

.article-list-item a.article-list-link {
  display: block;
  padding: 14px 0;
  color: #1a1a2e;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.article-list-item a.article-list-link:hover {
  color: #0074C8;
  padding-left: 8px;
}

/* ===== STARRED/PROMOTED ITEMS - COMPLETELY REDESIGNED ===== */
.article-list-item.article-promoted {
  display: flex !important;
  align-items: stretch;
  gap: 0;
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0 !important;
  border-bottom: 1px solid #f1f5f9;
}

.article-list-item.article-promoted:last-child {
  border-bottom: none;
}

/* Star icon badge */
.article-list-item.article-promoted .icon-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ffc439 0%, #f59e0b 100%);
  border-radius: 10px;
  margin: 0;
  margin-right: 14px;
  flex-shrink: 0;
  align-self: center;
}

.article-list-item.article-promoted .icon-star::before {
  content: "\2605" !important;
  color: white !important;
  font-size: 16px !important;
  text-shadow: none;
}

/* Link in promoted item */
.article-list-item.article-promoted a.article-list-link {
  flex: 1;
  padding: 16px 0;
  font-weight: 500;
}

.article-list-item.article-promoted a.article-list-link:hover {
  padding-left: 8px;
}

/* Highlighted background for promoted items */
.article-list-item.article-promoted {
  background: linear-gradient(90deg, rgba(255, 196, 57, 0.08) 0%, transparent 100%);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px !important;
  padding-right: 16px !important;
  border-radius: 8px;
  border-bottom: none !important;
  margin-bottom: 8px;
}

.article-list-item.article-promoted:last-child {
  margin-bottom: 0;
}

/* ===== PROMOTED ARTICLES SECTION (HOMEPAGE) - PERFECTED ===== */
.promoted-articles-section {
  margin-top: 64px;
  padding: 36px 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .promoted-articles-section {
    padding: 44px 40px;
  }
}

.promoted-articles-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.promoted-articles-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0074C8 0%, #005a9e 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.promoted-articles-icon svg {
  stroke: white;
  fill: rgba(255, 255, 255, 0.2);
}

.promoted-articles-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.promoted-articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 600px) {
  .promoted-articles-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1000px) {
  .promoted-articles-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.promoted-articles-item {
  list-style: none;
}

.promoted-articles-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  color: #1a1a2e;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  transition: all 0.25s ease;
  text-decoration: none;
  height: 100%;
  min-height: 64px;
}

.promoted-articles-link:hover {
  border-color: #0074C8;
  box-shadow: 0 6px 20px rgba(0, 116, 200, 0.1);
  transform: translateY(-2px);
  color: #0074C8;
}

.promoted-articles-item-icon {
  flex-shrink: 0;
  opacity: 0.35;
  transition: all 0.2s ease;
}

.promoted-articles-link:hover .promoted-articles-item-icon {
  opacity: 1;
  stroke: #0074C8;
}

.promoted-articles-item-title {
  flex: 1;
}

.promoted-articles-item-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}

.promoted-articles-link:hover .promoted-articles-item-arrow {
  opacity: 1;
  transform: translateX(0);
  stroke: #0074C8;
}

/* ===== SEE ALL ARTICLES LINK ===== */
.see-all-articles {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 14px;
  color: #0074C8;
  transition: all 0.2s ease;
}

.see-all-articles:hover {
  gap: 10px;
}

.see-all-articles::after {
  content: "→";
  transition: transform 0.2s ease;
}

.see-all-articles:hover::after {
  transform: translateX(4px);
}

/* ===== HIDE UNUSED SECTIONS ===== */
.community,
.activity {
  display: none !important;
}

/***** ================================ *****/
/***** PROMOTED ARTICLES SECTION v2.2   *****/
/***** ================================ *****/

.promoted-articles-section {
  margin-top: 56px;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.promoted-articles-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.promoted-articles-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0074C8 0%, #005a9e 100%);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.promoted-articles-icon svg {
  stroke: white;
  fill: rgba(255, 255, 255, 0.2);
}

.promoted-articles-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.promoted-articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .promoted-articles-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .promoted-articles-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promoted-articles-item {
  list-style: none;
}

.promoted-articles-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  color: #1a1a2e;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.promoted-articles-link:hover {
  border-color: #0074C8;
  box-shadow: 0 4px 20px rgba(0, 116, 200, 0.1);
  transform: translateY(-2px);
  color: #0074C8;
}

.promoted-articles-item-icon {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.promoted-articles-link:hover .promoted-articles-item-icon {
  opacity: 1;
  stroke: #0074C8;
}

.promoted-articles-item-title {
  flex: 1;
  line-height: 1.4;
}

.promoted-articles-item-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.promoted-articles-link:hover .promoted-articles-item-arrow {
  opacity: 1;
  transform: translateX(0);
  stroke: #0074C8;
}

/***** ================================ *****/
/***** STARRED/PROMOTED ITEMS ENHANCED  *****/
/***** ================================ *****/

/* Override default star icon styling */
.icon-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ffc439 0%, #f59e0b 100%);
  border-radius: 8px;
  margin-right: 12px;
  flex-shrink: 0;
}

.icon-star::before {
  content: "\2605";
  color: white !important;
  font-size: 14px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Article list with promoted items */
.article-list-item.article-promoted {
  display: flex;
  align-items: center;
}

.article-list-item.article-promoted .icon-star {
  position: relative;
  top: 0;
}

/* Section tree promoted articles */
.section-tree .article-list-item.article-promoted {
  background: linear-gradient(135deg, rgba(255, 196, 57, 0.08) 0%, rgba(245, 158, 11, 0.05) 100%);
  margin: -8px -12px;
  padding: 8px 12px;
  border-radius: 8px;
}

/* Hero title visibility fix */
.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 44px;
  }
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Remove unused sections styling */
.community,
.activity {
  display: none;
}

/***** ============================================== *****/
/***** FINAL PERFECTION v2.6.0 - HIGHEST SPECIFICITY *****/
/***** ============================================== *****/

/* ===== FIX 1: PROMOTED ARTICLES CARDS (HOMEPAGE) ===== */
/* Problem: Icons zu weit links, unausgewogen */
/* Solution: Mehr Padding, bessere Zentrierung */

section.promoted-articles-section {
  margin-top: 64px;
  padding: 40px 36px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  section.promoted-articles-section {
    padding: 48px 48px;
  }
}

section.promoted-articles-section .promoted-articles-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

section.promoted-articles-section .promoted-articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 600px) {
  section.promoted-articles-section .promoted-articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  section.promoted-articles-section .promoted-articles-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

section.promoted-articles-section .promoted-articles-link {
  display: flex;
  align-items: center;
  gap: 14px;
  /* KEY FIX: Mehr Padding für bessere Balance */
  padding: 18px 22px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  color: #1a1a2e;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  transition: all 0.25s ease;
  text-decoration: none;
  height: 100%;
  min-height: 68px;
}

section.promoted-articles-section .promoted-articles-link:hover {
  border-color: #0074C8;
  box-shadow: 0 6px 24px rgba(0, 116, 200, 0.12);
  transform: translateY(-2px);
  color: #0074C8;
}

section.promoted-articles-section .promoted-articles-item-icon {
  flex-shrink: 0;
  opacity: 0.4;
  width: 20px;
  height: 20px;
}

section.promoted-articles-section .promoted-articles-link:hover .promoted-articles-item-icon {
  opacity: 1;
  stroke: #0074C8;
}

section.promoted-articles-section .promoted-articles-item-title {
  flex: 1;
  min-width: 0;
}

section.promoted-articles-section .promoted-articles-item-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  width: 16px;
  height: 16px;
}

section.promoted-articles-section .promoted-articles-link:hover .promoted-articles-item-arrow {
  opacity: 1;
  transform: translateX(0);
  stroke: #0074C8;
}

/* ===== FIX 2: BANNER CTA BUTTON - ARROW ALIGNMENT ===== */
/* Problem: Pfeil nicht vertikal zentriert mit Text */
/* Solution: SVG explizit vertikal zentrieren */

.feature-banner .feature-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #003087;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  line-height: 1;
}

.feature-banner .feature-banner-cta:hover {
  background: #ffc439;
  color: #003087;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.feature-banner .feature-banner-cta .feature-banner-arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  /* KEY FIX: Vertikale Zentrierung */
  vertical-align: middle;
  margin-top: 0;
  flex-shrink: 0;
}

.feature-banner .feature-banner-cta:hover .feature-banner-arrow {
  transform: translateX(3px);
}

/* ===== FIX 3: STARRED ITEMS - COMPLETE REDESIGN ===== */
/* Problem: Keine Trennstriche, zu groß, kleben zusammen */
/* Solution: Gleiche Größe wie normale Items, Trennstriche, dezenter Hintergrund */

/* Reset all previous starred styles */
.section-tree .article-list-item.article-promoted,
.article-list .article-list-item.article-promoted {
  /* Gleiche Basis wie normale Items */
  display: flex !important;
  align-items: center;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  /* KEY FIX: Trennstrich wie normale Items */
  border-bottom: 1px solid #e8ecf0 !important;
  /* Dezenter Hintergrund */
  background: linear-gradient(90deg, rgba(255, 196, 57, 0.06) 0%, transparent 60%) !important;
}

.section-tree .article-list-item.article-promoted:last-child,
.article-list .article-list-item.article-promoted:last-child {
  border-bottom: none !important;
}

/* Star Icon - kleiner und dezenter */
.section-tree .article-list-item.article-promoted .icon-star,
.article-list .article-list-item.article-promoted .icon-star {
  display: flex;
  align-items: center;
  justify-content: center;
  /* KEY FIX: Kleinere Größe */
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: linear-gradient(135deg, #ffc439 0%, #f59e0b 100%);
  border-radius: 6px;
  margin: 0;
  margin-right: 12px;
  flex-shrink: 0;
}

.section-tree .article-list-item.article-promoted .icon-star::before,
.article-list .article-list-item.article-promoted .icon-star::before {
  content: "\2605" !important;
  color: white !important;
  font-size: 12px !important;
  line-height: 1;
}

/* Link in starred item - gleiche Größe wie normale Items */
.section-tree .article-list-item.article-promoted a.article-list-link,
.article-list .article-list-item.article-promoted a.article-list-link {
  flex: 1;
  /* KEY FIX: Gleiche Padding wie normale Items */
  padding: 14px 0 !important;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  display: block;
}

.section-tree .article-list-item.article-promoted a.article-list-link:hover,
.article-list .article-list-item.article-promoted a.article-list-link:hover {
  color: #0074C8;
  padding-left: 6px !important;
}

/* Normale Items - sicherstellen dass sie konsistent sind */
.section-tree .article-list-item:not(.article-promoted),
.article-list .article-list-item:not(.article-promoted) {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #f1f5f9;
}

.section-tree .article-list-item:not(.article-promoted):last-child,
.article-list .article-list-item:not(.article-promoted):last-child {
  border-bottom: none;
}

.section-tree .article-list-item:not(.article-promoted) a,
.article-list .article-list-item:not(.article-promoted) a {
  display: block;
  padding: 14px 0;
  color: #1a1a2e;
  font-size: 15px;
  line-height: 1.5;
}

.section-tree .article-list-item:not(.article-promoted) a:hover,
.article-list .article-list-item:not(.article-promoted) a:hover {
  color: #0074C8;
  padding-left: 6px;
}

/***** ============================================== *****/
/***** SPACE OPTIMIZATION v2.7.0 - LESS SCROLLING    *****/
/***** ============================================== *****/

/* ===== HERO: Kompakter, Titel+Suche gemeinsam zentriert ===== */
section.hero {
  min-height: auto !important;
  padding: 48px 24px 56px !important;
}

@media (min-width: 768px) {
  section.hero {
    padding: 56px 24px 64px !important;
  }
}

section.hero .hero-inner {
  min-height: auto !important;
  max-width: 650px;
  gap: 0;
}

section.hero .hero-title {
  font-size: 30px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  section.hero .hero-title {
    font-size: 36px;
  }
}

/* ===== KATEGORIEN: 4 Spalten, kompakter, balancierte Abstände ===== */
section.knowledge-base {
  /* Abstand nach oben halbiert, Abstand nach unten hinzugefügt */
  padding-top: 20px !important;
  padding-bottom: 24px !important;
}

@media (min-width: 768px) {
  section.knowledge-base {
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }
}

section.knowledge-base .blocks-list {
  display: grid;
  /* 4 Spalten auf Desktop */
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  section.knowledge-base .blocks-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 900px) {
  section.knowledge-base .blocks-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Kleinere Boxen */
section.knowledge-base .blocks-item {
  min-height: auto;
}

section.knowledge-base .blocks-item-link {
  padding: 20px 18px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.knowledge-base .blocks-item-title {
  font-size: 15px;
  margin: 0;
  text-align: center;
}

/* ===== PROMOTED ARTICLES: Kompakter, mit Abstand nach oben ===== */
section.promoted-articles-section {
  /* Abstand nach oben für Balance */
  margin-top: 16px !important;
  padding: 28px 24px !important;
  border-radius: 16px;
}

@media (min-width: 768px) {
  section.promoted-articles-section {
    margin-top: 20px !important;
    padding: 32px 32px !important;
  }
}

section.promoted-articles-section .promoted-articles-header {
  margin-bottom: 20px;
}

section.promoted-articles-section .promoted-articles-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

section.promoted-articles-section .promoted-articles-title {
  font-size: 20px;
}

section.promoted-articles-section .promoted-articles-list {
  gap: 10px;
}

@media (min-width: 600px) {
  section.promoted-articles-section .promoted-articles-list {
    gap: 12px;
  }
}

section.promoted-articles-section .promoted-articles-link {
  padding: 14px 18px;
  min-height: 56px;
  font-size: 13px;
  gap: 10px;
}

section.promoted-articles-section .promoted-articles-item-icon {
  width: 16px;
  height: 16px;
}

/* ===== CONTAINER: Weniger vertikaler Abstand ===== */
.container {
  padding-top: 0;
  padding-bottom: 0;
}

/* ===== ALLGEMEINE SEKTION-ABSTÄNDE ===== */
.section {
  margin-bottom: 32px !important;
}

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

/***** ============================================= *****/
/***** v2.9.0 - COMMUNITY, PROFILE & SHARE FIXES    *****/
/***** ============================================= *****/

/* ===== 1. HIDE ARTICLE/POST SHARE (Zendesk generates broken sharing) ===== */
.post-share,
.article-share {
  display: none !important;
}

/* ===== FOOTER SOCIAL ICONS (Formunauts profiles) ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: #0074C8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 116, 200, 0.25);
  text-decoration: none;
}

.footer-social-link svg {
  display: block;
}

/* ===== 2. COMMUNITY HERO - Same gradient as homepage ===== */
.community-hero {
  background-image: none !important;
  background: linear-gradient(135deg, #0074C8 0%, #005a9e 50%, #00a5c8 100%) !important;
  background-size: 200% 200% !important;
  animation: heroGradient 15s ease infinite;
  min-height: auto !important;
  padding: 48px 24px 56px !important;
}

@media (min-width: 768px) {
  .community-hero {
    padding: 56px 24px 64px !important;
  }
}

.community-hero .hero-inner {
  min-height: auto !important;
  max-width: 650px;
}

.community-hero .search {
  width: 100%;
  max-width: 600px;
}

/* ===== 3. COMMUNITY TOPIC LIST PAGE - Layout ===== */
.page-header.community-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.page-header.community-header .page-header-item {
  margin: 0;
}

.page-header.community-header h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #1a1a2e;
}

.page-header.community-header .post-to-community {
  margin: 0;
}

.page-header.community-header .post-to-community a,
.page-header.community-header .post-to-community .button-large {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  color: #fff;
  border: 0;
  padding: 10px 24px;
  border-radius: var(--fn-radius-sm, 6px);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.page-header.community-header .post-to-community a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 116, 200, 0.3);
}

/* Community Topic Cards */
.topics .blocks-list.topics-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 0;
}

.topics .blocks-item.topics-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-md, 10px);
  transition: all 0.25s ease;
  min-height: 0;
}

.topics .blocks-item.topics-item:hover {
  border-color: #0074C8;
  box-shadow: 0 4px 16px rgba(0, 116, 200, 0.12);
  transform: translateY(-2px);
}

.topics .blocks-item.topics-item .blocks-item-link {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  text-align: left;
}

.topics .blocks-item.topics-item .blocks-item-title {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.topics .blocks-item.topics-item .blocks-item-description {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topics .topics-item .meta-group {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
}

/* ===== 4. COMMUNITY TOPIC PAGE (Individual topic with posts) ===== */
.community-header:not(.page-header) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.community-header .page-header-description {
  flex: 1;
  margin: 0 !important;
}

.topic-header {
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 8px;
}

.topic-filters {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===== 5. COMMUNITY FOOTER ===== */
.community-footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #e8ecf0;
  margin-top: 40px;
}

.community-footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.community-footer .button-large {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  color: #fff;
  border: 0;
  padding: 12px 28px;
  border-radius: var(--fn-radius-sm, 6px);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.community-footer .button-large:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 116, 200, 0.3);
  text-decoration: none;
  color: #fff;
}

/* ===== 6. COMMUNITY FEATURED POSTS ===== */
.community-featured-posts {
  padding: 32px 0;
  border-top: 1px solid #e8ecf0;
}

.community-featured-posts h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.community-featured-posts .promoted-articles {
  list-style: none;
  padding: 0;
}

.community-featured-posts .promoted-articles-item {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.community-featured-posts .promoted-articles-item a {
  color: #1a1a2e;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.community-featured-posts .promoted-articles-item a:hover {
  color: #0074C8;
}

/* ===== 7. STRIPED LIST (Posts list) - Polish ===== */
.striped-list {
  list-style: none;
}

.striped-list-item {
  padding: 16px 0;
  border-bottom: 1px solid #e8ecf0;
  transition: background-color 0.15s ease;
}

.striped-list-item:hover {
  background-color: #fafbfc;
}

.post-featured .striped-list-title {
  color: #0074C8;
}

/* ===== 8. PROFILE - Activity Overview Centering Fix ===== */
.profile-section-header {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 2px solid #e8ecf0;
}

.profile-section-title {
  flex-basis: 100%;
  margin: 0 0 4px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a1a2e;
  line-height: 1.3;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 0;
  margin: 0;
  color: #64748b;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== COLLAPSIBLE NAV TABS - Universal Fix for ALL pages ===== */
.collapsible-nav {
  background: #f8fafc;
  border: 0 !important;
  border-bottom: 2px solid #e8ecf0 !important;
  border-top: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  margin-bottom: 24px;
}

.collapsible-nav-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}

.collapsible-nav-list li {
  line-height: normal !important;
  order: 1 !important;
  display: flex;
  align-items: center;
}

.collapsible-nav-list li,
.collapsible-nav-list li a {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s ease;
  cursor: pointer;
}

.collapsible-nav-list li a {
  padding: 12px 20px;
}

.collapsible-nav-list li:hover,
.collapsible-nav-list li:hover a {
  color: #0074C8;
  border-bottom-color: rgba(0, 116, 200, 0.3);
  background: transparent;
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 1 !important;
  position: relative;
  color: #0074C8;
  font-weight: 600;
  border-bottom-color: #0074C8;
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #0074C8;
  font-weight: 600;
  border-bottom-color: #0074C8;
  background: transparent !important;
}

.collapsible-nav-list li[aria-selected="true"]::after {
  display: none !important;
}

/* My Activities Nav (Requests, Contributions, Following) */
.my-activities-nav.collapsible-nav {
  background: transparent;
  margin-bottom: 0;
}

/* My Activities Sub-Nav (My requests / Requests I'm CC'd on, etc.) */
.my-activities-sub-nav.collapsible-nav {
  background: transparent;
  border-bottom: 1px solid #e8ecf0 !important;
  margin-bottom: 24px;
}

/* Profile Nav */
.profile-nav.collapsible-nav {
  background: transparent;
  margin-bottom: 32px;
}

/* Profile Activity Timeline - Cleaner */
.profile-activity-list {
  margin-top: 24px;
}

.profile-activity {
  padding-bottom: 28px;
}

.profile-activity-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-activity-description {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.profile-activity-contribution {
  background: #f8fafc;
  border: 1px solid #e8ecf0;
  border-radius: var(--fn-radius-md, 10px);
  padding: 20px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 12px;
    margin-left: 52px;
  }
}

/***** ============================================= *****/
/***** v2.9.4 - HEADER DROPDOWN + MOBILE NAV FIXES  *****/
/***** ============================================= *****/

/* ===== 1. USER DROPDOWN - Opens downward, fully visible ===== */
.user-info {
  position: relative !important;
}

.user-info .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  margin-top: 8px;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--fn-radius-md, 10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 9999;
}

.user-info .dropdown-menu a,
.user-info .dropdown-menu [role="menuitem"] {
  display: block !important;
  padding: 10px 20px;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

.user-info .dropdown-menu a:hover,
.user-info .dropdown-menu [role="menuitem"]:hover {
  background: #f1f5f9;
  color: #0074C8;
  text-decoration: none;
}

[dir="rtl"] .user-info .dropdown-menu {
  right: auto !important;
  left: 0 !important;
}

/* ===== 2. HEADER - Prevent horizontal overflow ===== */
.header {
  overflow: visible !important;
  max-width: 100vw;
  box-sizing: border-box;
}

/* ===== 3. MOBILE NAV - Complete Redesign ===== */
@media (max-width: 767px) {
  .header {
    padding: 0 12px;
    height: 56px;
    overflow: visible !important;
  }

  .logo img {
    max-height: 32px;
  }

  .nav-wrapper {
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    overflow: visible;
  }

  .nav-wrapper .icon-menu {
    display: inline-flex !important;
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex-shrink: 0;
    order: 0;
  }

  .user-info {
    flex-shrink: 0;
  }

  .user-info > [role="button"] {
    padding: 4px;
  }

  #user #user-name {
    display: none !important;
  }

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

  .user-info .dropdown-menu {
    display: none !important;
  }

  .user-nav {
    display: none !important;
  }

  .nav-wrapper a.login {
    display: none !important;
  }
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu-panel {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e8ecf0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  padding: 12px 16px 16px;
  animation: mobileMenuSlide 0.2s ease;
}

.mobile-menu-panel.is-open {
  display: block;
}

@keyframes mobileMenuSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu-item {
  display: flex !important;
  align-items: center;
  padding: 12px 16px;
  color: #1a1a2e !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--fn-radius-sm, 6px);
  transition: background-color 0.15s ease;
}

.mobile-menu-item:hover {
  background: #f1f5f9;
  color: #0074C8 !important;
  text-decoration: none;
}

.mobile-menu-item.submit-a-request {
  background: #E03B50 !important;
  color: #fff !important;
  justify-content: center;
  margin-bottom: 4px;
  border-radius: var(--fn-radius-sm, 6px);
}

.mobile-menu-item.submit-a-request:hover {
  background: #d12137 !important;
  color: #fff !important;
}

.mobile-menu-item.mobile-menu-login {
  background: linear-gradient(135deg, #0074C8 0%, #005695 100%);
  color: #fff !important;
  justify-content: center;
  font-weight: 600;
  margin-top: 4px;
  border-radius: var(--fn-radius-sm, 6px);
}

.mobile-menu-item.mobile-menu-login:hover {
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 116, 200, 0.3);
}

.mobile-menu-divider {
  height: 1px;
  background: #e8ecf0;
  margin: 8px 0;
}

.mobile-menu-user-item {
  color: #64748b !important;
  font-size: 14px;
  font-weight: 400;
}

.mobile-menu-user-item:hover {
  color: #0074C8 !important;
}

@media (min-width: 768px) {
  .mobile-menu-panel {
    display: none !important;
  }
}