@charset "UTF-8";

/* ==========================================================================
   Virtual-Call Help Center Theme
   Based on Copenhagen by Zendesk — completely restyled
   Brand: Steel Blue (#2274a2), Cool Grays, Orange CTA
   ========================================================================== */

/* ---------- Custom Article Styles (carried over) ---------- */

pre {
  background-color: #f0f5f9;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  padding: 16px;
  margin: 20px 0;
  font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', monospace;
  overflow-x: auto;
  white-space: pre;
  font-size: 13px;
  line-height: 1.6;
}

pre code {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

code {
  background-color: #f0f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', monospace;
  font-size: 0.9em;
}

.code-block {
  background-color: #f0f5f9;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  padding: 16px;
  margin: 20px 0;
  font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', monospace;
  overflow-x: auto;
}

.screenshot {
  text-align: center;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid #dce6ee;
  border-radius: 8px;
  background-color: #f8fafb;
}

.screenshot img {
  max-width: 100%;
  height: auto;
  border: 1px solid #dce6ee;
  border-radius: 4px;
}

.screenshot-caption {
  margin-top: 10px;
  font-style: italic;
  color: #6b7c8a;
  font-size: 0.9em;
}

.info-box {
  background-color: #e8f2f7;
  border-left: 4px solid #2274a2;
  padding: 16px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0;
}

.warning-box {
  background-color: #fff8e6;
  border-left: 4px solid #e8a317;
  padding: 16px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0;
}

.success-box {
  background-color: #e8f5e9;
  border-left: 4px solid #2e7d32;
  padding: 16px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0;
}

.error-box {
  background-color: #fde8e8;
  border-left: 4px solid #c62828;
  padding: 16px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0;
}

.troubleshooting {
  background-color: #fde8e8;
  border: 1px solid #f5c6c6;
  border-radius: 6px;
  padding: 20px;
  margin-top: 30px;
}

.best-practices {
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  padding: 20px;
  margin-top: 20px;
}

.note {
  background-color: #f0f5f9;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  padding: 16px;
  margin: 20px 0;
  border-left: 4px solid #6b7c8a;
}

.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.step-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}

.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #2274a2;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.step-number {
  background-color: #2274a2;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 10px;
  line-height: 1;
  font-size: 14px;
}

.status-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.status-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 4px 0;
}

.status-list img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

.status-text {
  line-height: 20px;
}

.image-placeholder {
  background-color: #f0f5f9;
  border: 2px dashed #dce6ee;
  padding: 40px;
  text-align: center;
  margin: 20px 0;
  border-radius: 6px;
}

.support-footer {
  margin-top: 50px;
  padding: 30px;
  background-color: #f0f5f9;
  border-radius: 10px;
  text-align: center;
}

table:not(.table) {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table:not(.table) th,
table:not(.table) td {
  border: 1px solid #dce6ee;
  padding: 12px;
  text-align: left;
}

table:not(.table) th {
  background-color: #f0f5f9;
  font-weight: 600;
  color: #1b5f84;
}

table:not(.table) tr:nth-child(even) {
  background-color: #f8fafb;
}

/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

body {
  background-color: #f0f5f9;
  color: #2c3e50;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, 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;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin-top: 0;
  color: #1e3a52;
}

h1 {
  font-size: 28px;
  color: #1b5f84;
}

h2 {
  font-size: 22px;
  color: #1e3a52;
  margin-top: 32px;
}

h3 {
  font-size: 18px;
  color: #2274a2;
}

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

a {
  color: #2274a2;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover, a:active, a:focus {
  color: #1b5f84;
  text-decoration: underline;
}

input, textarea {
  color: #2c3e50;
  font-size: 14px;
  font-family: inherit;
}

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

input:focus {
  border-color: #2274a2;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7c8a' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-color: #fff;
  padding: 8px 30px 8px 12px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 14px;
  color: #2c3e50;
}

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

hr {
  border: none;
  border-top: 1px solid #e8eff4;
  margin: 24px 0;
}

strong, b {
  font-weight: 600;
}

blockquote {
  border-left: 3px solid #2274a2;
  margin: 20px 0;
  padding: 12px 20px;
  color: #4a5c6b;
  background-color: #f8fafb;
  border-radius: 0 6px 6px 0;
}

/* Fix double border on nested inline-style callout divs */
div[style*="border-left"] > div[style*="border-left"] {
  border-left: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* ---------- Layout ---------- */

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

.container-divider {
  border-top: 1px solid #e8eff4;
}

/* ---------- Header ---------- */

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8eff4;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: relative;
  z-index: 100;
}

.header .logo {
  flex-shrink: 0;
}

.header .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header .logo img {
  height: 32px;
  width: auto;
}

.header .logo-text {
  color: #1b5f84;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.header .logo-divider {
  color: #c0cdd6;
  font-size: 14px;
  margin: 0 4px;
}

.header .logo-subtitle {
  color: #6b7c8a;
  font-size: 14px;
  font-weight: 400;
}

.header .nav-wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}

