:root {
  --mc-orange: #f9551e;
  --mc-orange-hover: #d94719;
  --mc-navy: #152a54;
  --mc-text-dark: #111827;
  --mc-text: #333333;
  --mc-text-muted: #555555;
  --mc-light-bg: #ededed;
  --mc-soft-bg: #f4f7fb;
  --mc-card-bg: #ffffff;
  --mc-border: rgba(0, 0, 0, 0.08);
  --mc-border-solid: #e5e7eb;
  --mc-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --mc-shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.04);
  --mc-shadow-strong: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Futura, "Century Gothic", "Open Sans", Arial, sans-serif;
  color: var(--mc-text);
  font-size: 16px;
  line-height: 1.65;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  color: var(--mc-orange-hover);
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  color: var(--mc-text-dark);
  font-weight: 800;
  line-height: 1.2;
}

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

.container,
.mc-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.mc-container-narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.container-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Buttons */

.mc-btn-primary,
.mc-btn-secondary,
.submit-a-request,
input[type="submit"],
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mc-btn-primary,
.submit-a-request,
input[type="submit"],
button[type="submit"] {
  background: var(--mc-orange);
  color: #ffffff !important;
  border: 2px solid var(--mc-orange);
}

.mc-btn-primary:hover,
.submit-a-request:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--mc-orange-hover);
  border-color: var(--mc-orange-hover);
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.mc-btn-secondary {
  background: #ffffff;
  color: var(--mc-orange) !important;
  border: 2px solid var(--mc-orange);
}

.mc-btn-secondary:hover {
  background: #fff3ee;
  color: var(--mc-orange-hover) !important;
  text-decoration: none;
}

.mc-btn-small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 12px;
}

.mc-text-link {
  color: var(--mc-orange);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mc-text-link:hover {
  color: var(--mc-orange-hover);
  text-decoration: underline;
}

/* Skip link */

.skip-navigation {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 9999;
  background: #ffffff;
  color: var(--mc-orange);
  padding: 8px 12px;
}

.skip-navigation:focus {
  left: 8px;
}

/* Header */

.header {
  min-height: 76px;
  padding: 0 32px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.logo-link {
  display: flex;
  align-items: center;
}

.logo-link {
  gap: 14px;
  color: var(--mc-text-dark);
  font-weight: 800;
  text-decoration: none;
}

.logo-link:hover {
  color: var(--mc-text-dark);
  text-decoration: none;
}

.logo img {
  max-height: 42px;
  width: auto;
  flex-shrink: 0;
}

.mc-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.mc-header-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--mc-text-dark);
  white-space: nowrap;
}

.mc-header-subtitle {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mc-text-muted);
  white-space: nowrap;
}

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

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

.user-nav-list li:empty {
  display: none;
}

.user-nav-list a,
.menu-list-mobile-items a {
  color: var(--mc-text-dark);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.user-nav-list a:hover,
.menu-list-mobile-items a:hover {
  color: var(--mc-orange);
  text-decoration: none;
}

.sign-in {
  color: var(--mc-text-dark) !important;
}

.user-info.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--mc-text-dark);
  font-weight: 700;
  cursor: pointer;
}

.dropdown-menu {
  background: #ffffff;
  border: 1px solid var(--mc-border);
  border-radius: var(--radius-md);
  box-shadow: var(--mc-shadow);
}

.nav-wrapper-mobile,
.menu-list-mobile {
  display: none;
}

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

.menu-button-mobile {
  background: transparent;
  border: none;
  color: var(--mc-text-dark);
  padding: 8px;
}

/* Generic search */

.search {
  position: relative;
}

.search input[type="search"],
.search input[type="text"],
.search-container input[type="search"],
.search-container input[type="text"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-size: 15px;
  color: var(--mc-text-dark);
  background: #ffffff;
}

.search input[type="search"]:focus,
.search input[type="text"]:focus,
.search-container input[type="search"]:focus,
.search-container input[type="text"]:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 3px rgba(249, 85, 30, 0.16);
  outline: none;
}

.search button,
.search input[type="button"],
.search input[type="reset"],
.search .clear-button,
.search .search-clear,
.search [aria-label="Clear search"],
.search [aria-label="Zoekopdracht wissen"] {
  display: none !important;
}

.search input[type="search"]::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}

/* Homepage hero */

.mc-help-hero {
  background: var(--mc-navy);
  color: #ffffff;
  padding: 66px 24px 58px;
  text-align: center;
}

.mc-help-hero h1 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 10px;
}

.mc-help-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  margin: 0 0 22px;
}

.mc-help-search {
  max-width: 760px;
  margin: 0 auto;
}

.mc-help-search input[type="search"],
.mc-help-search input[type="text"] {
  height: 60px;
  border-radius: 12px;
  border: none;
  padding: 0 24px;
  font-size: 17px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.mc-help-search input[type="search"]:focus,
.mc-help-search input[type="text"]:focus {
  box-shadow: 0 0 0 4px rgba(249, 85, 30, 0.24), 0 18px 40px rgba(0, 0, 0, 0.16);
}

.mc-selfservice-tip {
  max-width: 760px;
  margin: 14px auto 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px !important;
  line-height: 1.5;
}

.mc-popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.mc-popular-searches a {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mc-popular-searches a:hover {
  background: var(--mc-orange);
  color: #ffffff;
  text-decoration: none;
}

/* Homepage cards */

.mc-home-actions {
  background: #ffffff;
  padding: 36px 0 18px;
}

.mc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.mc-card {
  background: #ffffff;
  border: 1px solid var(--mc-border);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--mc-shadow);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  color: var(--mc-text);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mc-shadow-strong);
  border-color: rgba(249, 85, 30, 0.28);
  text-decoration: none;
}

.mc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--mc-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  line-height: 1;
}

.mc-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-card h2 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--mc-text-dark);
  margin: 0 0 10px;
}

.mc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mc-text-muted);
  margin: 0;
}

.mc-card--urgent {
  border-color: rgba(249, 85, 30, 0.35);
}

/* Homepage sections */

.mc-most-searched {
  padding: 40px 0 48px;
  background: #ffffff;
}

.mc-section-title {
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--mc-text-dark);
  margin: 0 0 10px;
}