.header .user-nav,
.header #user-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .user-nav a,
.header #user-nav a {
  color: #4a5c6b;
  font-size: 13px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

.header .user-nav a:hover,
.header #user-nav a:hover {
  background-color: #f0f5f9;
  text-decoration: none;
  color: #2274a2;
}

.header .sign-in {
  border: 1px solid #2274a2;
  color: #2274a2 !important;
  font-weight: 500;
}

.header .sign-in:hover {
  background-color: #2274a2 !important;
  color: #fff !important;
}

.header .my-requests {
  font-weight: 500;
  color: #2274a2 !important;
}

.header .user-name {
  font-weight: 500;
}

.header .sign-out {
  font-size: 12px;
  color: #6b7c8a !important;
}

.header .submit-a-request {
  background-color: #2274a2 !important;
  color: #fff !important;
  border-radius: 4px !important;
}

.header .submit-a-request:hover {
  background-color: #1b5f84 !important;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 2px;
  margin-right: 8px;
}

.language-switcher a {
  color: #6b7c8a;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
}

.language-switcher a:hover {
  color: #2274a2;
  background-color: #f0f5f9;
  text-decoration: none;
}

.language-switcher a.current-lang {
  color: #ffffff;
  background-color: #2274a2;
}

/* Mobile menu */
.header .icon-menu {
  display: none;
  color: #2274a2;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .header .icon-menu {
    display: block;
  }

  .header .nav-wrapper {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #1b5f84;
    padding: 16px 24px;
    display: none;
    z-index: 99;
  }

  .header .nav-wrapper[aria-expanded="true"],
  .header #user-nav[aria-expanded="true"] {
    display: flex;
  }

  .header .user-nav,
  .header #user-nav {
    flex-direction: column;
    width: 100%;
  }

  .header .user-nav a,
  .header #user-nav a {
    padding: 10px 12px;
    width: 100%;
  }

  .language-switcher {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* User info dropdown */
.header .user-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header .user-info .user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #dce6ee;
  vertical-align: middle;
}

.header .user-info > a,
.header .user-info > span {
  color: #4a5c6b;
  font-size: 13px;
  line-height: 28px;
  vertical-align: middle;
}

.header .user-info > a:hover {
  color: #2274a2;
  text-decoration: none;
}

/* ---------- Hero / Search ---------- */

.hero {
  background: linear-gradient(135deg, #2274a2 0%, #1b5f84 100%);
  padding: 48px 24px;
  text-align: center;
}

.hero-inner {
  max-width: 560px;
  margin: 0 auto;
}

.hero h1,
.hero-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px;
  border: none;
  padding: 0;
}

.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin: 0 0 24px;
  font-weight: 400;
}

.hero .search {
  position: relative;
}

.hero .search-full {
  width: 100%;
}

.hero .search input[type="search"] {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 18px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fff;
  color: #2c3e50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  outline: none;
}

.hero .search input[type="search"]::placeholder {
  color: #a0adb8;
}

.hero .search input[type="search"]:focus {
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.hero .search [type="submit"],
.hero .search-full [type="submit"] {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hero .search-icon {
  fill: #6b7c8a;
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .hero {
    padding: 36px 20px;
  }

  .hero h1,
  .hero-title {
    font-size: 22px;
  }
}

/* ---------- Sub Navigation / Breadcrumbs ---------- */

.sub-nav {
  background-color: #f0f5f9;
  border-bottom: 1px solid #dce6ee;
  padding: 12px 0;
}

.sub-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-nav .search {
  max-width: 220px;
}

.sub-nav .search input[type="search"] {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 13px;
  background-color: #fff;
}

.sub-nav .search input[type="search"]:focus {
  border-color: #2274a2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li + li::before {
  content: "›";
  margin: 0 8px;
  color: #a0adb8;
  font-size: 14px;
}

.breadcrumbs a {
  color: #2274a2;
}

.breadcrumbs li:last-child a,
.breadcrumbs li:last-child {
  color: #2c3e50;
  font-weight: 500;
}

@media (max-width: 767px) {
  .sub-nav .container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

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

/* ---------- Category Cards (Home Page) ---------- */

.blocks {
  padding: 32px 0;
}

.blocks-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blocks-item {
  list-style: none;
}

.blocks-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background-color: #ffffff;
  border: 1px solid #dce6ee;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  height: 100%;
  box-sizing: border-box;
}

.blocks-item-link:hover {
  border-color: #2274a2;
  box-shadow: 0 2px 8px rgba(26,111,160,0.1);
  text-decoration: none;
  transform: translateY(-1px);
}

.blocks-link-head {
  width: 44px;
  height: 44px;
  background-color: #e8f2f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.blocks-link-head svg {
  width: 22px;
  height: 22px;
  stroke: #2274a2;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blocks-link-info {
  width: 100%;
}

.blocks-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a52;
  margin: 0 0 4px;
}

.blocks-item-description {
  font-size: 12px;
  color: #6b7c8a;
  margin: 0;
  line-height: 1.4;
}

.knowledge-base {
  background-color: transparent;
  padding: 32px 0;
}

@media (max-width: 767px) {
  .blocks-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

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

/* ---------- Promoted Articles ---------- */

.promoted-articles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

@media (max-width: 767px) {
  .promoted-articles {
    grid-template-columns: 1fr;
  }
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promoted-articles-item,
.article-list-item {
  border-bottom: 1px solid #e8eff4;
}

.promoted-articles-item a,
.article-list-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #2274a2;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.promoted-articles-item a:hover,
.article-list-item a:hover {
  background-color: #f0f5f9;
  text-decoration: none;
}

.promoted-articles-item a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a6fa0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.articles h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a52;
  margin-bottom: 8px;
  padding-top: 24px;
}

/* ---------- Content area white background ---------- */

.article-container,
.category-container,
.section-container,
.submit-request,
.search-results,
.error-page {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

/* ---------- Category Page ---------- */

.category-container {
  padding: 32px;
}

.category-content .page-header {
  margin-bottom: 28px;
}

.category-content .page-header h1 {
  border: none;
  padding: 0;
}

.page-header-description {
  color: #6b7c8a;
  font-size: 15px;
  margin-top: 8px;
}

.section-tree {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.section-tree .section {
  padding: 20px;
  background-color: #f8fafb;
  border: 1px solid #e8eff4;
  border-radius: 8px;
}

.section-tree .section:last-child {
  border-bottom: 1px solid #e8eff4;
}

.section-tree-title {
  margin: 0 0 12px;
}

.section-tree-title a {
  color: #2274a2;
  font-size: 17px;
  font-weight: 600;
}

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

.section-tree .article-list {
  margin-left: 0;
}

.section-tree .article-list-item a {
  padding: 8px 14px;
}

.see-all-articles {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  font-size: 13px;
  color: #2274a2;
  font-weight: 500;
}

.section-empty,
.category-empty {
  color: #a0adb8;
  font-style: italic;
  font-size: 14px;
}

/* ---------- Section Page ---------- */

.section-container {
  padding: 32px;
}

.section-content .page-header {
  margin-bottom: 24px;
}

.section-content .page-header h1 {
  border: none;
  padding: 0;
}

.section-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.section-list-item {
  list-style: none;
}

.section-list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background-color: #f8fafb;
  border: 1px solid #e8eff4;
  border-radius: 6px;
  color: #1e3a52;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}

.section-list-item a:hover {
  border-color: #2274a2;
  background-color: #e8f2f7;
  text-decoration: none;
}

.section-list-item a svg {
  color: #a0adb8;
  flex-shrink: 0;
}

.section-list-item a:hover svg {
  color: #2274a2;
}

.see-all-sections-trigger {
  display: block;
  text-align: center;
  padding: 8px;
  color: #2274a2;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  grid-column: 1 / -1;
}

.section-list--collapsed .section-list-item:nth-child(n+7) {
  display: none;
}

.section-list--collapsed .section-list-item:nth-child(n+7) ~ .see-all-sections-trigger {
  display: block;
}

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

/* Article list in section — two-column grid */
.section-content .article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.section-content .article-list-item {
  border-bottom: 1px solid #e8eff4;
}

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

@media (max-width: 767px) {
  .section-content .article-list {
    grid-template-columns: 1fr;
  }
}

.article-list-link {
  color: #2274a2;
  font-size: 14px;
}

/* Fix promoted article star alignment — star inline with title */
.article-list-item.article-promoted {
  display: flex;
  align-items: center;
}

.article-list-item.article-promoted .icon-star {
  flex-shrink: 0;
}

.article-list-item.article-promoted .article-list-link {
  display: inline-flex;
}

.article-promoted .icon-star {
  color: #e8a317;
  margin-right: 6px;
}

/* ---------- Article Page ---------- */

.article-container {
  display: flex;
  gap: 32px;
  padding: 32px;
}

.article-sidebar {
  width: 220px;
  flex-shrink: 0;
  order: -1;
}

.article {
  flex: 1;
  min-width: 0;
}

.sidenav-title {
  font-size: 13px;
  font-weight: 600;
  color: #6b7c8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

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

.sidenav-element {
  margin-bottom: 2px;
}

.sidenav-item {
  display: block;
  padding: 7px 12px;
  font-size: 13px;
  color: #4a5c6b;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
  line-height: 1.4;
}

.sidenav-item:hover {
  background-color: #f0f5f9;
  color: #2274a2;
  text-decoration: none;
}

.current-article .sidenav-item {
  background-color: #e8f2f7;
  color: #2274a2;
  font-weight: 500;
}

.article-sidebar-item {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  font-size: 13px;
  color: #2274a2;
  font-weight: 500;
}

@media (max-width: 767px) {
  .article-container {
    flex-direction: column;
  }

  .article-sidebar {
    width: 100%;
    order: 1;
    border-top: 1px solid #e8eff4;
    padding-top: 24px;
    margin-top: 24px;
  }
}

/* Article header */
.article-header {
  margin-bottom: 28px;
}

.article-title {
  font-size: 28px;
  font-weight: 600;
  color: #1b5f84;
  border: none;
  padding: 0;
  margin: 0 0 16px;
  line-height: 1.3;
}

.article-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-avatar {
  width: 32px;
  height: 32px;
  position: relative;
}

.article-avatar .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.article-meta {
  font-size: 13px;
}

.article-meta a {
  color: #1e3a52;
  font-weight: 500;
}

.article-updated {
  color: #6b7c8a;
  font-size: 12px;
  margin-top: 2px;
}

/* Article content */
.article-body {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e50;
}

.article-body h1 {
  font-size: 24px;
  margin-top: 36px;
}

.article-body h2 {
  font-size: 20px;
  margin-top: 32px;
  padding-left: 0;
  border-left: none;
}

.article-body h3 {
  font-size: 17px;
  margin-top: 24px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin: 16px 0;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin: 16px 0;
}

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

/* Article attachments */
.article-attachments {
  margin-top: 24px;
}

.attachments {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attachment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background-color: #f8fafb;
  border: 1px solid #e8eff4;
  border-radius: 6px;
  margin-bottom: 8px;
}

.attachment-item a {
  color: #2274a2;
  font-size: 14px;
}

.attachment-meta {
  display: flex;
  gap: 12px;
}

.attachment-meta-item {
  font-size: 12px;
  color: #6b7c8a;
}

/* Article footer */
.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #e8eff4;
  margin-top: 32px;
}

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

.article-votes-question {
  font-size: 15px;
  color: #2c3e50;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.article-votes-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.article-vote {
  padding: 8px 20px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  background-color: #fff;
  font-size: 14px;
  color: #4a5c6b;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 60px;
}

/* Hide Zendesk's built-in vote SVG icons (we use custom ::before icons instead) */
.article-vote svg,
.article-vote .vote-arrow {
  display: none !important;
}

.article-vote-up::before {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  background: currentColor !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.article-vote-down::before {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  background: currentColor !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.article-vote:hover {
  border-color: #2274a2;
  color: #2274a2;
  background-color: #e8f2f7;
}

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

.article-vote-label {
  color: #6b7c8a;
  font-size: 13px;
  margin-top: 8px;
  display: block;
}

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

.article-return-to-top {
  text-align: center;
  padding: 16px 0;
}

.article-return-to-top a {
  color: #6b7c8a;
  font-size: 13px;
}

/* Article relatives */
.article-relatives {
  padding: 24px 0;
  border-top: 1px solid #e8eff4;
}

/* Share */
.article-share {
  display: flex;
  gap: 8px;
}

.share ul,
.article-share ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share li,
.article-share li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  color: #6b7c8a;
  font-size: 13px;
  transition: all 0.15s ease;
  text-decoration: none;
}

.share a:hover {
  border-color: #2274a2;
  color: #2274a2;
  text-decoration: none;
}

.share-label {
  cursor: pointer;
  font-size: 13px;
  color: #6b7c8a;
}

.article-comment-count {
  color: #6b7c8a;
  font-size: 14px;
}

/* ---------- Comments ---------- */

.article-comments {
  padding-top: 24px;
  border-top: 1px solid #e8eff4;
}

.comment-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.comment-heading {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a52;
  margin: 0;
}

.comment-callout {
  color: #6b7c8a;
  font-size: 13px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.comment:last-child {
  border-bottom: none;
}

.comment-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-info {
  flex: 1;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.comment-avatar {
  width: 32px;
  height: 32px;
  position: relative;
}

.comment-avatar .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.comment-meta {
  font-size: 13px;
}

.comment-meta a {
  color: #1e3a52;
  font-weight: 500;
}

.comment-published {
  color: #6b7c8a;
  font-size: 12px;
  display: block;
}

.comment-pending {
  font-size: 11px;
}

.comment-body {
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
}

.comment-actions-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comment-vote .vote-up,
.comment-vote .vote-down {
  background: none;
  border: 1px solid #dce6ee;
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  color: #6b7c8a;
  font-size: 13px;
}

.comment-vote .vote-sum {
  font-size: 13px;
  color: #4a5c6b;
  padding: 0 6px;
}

/* Comment form */
.comment-form {
  display: flex;
  gap: 12px;
  padding: 20px 0;
}

.comment-container {
  flex: 1;
}

.comment-container textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}

.comment-container textarea:focus {
  border-color: #2274a2;
  outline: none;
}

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

.comment-form-controls input[type="submit"] {
  background-color: #2274a2;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.comment-form-controls input[type="submit"]:hover {
  background-color: #1b5f84;
}

/* Comment sorter dropdown */
.comment-sorter .dropdown-toggle {
  color: #2274a2;
  font-size: 13px;
  cursor: pointer;
}

.comment-sorter .dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  padding: 4px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}

.comment-sorter .dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #2c3e50;
}

.comment-sorter .dropdown-menu a:hover {
  background-color: #f0f5f9;
}

.comment-sorter .dropdown-menu a[aria-selected="true"] {
  color: #2274a2;
  font-weight: 500;
}

/* ---------- Search Results ---------- */

.search-results {
  padding: 32px;
}

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

.search-results-subheading {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a52;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8eff4;
}

.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-result {
  padding: 16px 0;
  border-bottom: 1px solid #e8eff4;
}

.search-result:last-child {
  border-bottom: none;
}

.search-result-link {
  font-size: 16px;
  font-weight: 500;
  color: #2274a2;
  display: block;
  margin-bottom: 6px;
}

.search-result-link:hover {
  color: #1b5f84;
}

.search-result-votes {
  color: #6b7c8a;
  font-size: 12px;
}

.search-result-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 12px;
}

.search-result-breadcrumbs li + li::before {
  content: "›";
  margin: 0 6px;
  color: #a0adb8;
}

.search-result-breadcrumbs a {
  color: #6b7c8a;
}

.search-result-description {
  font-size: 14px;
  color: #4a5c6b;
  margin-top: 6px;
  line-height: 1.5;
}

.search-info {
  color: #6b7c8a;
}

/* ---------- Request Pages ---------- */

.submit-request {
  padding: 32px;
}

.submit-request-title {
  border: none;
  padding: 0;
}

.follow-up-hint {
  font-size: 14px;
  color: #6b7c8a;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.form input[type="text"],
.form input[type="email"],
.form textarea,
.form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #2274a2;
  outline: none;
}

.form input[type="submit"],
.form button[type="submit"] {
  background-color: #2274a2;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
}

.form input[type="submit"]:hover,
.form button[type="submit"]:hover {
  background-color: #1b5f84;
}

/* My activities */
.my-activities-nav {
  background-color: #f0f5f9;
  border-bottom: 1px solid #dce6ee;
}

.my-activities-nav .collapsible-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.my-activities-nav .collapsible-nav-list li {
  padding: 12px 20px;
  font-size: 14px;
  color: #4a5c6b;
}

.my-activities-nav .collapsible-nav-list li[aria-selected="true"] {
  color: #2274a2;
  font-weight: 500;
  border-bottom: 2px solid #2274a2;
}

.my-activities-nav .collapsible-nav-list a {
  color: #4a5c6b;
  text-decoration: none;
}

.my-activities-nav .collapsible-nav-list a:hover {
  color: #2274a2;
}

.my-activities-header {
  padding: 24px 0 16px;
}

.my-activities-header h1 {
  border: none;
  padding: 0;
}

.my-activities-sub-nav .collapsible-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  gap: 0;
}

.my-activities-sub-nav .collapsible-nav-list li {
  padding: 8px 16px;
  font-size: 13px;
  color: #4a5c6b;
}

.my-activities-sub-nav .collapsible-nav-list li[aria-selected="true"] {
  color: #2274a2;
  font-weight: 500;
  border-bottom: 2px solid #2274a2;
}

/* Requests table */
.requests-table-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.requests-search {
  padding: 8px 14px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 14px;
  min-width: 200px;
}

.request-table-filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.request-filter-label {
  font-size: 13px;
  color: #6b7c8a;
}

.request-filter {
  font-size: 13px;
}

.requests-table {
  width: 100%;
  border-collapse: collapse;
}

.requests-table thead th {
  text-align: left;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7c8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e8eff4;
  background-color: #f8fafb;
}

.requests-table tbody td {
  padding: 12px 14px;
  font-size: 14px;
  border-bottom: 1px solid #e8eff4;
  color: #2c3e50;
}

.requests-table .striped-list-title {
  color: #2274a2;
  font-weight: 500;
}

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

@media (max-width: 767px) {
  .requests-table thead {
    display: none;
  }

  .requests-table tbody td {
    display: none;
  }

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

  .requests-table-meta {
    display: flex;
    gap: 8px;
    margin-top: 6px;
  }
}

.request-closed {
  opacity: 0.6;
}

.no-activities {
  color: #6b7c8a;
  font-size: 14px;
  padding: 24px 0;
}

/* Status labels */
.status-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-label-open {
  background-color: #e8f2f7;
  color: #2274a2;
}

.status-label-pending {
  background-color: #fff8e6;
  color: #b8860b;
}

.status-label-solved {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-label-closed {
  background-color: #f0f2f4;
  color: #6b7c8a;
}

.escalation-badge {
  background-color: #e8f2f7;
  color: #2274a2;
  font-size: 11px;
}

/* ---------- Contributions / Subscriptions ---------- */

.contributions-page,
.subscriptions-page {
  padding: 24px 0;
}

.my-activities-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e8eff4;
}

.my-activities-nav .collapsible-nav-list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-activities-nav .collapsible-nav-list li {
  padding: 12px 20px;
  font-size: 14px;
  color: #4a5c6b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.my-activities-nav .collapsible-nav-list li[aria-selected="true"] {
  color: #2274a2;
  border-bottom-color: #2274a2;
  font-weight: 600;
}

.my-activities-nav .collapsible-nav-list li a {
  color: #4a5c6b;
  text-decoration: none;
}

.my-activities-nav .collapsible-nav-list li a:hover {
  color: #2274a2;
}

.my-activities-header {
  margin-bottom: 24px;
}

.my-activities-header h1 {
  border: none;
  padding: 0;
}

.my-activities-sub-nav .collapsible-nav-list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-activities-sub-nav .collapsible-nav-list li {
  padding: 8px 16px;
  font-size: 13px;
  border-bottom: 2px solid transparent;
}

.my-activities-sub-nav .collapsible-nav-list li[aria-selected="true"] {
  color: #2274a2;
  border-bottom-color: #2274a2;
  font-weight: 600;
}

.my-activities-sub-nav .collapsible-nav-list li a {
  color: #4a5c6b;
  text-decoration: none;
}

.my-activities-sub-nav .collapsible-nav-list li a:hover {
  color: #2274a2;
}

.contributions-table,
.my-activities-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8eff4;
}

.contributions-table thead th,
.my-activities-table thead th {
  background-color: #f0f5f9;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #4a5c6b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 1px solid #e8eff4;
}

.contributions-table tbody td,
.my-activities-table tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: #2c3e50;
  border-bottom: 1px solid #f0f5f9;
}