.mc-section-heading-row {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.mc-section-heading-row .mc-section-title {
  margin-bottom: 10px;
}

.mc-section-subtitle {
  margin: 0;
  color: var(--mc-text-muted);
  font-size: 16px;
  line-height: 1.6;
}


.mc-section-intro {
  max-width: 680px;
  margin: 0 auto 26px;
  color: var(--mc-text-muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.is-mc-hidden-category {
  display: none !important;
}

.mc-all-topics-row {
  margin-top: 28px;
  text-align: center;
}

.mc-article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  max-width: 980px;
  margin: 0 auto;
}

.mc-article-link {
  display: block;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--mc-text-dark);
  font-weight: 700;
  text-decoration: none;
}

.mc-article-link:hover {
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-section-soft {
  background: var(--mc-light-bg);
  padding: 60px 0 70px;
}

.mc-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mc-category-card {
  min-height: 170px;
  background: #ffffff;
  border: 1px solid var(--mc-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.mc-category-card:hover {
  box-shadow: var(--mc-shadow);
  transform: translateY(-3px);
  border-color: rgba(249, 85, 30, 0.28);
  text-decoration: none;
}

.mc-category-card h3 {
  font-size: 19px;
  line-height: 1.25;
  color: var(--mc-text-dark);
  margin: 0 0 10px;
  font-weight: 800;
}

.mc-category-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--mc-text-muted);
  margin: 0;
}

.mc-home-category-grid .mc-category-card::after {
  content: "Onderwerp bekijken";
  display: inline-flex;
  margin-top: auto;
  padding-top: 16px;
  color: var(--mc-orange);
  font-size: 13px;
  font-weight: 800;
}

.mc-category-empty-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--mc-border-solid);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
  text-align: center;
}

.mc-category-empty-card h3 {
  margin: 0 0 8px;
  color: var(--mc-text-dark);
  font-size: 22px;
  font-weight: 800;
}

.mc-category-empty-card p {
  margin: 0;
  color: var(--mc-text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.mc-bottom-help {
  padding: 72px 0;
  text-align: center;
  background: #ffffff;
}

.mc-bottom-help h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--mc-text-dark);
  margin: 0 0 12px;
}

.mc-bottom-help p {
  font-size: 17px;
  color: var(--mc-text-muted);
  margin: 0 0 24px;
}

/* Footer */

.footer {
  background: #ededed;
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: var(--mc-text-dark);
  font-weight: 700;
  text-decoration: none;
}

.footer a:hover {
  color: var(--mc-orange);
}

/* Generic Zendesk pages */

.sub-nav {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.breadcrumbs {
  font-size: 14px;
}

.breadcrumbs li {
  color: var(--mc-text-muted);
}

.search-container {
  max-width: 360px;
  width: 100%;
}

/* Forms */

.form {
  max-width: 820px;
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  color: var(--mc-text-dark);
  font-weight: 800;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 3px rgba(249, 85, 30, 0.16);
  outline: none;
}

.request-intro {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--mc-text-muted);
  font-size: 17px;
  line-height: 1.6;
}

/* New request page */

.mc-request-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 0 90px;
}

.mc-request-simple-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.mc-request-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--mc-orange);
  font-size: 13px;
  font-weight: 800;
}

.mc-request-simple-header h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--mc-text-dark);
}

.mc-request-simple-header p {
  margin: 0;
  color: var(--mc-text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.mc-request-type-panel,
.mc-request-form-panel {
  max-width: 820px;
  margin: 28px auto 0;
}

.mc-request-form-panel {
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--mc-border);
  box-shadow: var(--mc-shadow);
}

.mc-request-type-header {
  text-align: center;
  margin-bottom: 18px;
}

.mc-request-type-header h2,
.mc-request-form-header h1 {
  margin: 0 0 10px;
  font-size: 28px;
  color: var(--mc-text-dark);
}

.mc-request-type-header p,
.mc-request-form-header p {
  margin: 0;
  color: var(--mc-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.mc-request-type-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mc-request-type-button {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--mc-border);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.035);
  text-decoration: none;
  color: var(--mc-text);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mc-request-type-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--mc-shadow);
  border-color: rgba(249, 85, 30, 0.32);
  color: var(--mc-text);
  text-decoration: none;
}