.contributions-table tbody tr:last-child td,
.my-activities-table tbody tr:last-child td {
  border-bottom: none;
}

.contributions-table tbody tr:hover,
.my-activities-table tbody tr:hover {
  background-color: #f8fafb;
}

.contributions-table .striped-list-title,
.my-activities-table .striped-list-title {
  color: #2274a2;
  font-weight: 500;
}

.contributions-table .striped-list-title:hover,
.my-activities-table .striped-list-title:hover {
  color: #1b5f84;
}

/* ---------- User Profile Page ---------- */

.profile-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8eff4;
  padding: 32px 0;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.profile-info {
  flex: 1;
}

.profile-avatar {
  margin-bottom: 16px;
}

.profile-avatar .user-avatar {
  width: 80px;
  height: 80px;
  border: 3px solid #e8eff4;
}

.basic-info .name {
  font-size: 24px;
  color: #1b5f84;
  margin: 0 0 8px;
  border: none;
  padding: 0;
}

.basic-info .name a {
  color: #1b5f84;
  text-decoration: none;
}

.basic-info .name a:hover {
  color: #2274a2;
}

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

.options a {
  color: #2274a2;
  font-size: 14px;
}

.profile-private-badge {
  display: inline-block;
  padding: 2px 10px;
  background-color: #f0f5f9;
  border-radius: 12px;
  font-size: 12px;
  color: #6b7c8a;
}

.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-stats .stat {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  background-color: #f8fafb;
  border-radius: 6px;
  border: 1px solid #e8eff4;
  min-width: 100px;
}

.profile-stats .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7c8a;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-stats .stat-value {
  font-size: 15px;
  color: #2c3e50;
  font-weight: 500;
}

.profile-stats-counters {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-self: flex-start;
}

.profile-stats-activity {
  margin-bottom: 16px;
}

.profile-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #e8eff4;
}

.profile-nav .collapsible-nav-list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-nav .collapsible-nav-list li {
  padding: 12px 20px;
  font-size: 14px;
  color: #4a5c6b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.profile-nav .collapsible-nav-list li[aria-selected="true"] {
  color: #2274a2;
  border-bottom-color: #2274a2;
  font-weight: 600;
}

.profile-nav .collapsible-nav-list li a {
  color: #4a5c6b;
  text-decoration: none;
}

.profile-nav .collapsible-nav-list li a:hover {
  color: #2274a2;
}

.profile-section {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.profile-section-header {
  margin-bottom: 20px;
}

.profile-section-title {
  font-size: 18px;
  color: #1b5f84;
  border: none;
  padding: 0;
  margin: 0 0 4px;
}

.profile-section-description {
  font-size: 14px;
  color: #6b7c8a;
}

.profile-activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-activity {
  padding: 16px 0;
  border-bottom: 1px solid #f0f5f9;
}

.profile-activity:last-child {
  border-bottom: none;
}

.profile-activity-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.profile-activity-header .user-avatar {
  width: 32px;
  height: 32px;
}

.profile-activity-description {
  font-size: 13px;
  color: #6b7c8a;
  margin: 0;
}

.profile-contribution {
  padding: 12px 16px;
  background-color: #f8fafb;
  border-radius: 6px;
  border: 1px solid #e8eff4;
}

.profile-contribution-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-contribution-title {
  margin: 0;
  font-size: 15px;
}

.profile-contribution-title a {
  color: #2274a2;
}

.profile-contribution-title a:hover {
  color: #1b5f84;
}

.profile-contribution-breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 6px 0;
  padding: 0;
  font-size: 12px;
  color: #6b7c8a;
}