.mc-request-type-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mc-request-type-copy strong {
  color: var(--mc-text-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.mc-request-type-copy small {
  color: var(--mc-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.mc-back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--mc-orange);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.mc-back-link:hover {
  color: var(--mc-orange-hover);
  text-decoration: none;
}

.mc-request-form {
  max-width: 100%;
  margin-top: 26px;
}

.mc-hidden-ticket-form-selector,
.request_ticket_form_id,
#request_ticket_form_id,
select[name="request[ticket_form_id]"],
input[name="request[ticket_form_id]"],
[name="request[ticket_form_id]"],
[name="ticket_form_id"] {
  display: none !important;
}

/* Search results */

.mc-search-results-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 0 64px;
}

.mc-search-back-link {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.mc-search-back-link a {
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-search-back-link a:hover {
  text-decoration: underline;
}

.mc-search-hero {
  max-width: 660px;
  margin: 0 auto 22px;
  text-align: center;
}

.mc-search-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--mc-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mc-search-hero h1 {
  margin: 0 0 8px;
  color: #0b1220;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
}

.mc-search-hero p {
  margin: 0 auto 14px;
  max-width: 520px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.mc-search-large {
  max-width: 560px;
  margin: 0 auto 12px;
}

.mc-search-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.mc-search-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mc-search-filter-card,
.mc-search-feedback-card,
.mc-generative-answer-card,
.mc-search-result-card,
.mc-search-bottom-help,
.mc-no-results {
  border: 1px solid var(--mc-border-solid);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-search-filter-card,
.mc-search-feedback-card {
  padding: 16px;
}

.mc-search-feedback-card {
  position: sticky;
  top: 86px;
}

.mc-search-filter-card h2,
.mc-search-feedback-card h2 {
  margin: 0 0 10px;
  color: #0b1220;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.mc-search-feedback-card p {
  margin: 0 0 13px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.mc-filter-section {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #eef0f3;
}

.mc-filter-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.mc-filter-section h3 {
  margin: 0 0 8px;
  color: #0b1220;
  font-size: 13px;
  font-weight: 800;
}

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

.mc-filter-list li {
  list-style: none;
  margin: 0;
}

.mc-filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 9px;
  color: #4b5563;
  text-decoration: none;
  font-size: 13px;
}

.mc-filter-link:hover,
.mc-filter-link.is-active {
  background: #fff3ee;
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-search-results-column {
  min-width: 0;
}

.mc-generative-answer-card {
  margin-bottom: 18px;
  padding: 20px 22px;
  border-color: #d8dde6;
}

.mc-generative-answer-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 13px;
  font-weight: 800;
}

.mc-generative-answer-label::before {
  content: "★";
  margin-right: 6px;
  color: var(--mc-orange);
}

.mc-search-results-header {
  margin: 0 0 13px;
}

.mc-search-results-header h2 {
  margin: 0 0 5px;
  color: #0b1220;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.mc-search-results-header p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
}

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

.mc-search-result-item {
  list-style: none;
  margin: 0 0 12px;
}

.mc-search-result-card {
  padding: 18px 20px;
}

.mc-search-result-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.mc-search-result-title a {
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-search-result-title a:hover {
  text-decoration: underline;
}

.mc-search-result-meta {
  display: block;
  margin-top: 7px;
  color: #6b7280;
  font-size: 12px;
}

.mc-search-result-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none !important;
}

.mc-search-result-breadcrumbs li {
  display: inline-flex;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.mc-search-result-breadcrumbs li::marker {
  content: "";
}

.mc-search-result-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: #9ca3af;
}

.mc-search-result-breadcrumbs a {
  color: var(--mc-orange);
  font-size: 12px;
  text-decoration: none;
}

.mc-search-result-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
}

.mc-search-result-details span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  color: #d1d5db;
}

.mc-search-result-description {
  margin: 11px 0 13px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.mc-search-result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mc-search-result-link {
  display: inline-flex;
  color: var(--mc-orange);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mc-search-result-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #6b7280;
  font-size: 12px;
}

.mc-search-result-stats span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

.mc-search-bottom-help {
  margin-top: 18px;
  padding: 22px;
}

.mc-search-bottom-help h2 {
  margin: 0 0 8px;
  color: #0b1220;
  font-size: 22px;
  font-weight: 800;
}

.mc-search-bottom-help p {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.mc-search-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Pagination */

.mc-search-pagination,
.mc-section-pagination {
  margin: 26px 0 30px;
  display: flex;
  justify-content: center;
}

.mc-search-pagination ul,
.mc-search-pagination ol,
.mc-search-pagination .pagination,
.mc-section-pagination ul,
.mc-section-pagination ol,
.mc-section-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.mc-search-pagination li,
.mc-section-pagination li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.mc-search-pagination li::marker,
.mc-section-pagination li::marker {
  content: "" !important;
}

.mc-search-pagination a,
.mc-search-pagination span,
.mc-section-pagination a,
.mc-section-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d9dde5;
  border-radius: 12px;
  background: #ffffff;
  color: #0b1220;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.035);
  white-space: nowrap;
}

.mc-search-pagination a:hover,
.mc-section-pagination a:hover {
  border-color: var(--mc-orange);
  background: #fff3ee;
  color: var(--mc-orange);
  text-decoration: none !important;
}

.mc-search-pagination .current,
.mc-search-pagination .pagination-current,
.mc-search-pagination [aria-current="page"],
.mc-section-pagination .current,
.mc-section-pagination .pagination-current,
.mc-section-pagination [aria-current="page"] {
  border-color: var(--mc-orange);
  background: var(--mc-orange);
  color: #ffffff !important;
}

.mc-search-pagination a:empty,
.mc-search-pagination span:empty,
.mc-section-pagination a:empty,
.mc-section-pagination span:empty {
  display: none !important;
}

/* No results */

.mc-no-results {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
}

.mc-no-results-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--mc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-no-results-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-no-results h2 {
  margin: 0 0 9px;
  color: #0b1220;
  font-size: 24px;
  font-weight: 800;
}

.mc-no-results p {
  margin: 0 auto 17px;
  max-width: 500px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.mc-no-results-search {
  max-width: 500px;
  margin: 0 auto 15px;
}

.mc-no-results-actions {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.mc-no-results-suggestions {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid #eef0f3;
}

.mc-no-results-suggestions h3 {
  margin: 0 0 11px;
  color: #0b1220;
  font-size: 16px;
  font-weight: 800;
}

.mc-popular-searches-light {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.mc-popular-searches-light a {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.mc-popular-searches-light a:hover {
  background: #fff3ee;
  color: var(--mc-orange);
  text-decoration: none;
}

/* Article page */

.mc-article-page,
.mc-category-page,
.mc-section-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 0 72px;
}

.mc-article-topbar,
.mc-category-topbar,
.mc-section-topbar {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.mc-article-back-link,
.mc-category-back-link,
.mc-section-back-link {
  font-size: 13px;
  font-weight: 800;
}

.mc-article-back-link a,
.mc-category-back-link a,
.mc-section-back-link a {
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-article-back-link a:hover,
.mc-category-back-link a:hover,
.mc-section-back-link a:hover {
  text-decoration: underline;
}

.mc-article-search,
.mc-category-search,
.mc-section-search {
  min-width: 0;
}

.mc-article-search input[type="search"],
.mc-article-search input[type="text"],
.mc-category-search input[type="search"],
.mc-category-search input[type="text"],
.mc-section-search input[type="search"],
.mc-section-search input[type="text"] {
  width: 100%;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  color: #0b1220;
  font-size: 14px;
}

.mc-article-search input:focus,
.mc-category-search input:focus,
.mc-section-search input:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 3px rgba(249, 85, 30, 0.14);
  outline: none;
}

.mc-article-layout,
.mc-category-layout,
.mc-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 32px;
  align-items: start;
}

.mc-article-main,
.mc-category-main,
.mc-section-main {
  min-width: 0;
}

.mc-article-breadcrumbs,
.mc-category-breadcrumbs,
.mc-section-breadcrumbs {
  margin-bottom: 18px;
}

.mc-article-breadcrumbs .breadcrumbs,
.mc-article-breadcrumbs ol,
.mc-article-breadcrumbs ul,
.mc-category-breadcrumbs .breadcrumbs,
.mc-category-breadcrumbs ol,
.mc-category-breadcrumbs ul,
.mc-section-breadcrumbs .breadcrumbs,
.mc-section-breadcrumbs ol,
.mc-section-breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.mc-article-breadcrumbs li,
.mc-category-breadcrumbs li,
.mc-section-breadcrumbs li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  color: #6b7280;
  font-size: 12px;
}

.mc-article-breadcrumbs li::marker,
.mc-category-breadcrumbs li::marker,
.mc-section-breadcrumbs li::marker {
  content: "" !important;
}

.mc-article-breadcrumbs li:not(:last-child)::after,
.mc-category-breadcrumbs li:not(:last-child)::after,
.mc-section-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: #9ca3af;
}

.mc-article-breadcrumbs a,
.mc-category-breadcrumbs a,
.mc-section-breadcrumbs a {
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-article-header,
.mc-category-header,
.mc-section-header {
  margin-bottom: 24px;
}

.mc-article-eyebrow,
.mc-category-eyebrow,
.mc-section-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--mc-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mc-article-title,
.mc-category-header h1,
.mc-section-header h1 {
  margin: 0 0 12px;
  color: #0b1220;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
}

.mc-category-header p,
.mc-section-header p {
  max-width: 680px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.mc-article-meta-row,
.mc-section-title-row,
.mc-category-section-header,
.mc-section-articles-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mc-article-date {
  display: flex;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
}

.mc-article-card,
.mc-article-helpfulness,
.mc-article-next-step,
.mc-article-side-card,
.mc-article-feedback-card,
.mc-article-relatives,
.mc-article-comments,
.mc-category-section-card,
.mc-category-help-card,
.mc-category-improve-card,
.mc-section-subsections-card,
.mc-section-articles-card,
.mc-section-help-card,
.mc-section-improve-card,
.mc-section-empty-card {
  border: 1px solid var(--mc-border-solid);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-article-card {
  padding: 30px 34px;
}

.mc-article-body {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.75;
}

.mc-article-body h2 {
  margin: 34px 0 12px;
  color: #0b1220;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
}

.mc-article-body h3 {
  margin: 28px 0 10px;
  color: #0b1220;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
}

.mc-article-body p {
  margin: 0 0 16px;
}

.mc-article-body a {
  color: var(--mc-orange);
  font-weight: 800;
  text-decoration: none;
}

.mc-article-body a:hover {
  text-decoration: underline;
}

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

.mc-article-body li {
  margin: 6px 0;
}

.mc-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--mc-border-solid);
  box-shadow: var(--mc-shadow-soft);
  margin: 16px 0;
}

.mc-article-body table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  border: 1px solid var(--mc-border-solid);
  border-radius: 12px;
  overflow: hidden;
}

.mc-article-body th,
.mc-article-body td {
  padding: 12px;
  border-bottom: 1px solid var(--mc-border-solid);
  text-align: left;
}

.mc-article-body th {
  background: #f9fafb;
  color: #0b1220;
  font-weight: 800;
}

.mc-content-tags,
.mc-article-attachments {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #eef0f3;
}

.mc-content-tags h2,
.mc-article-attachments h2 {
  margin: 0 0 12px;
  color: #0b1220;
  font-size: 18px;
  font-weight: 800;
}

.mc-content-tag-list,
.mc-attachments-list,
.mc-article-side-list,
.mc-category-article-list,
.mc-section-subsection-list,
.mc-section-article-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.mc-content-tag-item,
.mc-attachment-item,
.mc-article-side-list li,
.mc-category-article-item,
.mc-section-subsection-item,
.mc-section-article-item {
  list-style: none !important;
}

.mc-content-tag-item {
  display: inline-flex;
  margin: 0 8px 8px 0;
}

.mc-content-tag-item a {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.mc-content-tag-item a:hover {
  background: #fff3ee;
  color: var(--mc-orange);
}

.mc-attachment-item {
  display: flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  margin-bottom: 10px;
}

.mc-attachment-item a {
  color: var(--mc-orange);
  font-weight: 800;
  text-decoration: none;
}

.mc-article-helpfulness,
.mc-article-next-step,
.mc-article-relatives,
.mc-article-comments,
.mc-category-section-card,
.mc-category-help-card,
.mc-category-improve-card,
.mc-section-subsections-card,
.mc-section-articles-card,
.mc-section-help-card,
.mc-section-improve-card,
.mc-section-empty-card {
  padding: 22px;
}

.mc-article-helpfulness,
.mc-article-footer,
.mc-article-next-actions,
.mc-search-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mc-article-helpfulness,
.mc-article-footer {
  align-items: center;
  justify-content: space-between;
}

.mc-article-helpfulness,
.mc-article-next-step,
.mc-article-relatives,
.mc-article-comments {
  margin-top: 18px;
}

.mc-article-votes h2,
.mc-article-next-step h2,
.mc-article-relatives h2,
.mc-article-comments h2,
.mc-article-side-card .sidenav-title,
.mc-article-feedback-card h2,
.mc-category-help-card h2,
.mc-category-improve-card h2,
.mc-section-help-card h2,
.mc-section-improve-card h2,
.mc-section-articles-header h2,
.mc-section-subsections-card h2 {
  margin: 0 0 10px;
  color: #0b1220;
  font-size: 20px;
  font-weight: 800;
}

.mc-article-next-step p,
.mc-article-feedback-card p,
.mc-category-help-card p,
.mc-category-improve-card p,
.mc-section-help-card p,
.mc-section-improve-card p,
.mc-section-empty-card p {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.mc-article-votes .article-votes-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.mc-article-votes .button,
.article-vote {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #d9dde5;
  border-radius: 9px;
  background: #ffffff;
  color: #0b1220;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mc-article-votes .button:hover,
.article-vote:hover {
  border-color: var(--mc-orange);
  background: #fff3ee;
  color: var(--mc-orange);
}

.mc-article-votes .button-primary {
  border-color: var(--mc-orange);
  background: var(--mc-orange);
  color: #ffffff;
}

.mc-article-votes small {
  color: #6b7280;
  font-size: 12px;
}

.mc-article-return-to-top a,
.mc-article-side-more,
.mc-category-see-all,
.mc-section-article-open,
.mc-category-article-open {
  color: var(--mc-orange);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mc-article-sidebar,
.mc-category-sidebar,
.mc-section-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mc-article-side-card .collapsible-sidebar-toggle {
  display: none;
}

.mc-article-side-link {
  display: block;
  padding: 9px 10px;
  border-radius: 9px;
  color: #374151;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
}

.mc-article-side-link:hover,
.mc-article-side-link.current-article {
  background: #fff3ee;
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-category-section-tree {
  display: grid;
  gap: 18px;
}

.mc-category-section-header h2,
.mc-section-subsections-card h2,
.mc-section-articles-header h2 {
  margin: 0;
  color: #0b1220;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.mc-category-section-header h2 a {
  color: #0b1220;
  text-decoration: none;
}

.mc-category-section-header h2 a:hover {
  color: var(--mc-orange);
}

.mc-category-section-header span,
.mc-section-articles-header span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.mc-category-section-description {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.mc-category-article-item,
.mc-section-subsection-item,
.mc-section-article-item {
  margin: 0;
  padding: 0;
  border-top: 1px solid #eef0f3;
}

.mc-category-article-item:first-child,
.mc-section-subsection-item:first-child,
.mc-section-article-item:first-child {
  border-top: none;
}

.mc-category-article-link,
.mc-section-subsection-link,
.mc-section-article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: #0b1220;
  text-decoration: none;
}

.mc-category-article-link:hover,
.mc-section-subsection-link:hover,
.mc-section-article-link:hover {
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-category-article-title,
.mc-section-subsection-link span,
.mc-section-article-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.mc-category-star,
.mc-section-star {
  color: var(--mc-orange);
  flex-shrink: 0;
}

.mc-category-see-all {
  display: inline-flex;
  margin-top: 14px;
}

.mc-category-empty-section {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.mc-section-subsection-list,
.mc-section-article-list {
  margin-top: 14px;
}

/* Comments */

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

.mc-article-comments .comment {
  list-style: none;
  border-top: 1px solid #eef0f3;
  padding: 18px 0;
}

.mc-article-comments .comment:first-child {
  border-top: none;
}

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

.mc-article-comments .comment-body {
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.mc-article-comments .comment-form {
  margin-top: 22px;
}

/* Responsive */

@media (max-width: 1100px) {
  .mc-card-grid,
  .mc-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-article-layout,
  .mc-category-layout,
  .mc-section-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
}

@media (max-width: 980px) {
  .mc-search-layout,
  .mc-article-layout,
  .mc-category-layout,
  .mc-section-layout {
    grid-template-columns: 1fr;
  }

  .mc-search-sidebar,
  .mc-article-sidebar,
  .mc-category-sidebar,
  .mc-section-sidebar {
    position: static;
    order: 2;
  }

  .mc-search-results-column,
  .mc-article-main,
  .mc-category-main,
  .mc-section-main {
    order: 1;
  }

  .mc-article-topbar,
  .mc-category-topbar,
  .mc-section-topbar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mc-article-title,
  .mc-category-header h1,
  .mc-section-header h1 {
    font-size: 32px;
  }

  .mc-article-card {
    padding: 24px 20px;
  }

  .mc-article-side-card .collapsible-sidebar-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 68px;
    padding: 14px 20px;
  }

  .mc-header-title {
    font-size: 17px;
  }

  .mc-header-subtitle {
    display: none;
  }

  .nav-wrapper-desktop {
    display: none;
  }

  .nav-wrapper-mobile {
    display: block;
    position: relative;
  }

  .menu-list-mobile {
    position: absolute;
    top: 44px;
    right: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid var(--mc-border);
    border-radius: var(--radius-md);
    box-shadow: var(--mc-shadow);
    padding: 10px;
    z-index: 10;
  }

  .menu-list-mobile-items {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu-list-mobile-items a {
    display: block;
    padding: 10px 12px;
  }

  .nav-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 6px 0;
  }

  .mc-help-hero {
    padding: 46px 20px 44px;
  }

  .mc-help-hero h1 {
    font-size: 32px;
  }

  .mc-help-hero p {
    font-size: 16px;
  }

  .mc-help-search input[type="search"],
  .mc-help-search input[type="text"] {
    height: 54px;
    font-size: 15px;
  }

  .mc-card-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .mc-home-actions {
    padding-top: 26px;
    padding-bottom: 8px;
  }

  .mc-card {
    min-height: auto;
  }

  .mc-most-searched {
    padding-top: 36px;
  }

  
  .mc-category-grid {
    grid-template-columns: 1fr;
  }

  .mc-section-title {
    font-size: 28px;
  }

  .mc-bottom-help h2 {
    font-size: 28px;
  }

  .sub-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-container {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .mc-request-page {
    padding: 36px 0 64px;
  }

  .mc-request-simple-header h1 {
    font-size: 32px;
  }

  .mc-request-form-panel {
    padding: 24px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .mc-search-hero h1 {
    font-size: 30px;
  }

  .mc-search-bottom-actions,
  .mc-no-results-actions,
  .mc-article-next-actions {
    flex-direction: column;
  }

  .mc-search-result-footer,
  .mc-category-article-link,
  .mc-section-subsection-link,
  .mc-section-article-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .mc-no-results {
    padding: 25px 18px;
  }

  .mc-search-pagination ul,
  .mc-search-pagination ol,
  .mc-search-pagination .pagination,
  .mc-section-pagination ul,
  .mc-section-pagination ol,
  .mc-section-pagination .pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .mc-search-pagination a,
  .mc-search-pagination span,
  .mc-section-pagination a,
  .mc-section-pagination span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .mc-article-title,
  .mc-category-header h1,
  .mc-section-header h1 {
    font-size: 28px;
  }

  .mc-article-helpfulness {
    align-items: flex-start;
    flex-direction: column;
  }

  .mc-btn-primary,
  .mc-btn-secondary {
    width: 100%;
  }

  .mc-category-section-header,
  .mc-section-articles-header,
  .mc-section-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .mc-container,
  .mc-container-narrow,
  .container,
  .footer-inner {
    width: min(100% - 32px, 1200px);
  }

  .logo img {
    max-height: 36px;
  }

  .mc-help-hero h1 {
    font-size: 29px;
  }

  .mc-popular-searches {
    justify-content: flex-start;
  }

  .mc-card {
    padding: 28px 24px;
  }
}


/* My requests page */

.mc-requests-page {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.visibility-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mc-requests-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 28px 34px;
  border-radius: 22px;
  background: var(--mc-navy);
  color: #ffffff;
}

.mc-requests-hero h1 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

.mc-requests-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.mc-requests-eyebrow {
  display: inline-flex;
  margin: 0 0 10px !important;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mc-requests-hero .mc-btn-primary {
  flex-shrink: 0;
  margin-top: 8px;
  min-height: 40px;
}

.mc-requests-panel {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--mc-border-solid);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-requests-tabs {
  margin-bottom: 14px;
}

.mc-requests-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-requests-filter-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-requests-filter-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid #d9dde5;
  border-radius: 999px;
  color: var(--mc-text-dark);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mc-requests-filter-list a:hover,
.mc-requests-filter-list .current a {
  border-color: rgba(249, 85, 30, 0.45);
  background: #fff3ee;
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-requests-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 12px;
  align-items: center;
  margin: 0;
}

.mc-requests-search {
  position: relative;
  min-width: 0;
}

.mc-requests-search .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #6b7280;
  pointer-events: none;
}

.mc-requests-search input[type="search"],
.mc-requests-search input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 13px;
  padding: 0 16px 0 43px;
  background: #ffffff;
  color: var(--mc-text-dark);
  font-size: 14px;
  box-shadow: none;
}

.mc-requests-search input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.mc-requests-search input[type="search"]:focus,
.mc-requests-search input[type="text"]:focus,
.mc-requests-select-wrap select:focus,
.mc-requests-select-wrap .request-filter:focus {
  border-color: var(--mc-orange);
  box-shadow: 0 0 0 3px rgba(249, 85, 30, 0.14);
  outline: none;
}

.mc-requests-select-wrap {
  min-width: 0;
}

.mc-requests-select-wrap--status {
  position: relative;
}

.mc-requests-select-wrap--status::before {
  content: "Status";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  pointer-events: none;
}

.mc-requests-select-wrap select,
.mc-requests-select-wrap .request-filter {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 13px;
  padding: 0 38px 0 68px;
  background-color: #ffffff;
  color: var(--mc-text-dark);
  font-size: 14px;
  font-weight: 800;
}

.mc-requests-select-wrap--organization select,
.mc-requests-select-wrap--organization .request-filter {
  padding-left: 13px;
}

.mc-requests-select-wrap--subscribe:empty {
  display: none;
}

.mc-requests-search-info {
  margin: 12px 0 18px;
  color: var(--mc-text-muted);
  font-size: 14px;
}

.mc-requests-list {
  overflow: hidden;
  border: 1px solid var(--mc-border-solid);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-requests-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.mc-requests-table thead th {
  padding: 13px 18px;
  border-bottom: 1px solid #eef0f3;
  background: #f9fafb;
  color: #374151;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mc-requests-table thead th:nth-child(1) { width: 44%; }
.mc-requests-table thead th:nth-child(2) { width: 90px; }
.mc-requests-table thead th:nth-child(3) { width: 23%; }
.mc-requests-table thead th:nth-child(4) { width: 160px; }
.mc-requests-table thead th:nth-child(5) { width: 110px; }

.mc-requests-table thead th a {
  color: #4b5563;
  text-decoration: none;
}

.mc-requests-table thead th a:hover {
  color: var(--mc-orange);
}

.mc-requests-table tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid #eef0f3;
  color: var(--mc-text-dark);
  font-size: 14px;
  vertical-align: middle;
}

.mc-requests-table tbody tr:last-child td {
  border-bottom: none;
}

.mc-requests-table tbody tr:hover td {
  background: #fffaf7;
}

.mc-request-title {
  display: inline-block;
  max-width: 100%;
  color: var(--mc-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.mc-request-title:hover {
  color: var(--mc-orange);
  text-decoration: underline;
}

.mc-request-id,
.mc-request-created,
.mc-request-updated {
  color: #4b5563 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-request-status {
  white-space: nowrap;
}

.status-label-request,
.mc-requests-table .status-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.status-label-open {
  background: #fff3ee;
  color: var(--mc-orange);
}

.status-label-pending,
.status-label-hold {
  background: #fef3c7;
  color: #92400e;
}

.status-label-solved,
.status-label-closed {
  background: #ecfdf3;
  color: #166534;
}

.status-label-new {
  background: #eff6ff;
  color: #1d4ed8;
}

.request-closed .mc-request-title,
.request-closed td {
  color: #6b7280 !important;
}

.request-closed .mc-request-title {
  font-weight: 700;
}

.mc-request-meta-mobile {
  display: none;
}

.mc-requests-empty {
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--mc-border-solid);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
  text-align: center;
}

.mc-requests-empty h2 {
  margin: 0 0 8px;
  color: var(--mc-text-dark);
  font-size: 24px;
}

.mc-requests-empty p {
  max-width: 560px;
  margin: 0 auto 18px;
  color: var(--mc-text-muted);
  font-size: 15px;
}

.mc-requests-pagination {
  margin-top: 24px;
}

.mc-requests-pagination ul,
.mc-requests-pagination ol,
.mc-requests-pagination .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}

@media (max-width: 980px) {
  .mc-requests-hero {
    flex-direction: column;
    padding: 26px;
  }

  .mc-requests-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mc-requests-page {
    width: min(100% - 32px, 1200px);
    padding: 28px 0 56px;
  }

  .mc-requests-hero h1 {
    font-size: 30px;
  }

  .mc-requests-list {
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }

  .mc-requests-table,
  .mc-requests-table thead,
  .mc-requests-table tbody,
  .mc-requests-table tr,
  .mc-requests-table td {
    display: block;
    width: 100%;
  }

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

  .mc-requests-table tbody tr {
    margin-bottom: 12px;
    border: 1px solid var(--mc-border-solid);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--mc-shadow-soft);
    overflow: hidden;
  }

  .mc-requests-table tbody td {
    display: none;
    border-bottom: none;
    padding: 16px;
  }

  .mc-requests-table tbody td.mc-request-main-cell {
    display: block;
  }

  .mc-request-title {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .mc-request-meta-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
  }
}


/* Requests page v4 refinements */
.mc-requests-panel {
  padding: 18px;
}

.mc-requests-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.mc-requests-search {
  flex: 1 1 auto;
  max-width: 760px;
}

.mc-requests-select-wrap--status {
  flex: 0 0 190px;
  max-width: 190px;
  position: relative;
}

.mc-requests-select-wrap--status::before {
  content: none !important;
}

.mc-requests-select-wrap--status::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.mc-requests-select-wrap select,
.mc-requests-select-wrap .request-filter {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 13px;
  padding: 0 42px 0 14px !important;
  background: #ffffff !important;
  color: var(--mc-text-dark);
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.mc-requests-select-wrap select::-ms-expand {
  display: none;
}

.mc-requests-search input[type="search"],
.mc-requests-search input[type="text"] {
  min-height: 48px;
  padding-left: 43px;
}

.mc-requests-search input[type="search"]::placeholder,
.mc-requests-search input[type="text"]::placeholder {
  color: #6b7280;
  opacity: 1;
}

@media (max-width: 768px) {
  .mc-requests-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .mc-requests-search,
  .mc-requests-select-wrap--status {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }
}

/* Request detail page */

.mc-request-detail-page {
  max-width: 1180px;
  padding: 34px 0 88px;
}

.mc-request-detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.mc-request-detail-breadcrumbs {
  color: #6b7280;
  font-size: 13px;
}

.mc-request-detail-breadcrumbs ol,
.mc-request-detail-breadcrumbs ul,
.mc-request-detail-breadcrumbs .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-request-detail-breadcrumbs li {
  list-style: none;
}

.mc-request-detail-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: #9ca3af;
}

.mc-request-detail-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
  padding: 34px;
  border-radius: 22px;
  background: var(--mc-navy);
  color: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-request-detail-hero-copy {
  max-width: 760px;
}

.mc-request-detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.mc-request-detail-eyebrow > span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.mc-request-detail-hero h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

.mc-request-detail-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
}

.mc-request-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.mc-request-detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.mc-request-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.mc-request-detail-main {
  min-width: 0;
}

.mc-request-conversation-card,
.mc-request-reply-card,
.mc-request-side-card {
  border: 1px solid var(--mc-border-solid);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-request-conversation-card,
.mc-request-reply-card {
  padding: 24px;
}

.mc-request-reply-card {
  margin-top: 18px;
}

.mc-request-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef0f3;
}

.mc-request-card-header h2,
.mc-request-side-card h2 {
  margin: 0 0 6px;
  color: #0b1220;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.mc-request-card-header p,
.mc-request-side-card p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

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

.mc-request-comment {
  list-style: none;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid #eef0f3;
}

.mc-request-comment:first-child {
  border-top: none;
}

.mc-request-comment-wrapper,
.mc-request-comment-info {
  width: 100%;
}

.mc-request-comment-author {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
}

.mc-request-avatar,
.mc-request-form-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  position: relative;
}

.mc-request-avatar .user-avatar,
.mc-request-form-avatar .user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.mc-request-avatar .icon-agent {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 999px;
  background: var(--mc-orange);
  color: #ffffff;
}

.mc-request-comment-meta {
  min-width: 0;
}

.mc-request-comment-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mc-request-comment-name a,
.mc-request-comment-name {
  color: #0b1220;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.mc-request-comment-name a:hover {
  color: var(--mc-orange);
  text-decoration: none;
}

.mc-request-comment-role {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 11px;
  font-weight: 800;
}

.mc-request-comment--agent .mc-request-comment-role {
  background: #fff3ee;
  color: var(--mc-orange);
}

.mc-request-comment-body {
  margin-left: 55px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.7;
}

.mc-request-comment-body p {
  margin: 0 0 14px;
}

.mc-request-comment-body p:last-child {
  margin-bottom: 0;
}

.mc-request-comment-body a {
  color: var(--mc-orange);
  font-weight: 800;
  text-decoration: none;
}

.mc-request-comment-body a:hover {
  text-decoration: underline;
}

.mc-request-attachments-list {
  margin: 16px 0 0 55px;
  padding: 0;
  list-style: none;
}

.mc-request-attachment-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  background: #f9fafb;
  list-style: none;
}

.mc-request-attachment-item a {
  color: var(--mc-orange);
  font-weight: 800;
  text-decoration: none;
}

.mc-request-follow-up {
  margin-top: 18px;
}

.mc-request-comment-form {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

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

.mc-request-show-comment {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #ffffff;
  color: #4b5563;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.mc-request-show-comment:hover {
  border-color: var(--mc-orange);
  color: var(--mc-orange);
}

.mc-request-comment-fields textarea,
.mc-request-comment-fields .nesty-input,
.mc-request-comment-fields iframe,
.mc-request-comment-fields .hc-wysiwyg {
  border-radius: 12px;
}

.mc-request-upload {
  margin-top: 14px;
}

.mc-request-form-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mc-request-form-controls label {
  margin-right: auto;
  color: #4b5563;
  font-size: 13px;
}

.mc-request-detail-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mc-request-side-card {
  padding: 20px;
}

.mc-request-side-card--status .status-label {
  margin-bottom: 12px;
}

.mc-request-details-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0;
}

.mc-request-details-list dt {
  margin-top: 14px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mc-request-details-list dt:first-child {
  margin-top: 0;
}

.mc-request-details-list dd {
  margin: 0;
  color: #0b1220;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}

.mc-request-collaborators {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-request-side-card--more {
  position: relative;
}

.mc-request-side-card--more .collapsible-sidebar-toggle {
  display: none;
}

.mc-request-side-attachments {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eef0f3;
}

.mc-request-side-attachments h3 {
  margin: 0 0 10px;
  color: #0b1220;
  font-size: 16px;
  font-weight: 800;
}

.mc-request-side-attachments .mc-request-attachments-list {
  margin-left: 0;
}

@media (max-width: 980px) {
  .mc-request-detail-layout {
    grid-template-columns: 1fr;
  }

  .mc-request-detail-sidebar {
    position: static;
  }

  .mc-request-detail-hero {
    flex-direction: column;
  }

  .mc-request-detail-hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .mc-request-detail-page {
    padding-top: 24px;
  }

  .mc-request-detail-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mc-request-detail-hero {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .mc-request-detail-hero h1 {
    font-size: 28px;
  }

  .mc-request-conversation-card,
  .mc-request-reply-card,
  .mc-request-side-card {
    border-radius: 16px;
  }

  .mc-request-conversation-card,
  .mc-request-reply-card {
    padding: 20px;
  }

  .mc-request-comment-body,
  .mc-request-attachments-list {
    margin-left: 0;
  }

  .mc-request-comment-form {
    flex-direction: column;
  }

  .mc-request-form-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .mc-request-form-controls label {
    margin-right: 0;
  }
}

/* Request detail v2 refinements */
.mc-request-summary-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--mc-border-solid);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-request-summary-item {
  padding: 14px;
  border-radius: 12px;
  background: #f9fafb;
}

.mc-request-summary-label {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mc-request-summary-item strong {
  display: block;
  color: #0b1220;
  font-size: 15px;
  line-height: 1.3;
}

.mc-request-summary-item small,
.mc-muted-small {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

[data-mc-sla-result].is-good {
  color: #166534;
}

[data-mc-sla-result].is-neutral {
  color: #4b5563;
}

.mc-request-detail-kpi-row strong {
  color: #ffffff;
}

.mc-request-comment-form {
  display: block;
}

.mc-request-form-avatar {
  display: none !important;
}

.mc-request-show-comment {
  min-height: 54px;
  border: 1px solid #d6dbe4;
  background: #ffffff;
  color: #374151;
  font-weight: 700;
}

.mc-request-show-comment::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--mc-orange);
  font-weight: 800;
}

.mc-request-show-comment:hover {
  border-color: rgba(249, 85, 30, 0.5);
  background: #fffdfc;
}

.mc-request-comment-fields .comment-body,
.mc-request-comment-fields textarea,
.mc-request-comment-fields iframe {
  min-height: 170px;
}

.mc-request-side-card--feedback p {
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.mc-request-side-card--feedback a {
  color: var(--mc-orange);
  font-weight: 800;
  text-decoration: none;
}

.mc-request-side-card--feedback a:hover {
  color: var(--mc-orange-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .mc-request-summary-card {
    grid-template-columns: 1fr;
  }
}

/* Request detail v3: klantvriendelijke behandeling en reactieformulier */
.mc-request-detail-kpi-row,
.mc-first-response-inline,
.mc-request-summary-card {
  display: none !important;
}

.mc-request-treatment-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(160px, 0.7fr);
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--mc-border-solid);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-request-treatment-person {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.mc-request-treatment-avatar,
.mc-request-owner-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--mc-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  font-weight: 800;
  overflow: hidden;
  position: relative;
}

.mc-request-treatment-avatar::before,
.mc-request-owner-avatar::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
  position: absolute;
  top: 10px;
}

.mc-request-treatment-avatar::after,
.mc-request-owner-avatar::after {
  content: "";
  width: 28px;
  height: 14px;
  border-radius: 999px 999px 0 0;
  background: currentColor;
  position: absolute;
  bottom: 9px;
}

.mc-request-treatment-person h2 {
  margin: 3px 0 5px;
  color: #0b1220;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.mc-request-treatment-person p,
.mc-request-treatment-status small,
.mc-request-treatment-date small {
  display: block;
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.mc-request-treatment-status,
.mc-request-treatment-date {
  padding-left: 14px;
  border-left: 1px solid #eef0f3;
}

.mc-request-treatment-status strong,
.mc-request-treatment-date strong {
  display: block;
  margin: 5px 0 5px;
  color: #0b1220;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.mc-request-side-card--owner {
  border-color: rgba(249, 85, 30, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
}

.mc-request-owner-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 11px;
}

.mc-request-owner-card strong {
  display: block;
  color: #0b1220;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.mc-request-owner-card p {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.mc-request-owner-card.is-unassigned .mc-request-owner-avatar {
  background: #f3f4f6;
  color: #6b7280;
}

.mc-request-reply-card .comment-show-container,
.mc-request-show-comment,
.mc-request-comment-form .comment-show-container {
  display: none !important;
}

.mc-request-comment-fields,
.mc-request-comment-fields.shown,
.mc-request-reply-card .comment-fields {
  display: block !important;
}

.mc-request-reply-card .comment-container,
.mc-request-comment-container {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.mc-request-reply-card .comment-avatar,
.mc-request-reply-card .avatar {
  display: none !important;
}

.mc-request-reply-card .nesty-input,
.mc-request-reply-card textarea,
.mc-request-reply-card .hc-multiselect-toggle,
.mc-request-reply-card .comment-ccs input,
.mc-request-reply-card .comment-fields input[type="text"] {
  border-radius: 12px;
}

.mc-request-reply-card .wysiwyg,
.mc-request-reply-card .ck-editor,
.mc-request-reply-card .hc-wysiwyg,
.mc-request-reply-card iframe {
  border-radius: 12px;
}

.mc-request-card-header .mc-text-link {
  white-space: nowrap;
  margin-top: 5px;
}

.mc-request-detail-hero .mc-request-detail-meta-row strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .mc-request-treatment-card {
    grid-template-columns: 1fr;
  }

  .mc-request-treatment-status,
  .mc-request-treatment-date {
    padding-left: 0;
    padding-top: 14px;
    border-left: none;
    border-top: 1px solid #eef0f3;
  }
}

@media (max-width: 640px) {
  .mc-request-treatment-card {
    padding: 16px;
    border-radius: 16px;
  }

  .mc-request-treatment-person {
    gap: 12px;
  }

  .mc-request-treatment-avatar,
  .mc-request-owner-avatar {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .mc-request-card-header .mc-text-link {
    width: 100%;
  }
}


/* Request detail v4: één duidelijke statuskaart zonder dubbelingen */
.mc-request-status-explainer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 22px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--mc-border-solid);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--mc-shadow-soft);
}

.mc-request-status-explainer-main h2 {
  margin: 4px 0 8px;
  color: #0b1220;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.mc-request-status-explainer-main p {
  max-width: 690px;
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
}

.mc-request-status-explainer-facts {
  display: grid;
  gap: 10px;
}

.mc-request-status-fact {
  padding: 13px 14px;
  border: 1px solid #eef0f3;
  border-radius: 13px;
  background: #f9fafb;
}

.mc-request-status-fact span {
  display: block;
  margin-bottom: 5px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mc-request-status-fact strong {
  display: block;
  color: #0b1220;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.mc-request-status-fact small {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
}

.mc-request-side-card--next {
  border-color: rgba(21, 42, 84, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mc-request-side-card--next h2 {
  margin-bottom: 8px;
}

.mc-request-side-card--next p {
  color: #374151;
}

.mc-request-side-card--owner,
.mc-request-side-card--status,
.mc-request-treatment-card {
  display: none !important;
}

.mc-request-detail-hero .status-label {
  box-shadow: none;
}

.mc-request-card-header h2 {
  font-size: 21px;
}

.mc-request-reply-card .mc-request-card-header p {
  max-width: 640px;
}

@media (max-width: 980px) {
  .mc-request-status-explainer-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mc-request-status-explainer-card {
    padding: 18px;
    border-radius: 16px;
  }

  .mc-request-status-explainer-main h2 {
    font-size: 21px;
  }
}
/* Optimized Microcash header */

.mc-site-header {
  min-height: 78px;
  padding: 0 40px;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 50;
}

.mc-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--mc-text-dark);
  text-decoration: none;
}

.mc-logo-link:hover {
  color: var(--mc-text-dark);
  text-decoration: none;
}

.mc-site-logo img {
  max-height: 38px;
  width: auto;
  flex-shrink: 0;
}

.mc-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1.16;
}

.mc-header-title {
  color: var(--mc-text-dark);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.mc-header-subtitle {
  margin-top: 3px;
  color: var(--mc-text-muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.mc-header-nav-desktop {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mc-header-nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-header-nav-list li {
  display: inline-flex;
  align-items: center;
}

.mc-header-link,
.mc-header-signin {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 8px;
  color: var(--mc-text-dark) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
}

.mc-header-link:hover,
.mc-header-signin:hover {
  color: var(--mc-orange) !important;
  text-decoration: none !important;
}

.mc-header-cta,
.mc-site-header .submit-a-request {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--mc-orange);
  border: 2px solid var(--mc-orange);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: none;
}

.mc-header-cta:hover,
.mc-site-header .submit-a-request:hover {
  background: var(--mc-orange-hover);
  border-color: var(--mc-orange-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

.mc-user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mc-user-menu-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 4px 4px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--mc-text-dark);
  cursor: pointer;
}

.mc-user-menu-button:hover,
.mc-user-menu-button[aria-expanded="true"] {
  background: #f8fafc;
  border-color: var(--mc-border-solid);
}

.mc-site-header .avatar,
.mc-site-header .user-avatar,
.mc-site-header .mc-user-avatar,
.mc-site-header .menu-profile-avatar {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 999px !important;
  overflow: hidden;
  object-fit: cover;
  background: #e5e7eb;
}

.mc-user-name-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 190px;
}

.mc-user-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--mc-text-dark);
  font-size: 14px;
  font-weight: 800;
}

.mc-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--mc-border-solid);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  z-index: 1000;
  display: none;
}

.mc-user-dropdown[aria-expanded="true"],
.mc-user-dropdown[aria-hidden="false"],
.mc-user-dropdown.is-active,
.mc-user-dropdown[style*="display: block"] {
  display: flex;
  flex-direction: column;
}

.mc-user-menu:hover .mc-user-dropdown,
.mc-user-menu:focus-within .mc-user-dropdown {
  display: flex;
  flex-direction: column;
}

.mc-user-dropdown a,
.mc-user-dropdown button,
.mc-user-dropdown .mc-dropdown-item {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--mc-text-dark) !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-decoration: none !important;
  cursor: pointer;
}

.mc-user-dropdown a:hover,
.mc-user-dropdown button:hover,
.mc-user-dropdown .mc-dropdown-item:hover {
  background: #fff3ee;
  color: var(--mc-orange) !important;
  text-decoration: none !important;
}

.mc-dropdown-item-muted {
  color: #6b7280 !important;
}

.mc-dropdown-separator,
.mc-user-dropdown .separator {
  height: 1px;
  margin: 7px 4px;
  background: #eef0f3;
}

.mc-header-nav-mobile {
  display: none;
}

.mc-mobile-menu-button {
  min-height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--mc-border-solid);
  border-radius: 12px;
  background: #ffffff;
  color: var(--mc-text-dark);
}

.mc-mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 16px;
  width: min(320px, calc(100vw - 32px));
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--mc-border-solid);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  z-index: 1000;
  display: none;
}

.mc-mobile-menu[aria-expanded="true"] {
  display: block;
}

.mc-mobile-menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-mobile-menu-items .item a,
.mc-mobile-menu-items .item button,
.mc-mobile-menu-items a,
.mc-mobile-menu-items button {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--mc-text-dark) !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  text-decoration: none !important;
}

.mc-mobile-menu-items .item a:hover,
.mc-mobile-menu-items .item button:hover,
.mc-mobile-menu-items a:hover,
.mc-mobile-menu-items button:hover {
  background: #fff3ee;
  color: var(--mc-orange) !important;
  text-decoration: none !important;
}

.mc-mobile-profile-link {
  gap: 10px;
}

.my-profile-tooltip {
  color: var(--mc-text-muted);
  font-size: 12px;
  font-weight: 500;
}

.mc-mobile-cta {
  justify-content: center;
  margin-top: 4px;
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .mc-site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .mc-header-title {
    font-size: 17px;
  }

  .mc-header-subtitle {
    display: none;
  }

  .mc-header-nav-desktop {
    display: none;
  }

  .mc-header-nav-mobile {
    display: block;
    position: relative;
  }
}

@media (max-width: 480px) {
  .mc-site-header {
    padding: 12px 16px;
  }

  .mc-site-logo img {
    max-height: 32px;
  }
}
.mc-user-menu {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.mc-user-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  display: block;
}

.mc-user-dropdown {
  top: calc(100% + 2px);
}

.mc-user-menu:hover .mc-user-dropdown,
.mc-user-menu:focus-within .mc-user-dropdown,
.mc-user-dropdown:hover {
  display: flex;
  flex-direction: column;
}