.profile-contribution-breadcrumbs li::after {
  content: " › ";
  margin: 0 4px;
}

.profile-contribution-breadcrumbs li:last-child::after {
  content: "";
}

.profile-contribution-breadcrumbs a {
  color: #6b7c8a;
}

.profile-contribution-breadcrumbs a:hover {
  color: #2274a2;
}

.profile-contribution-body {
  font-size: 13px;
  color: #4a5c6b;
  margin: 8px 0;
  line-height: 1.5;
}

.profile-contribution-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-contribution-list > li {
  padding: 16px 0;
  border-bottom: 1px solid #f0f5f9;
}

.profile-contribution-list > li:last-child {
  border-bottom: none;
}

.no-activity {
  color: #6b7c8a;
  font-style: italic;
  font-size: 14px;
}

.profile-page {
  padding: 0;
}

@media (max-width: 767px) {
  .profile-header .container {
    flex-direction: column;
  }
  .profile-stats {
    flex-direction: column;
  }
  .profile-stats .stat {
    min-width: auto;
  }
}

/* ---------- Error Page ---------- */

.error-page {
  text-align: center;
  padding: 80px 20px;
}

.error-page h1 {
  font-size: 48px;
  color: #2274a2;
  border: none;
  padding: 0;
}

.error-page h2 {
  font-size: 18px;
  color: #4a5c6b;
  font-weight: 400;
  border: none;
  padding: 0;
}

.error-page p {
  color: #6b7c8a;
  margin: 12px 0 24px;
}

.error-page a {
  display: inline-block;
  padding: 10px 28px;
  background-color: #2274a2;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}

.error-page a:hover {
  background-color: #1b5f84;
  text-decoration: none;
}

/* ---------- Footer ---------- */

.footer {
  background-color: #1b5f84;
  padding: 20px 24px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}

.footer-left a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

.footer-left a:hover {
  color: #fff;
}

.footer-right {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

.footer-right a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

.footer-right a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Community pages ---------- */

.community-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: #2274a2;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.community-link:hover {
  background-color: #1b5f84;
  text-decoration: none;
  color: #fff;
}

.homepage-community {
  text-align: center;
  padding: 32px 0;
}

/* Community header */
.community-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.community-follow {
  display: inline-flex;
}

/* Topic page */
.topic-header {
  margin-bottom: 20px;
}

.topic-filters {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topic-filters .dropdown-toggle {
  padding: 6px 14px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 13px;
  color: #4a5c6b;
  background: #fff;
}

.topic-filters .dropdown-toggle:hover {
  border-color: #2274a2;
  color: #2274a2;
}

/* Posts list (striped) */
.posts-list,
.striped-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.posts-list > li {
  border-bottom: 1px solid #f0f5f9;
}

.posts-list > li:last-child {
  border-bottom: none;
}

.striped-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  gap: 16px;
}

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

.striped-list-title {
  color: #2274a2;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.striped-list-title:hover {
  color: #1b5f84;
  text-decoration: none;
}

.post-overview-item {
  display: inline-flex;
  gap: 6px;
  margin-left: 8px;
}

.post-overview-count,
.striped-list-count {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.striped-list-count-item {
  text-align: center;
  font-size: 12px;
  color: #6b7c8a;
  min-width: 60px;
}

.striped-list-number {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2px;
}

/* Post page */
.post-container {
  display: flex;
  gap: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

.post {
  flex: 1;
  min-width: 0;
}

.post-sidebar {
  width: 240px;
  flex-shrink: 0;
  padding: 20px;
  background-color: #f8fafb;
  border-radius: 8px;
  border: 1px solid #e8eff4;
  align-self: flex-start;
}

.post-sidebar .sidebar-title {
  font-size: 14px;
  color: #1b5f84;
  margin: 0 0 12px;
  border: none;
  padding: 0;
}

.post-to-community .button-large,
.community-footer .button-large {
  display: inline-block;
  padding: 8px 20px;
  background-color: #2274a2;
  color: #fff !important;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
}

.post-to-community .button-large:hover,
.community-footer .button-large:hover {
  background-color: #1b5f84;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.post-title h1 {
  border: none;
  padding: 0;
  margin: 0;
}

.post-info-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.post-info {
  flex: 1;
}

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

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

.post-meta {
  font-size: 13px;
}

.post-meta a {
  color: #2274a2;
  font-weight: 500;
}

.post-published {
  color: #6b7c8a;
  font-size: 12px;
  margin-top: 2px;
}

.post-body {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e50;
}

.post-actions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Vote buttons */
.vote {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vote-up,
.vote-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  background: #fff;
  color: #6b7c8a;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
}

.vote-up:hover {
  border-color: #2274a2;
  color: #2274a2;
}

.vote-down:hover {
  border-color: #c62828;
  color: #c62828;
}

.vote-sum {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  min-width: 20px;
  text-align: center;
}

/* Post footer / share */
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 20px;
  border-top: 1px solid #f0f5f9;
}

.post-share .share {
  display: flex;
  gap: 8px;
}

.post-share .share a,
.share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 12px;
  color: #4a5c6b;
  text-decoration: none;
  background: #fff;
  transition: all 0.15s ease;
}

.post-share .share a:hover,
.share a:hover {
  border-color: #2274a2;
  color: #2274a2;
  background-color: #f0f5f9;
  text-decoration: none;
}

.share-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 12px;
  color: #4a5c6b;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
}

.share-label:hover {
  border-color: #2274a2;
  color: #2274a2;
}

.post-comment-count {
  color: #6b7c8a;
  font-size: 14px;
  text-decoration: none;
}

.post-comment-count:hover {
  color: #2274a2;
}

/* Comment section in posts */
.comment-overview {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8eff4;
}

.comment-heading {
  font-size: 18px;
  color: #1b5f84;
  margin: 0 0 8px;
  border: none;
  padding: 0;
}

.comment-callout {
  font-size: 13px;
  color: #6b7c8a;
}

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

.comment-sorter .dropdown-toggle {
  font-size: 13px;
  color: #2274a2;
  cursor: pointer;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.comment-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.comment-info {
  flex: 1;
}

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

.comment-avatar .user-avatar {
  width: 32px;
  height: 32px;
}

.comment-meta span {
  font-size: 13px;
}

.comment-meta a {
  color: #2274a2;
  font-weight: 500;
}

.comment-published {
  display: block;
  font-size: 12px;
  color: #6b7c8a;
}

.comment-body {
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
}

.comment-official {
  background-color: #f0f5f9;
  border-radius: 8px;
  padding: 16px;
}

.comment-actions-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.comment-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e8eff4;
}

.comment-form .comment-avatar .user-avatar {
  width: 36px;
  height: 36px;
}

.comment-form .comment-container {
  flex: 1;
}

/* Status labels */
.status-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-label-official {
  background-color: #e8f2f7;
  color: #2274a2;
}

.status-label-pending {
  background-color: #fff8e6;
  color: #b8860b;
}

.status-label-pinned {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-label-featured {
  background-color: #f0f5f9;
  color: #1b5f84;
}

.escalation-badge {
  background-color: #fde8e8;
  color: #c62828;
  text-decoration: none;
}

/* Community footer */
.community-footer {
  text-align: center;
  padding: 32px 0;
}

.community-footer h4 {
  color: #4a5c6b;
  font-size: 16px;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

@media (max-width: 767px) {
  .post-container {
    flex-direction: column;
  }
  .post-sidebar {
    width: 100%;
  }
  .striped-list-item {
    flex-direction: column;
  }
}

/* ---------- Pagination ---------- */

.pagination {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 14px;
  color: #4a5c6b;
  text-decoration: none;
  transition: all 0.15s ease;
}

.pagination a:hover {
  border-color: #2274a2;
  color: #2274a2;
  text-decoration: none;
}

.pagination .current {
  background-color: #2274a2;
  color: #fff;
  border-color: #2274a2;
}

/* ---------- Dropdown ---------- */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  padding: 4px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 50;
  min-width: 140px;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #2c3e50;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f0f5f9;
  text-decoration: none;
}

/* ---------- Avatar ---------- */

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

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

.icon-agent {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background-color: #2274a2;
  border-radius: 50%;
  border: 2px solid #fff;
}

.icon-lock {
  color: #6b7c8a;
  font-size: 14px;
  margin-left: 6px;
}

/* ---------- Meta / Utility ---------- */

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

.meta-data {
  font-size: 12px;
  color: #6b7c8a;
}

.meta-count {
  font-size: 12px;
  color: #6b7c8a;
}

/* Icon classes */
.icon-star::before { content: "★"; }
.icon-comments::before { content: "💬"; font-size: 14px; }
.icon-arrow-up::before { content: " ↑"; }

/* Collapsible */
.collapsible-nav[aria-expanded="false"] .collapsible-nav-list,
.collapsible-sidebar[aria-expanded="false"] ul {
  display: none;
}

/* Subscribe button */
[data-action="subscribe"] {
  padding: 6px 16px;
  border: 1px solid #dce6ee;
  border-radius: 6px;
  font-size: 13px;
  color: #4a5c6b;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
}

[data-action="subscribe"]:hover {
  border-color: #2274a2;
  color: #2274a2;
}

/* ---------- Print ---------- */

@media print {
  .header, .footer, .sub-nav, .article-sidebar, .article-votes,
  .article-comments, .article-share, .article-return-to-top,
  .article-more-questions {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .article-container {
    display: block;
  }

  a {
    color: #000;
  }
}
