body.aussui-cms-site,
body.aussui-auth-page {
  direction: rtl;
  min-height: 100vh;
}

.platform-card > a {
  display: grid;
  place-items: center;
  gap: 8px;
}

.store-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #0a5cff, var(--blue));
  box-shadow: 0 12px 26px rgba(0, 76, 255, 0.22);
  font-weight: 900;
}

.cms-main {
  min-height: 58vh;
}

.cms-main > .wrap {
  padding-block: 0;
}

.cms-breadcrumb {
  padding-top: 0;
}

.cms-breadcrumb:empty {
  display: none;
}

.cms-main > .note-box,
.cms-main > form,
.cms-main > .panel,
.cms-main > .table-responsive,
.cms-main > .empty-state {
  width: min(960px, calc(100% - 32px));
  margin-inline: auto;
}

.cms-main > form,
.cms-main > .panel {
  margin-block: 24px 42px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav-list ul,
.mobile-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-list > ul {
  height: 48.8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav-list li {
  position: relative;
}

.site-nav-list a,
.sort-menu a {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.18s ease, background 0.18s ease;
}

.sort-menu a {
  width: 100%;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  text-align: right;
}

.sort-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav-list a:hover,
.site-nav-list a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav-list li ul {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 220px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0d0d18;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.46);
}

.site-nav-list li:hover > ul,
.site-nav-list li:focus-within > ul {
  display: block;
}

.site-nav-list li ul a {
  width: 100%;
  justify-content: flex-start;
}

.mobile-menu-list {
  display: grid;
  gap: 8px;
}

.mobile-menu-list a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.cms-breadcrumb .breadcrumb {
  margin-bottom: 16px;
}

.cms-breadcrumb .breadcrumbs {
  margin-top: 22px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a.active {
  color: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.note-box {
  position: relative;
  margin: 0 0 16px;
  padding: 14px 46px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
}

.note-success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
}

.note-warm {
  border-color: rgba(239, 68, 68, 0.36);
  background: rgba(239, 68, 68, 0.1);
}

.note-info {
  border-color: rgba(77, 142, 255, 0.35);
  background: rgba(77, 142, 255, 0.1);
}

.note-box-close {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
}

.note-box-close::before {
  content: "x";
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1;
}

.pagination,
.pages ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
}

.pagination a,
.pagination span,
.pages a {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.pagination .active,
.pages .active-page {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.content-page,
.article-wrapper,
.cms-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.content-page-shell {
  padding: 24px 0 42px;
}

.blog-index-page {
  padding-bottom: 44px;
}

.article-archive-hero {
  padding: 36px 0 10px;
}

.article-archive-hero__copy {
  max-width: 760px;
}

.article-archive-hero__copy span,
.article-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 192, 2, 0.2);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 192, 2, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.article-archive-hero h1 {
  max-width: 720px;
  margin: 12px 0 10px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 800;
}

.article-archive-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.article-feed-section {
  padding-top: 16px;
}

.flex-row,
.flex-row-reverse {
  display: flex;
  flex-wrap: wrap;
  width: min(1248px, calc(100% - 32px));
  margin-inline: auto;
}

.blog-category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.blog-category-card a {
  height: 100%;
  display: grid;
}

.blog-category-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.blog-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-category-card__body {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.blog-category-card strong {
  color: var(--white);
  font-size: 16px;
}

.blog-category-card small {
  color: rgba(255, 255, 255, 0.52);
}

.blog-empty-state {
  grid-column: 1 / -1;
  min-height: 190px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.blog-empty-state h2 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
}

.blog-empty-state p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-row > *,
.flex-row-reverse > * {
  min-width: 0;
}

.flex-row-center {
  justify-content: center;
}

.lc-1 { width: .83333333%; }
.lc-2 { width: 1.66666667%; }
.lc-8 { width: 6.66666667%; }
.lc-15 { width: 12.5%; }
.lc-20 { width: 16.66666667%; }
.lc-30 { width: 25%; }
.lc-40 { width: 33.33333333%; }
.lc-50 { width: 41.66666667%; }
.lc-59 { width: 49.16666667%; }
.lc-70 { width: 58.33333333%; }
.lc-80 { width: 66.66666667%; }
.lc-90 { width: 75%; }
.lc-100 { width: 83.33333333%; }
.lc-105 { width: 87.5%; }
.lc-108 { width: 90%; }
.lc-112 { width: 93.33333333%; }
.lc-118 { width: 98.33333333%; }
.lc-120 { width: 100%; }

.sc-show,
.mc-show,
.lc-hide {
  display: none !important;
}

.lc-show {
  display: initial !important;
}

.content-page h1,
.article-title h1,
.panel-title,
.cms-panel h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.35;
  font-weight: 800;
}

.article-page {
  padding: 28px 0 62px;
}

.article-page__wrap {
  width: min(1120px, calc(100% - 32px));
}

.article-back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.article-back-link svg {
  width: 18px;
  height: 18px;
}

.article-back-link:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.article-wrapper.article-detail {
  overflow: hidden;
  padding: 0;
  border-radius: 22px;
  border-color: rgba(77, 142, 255, 0.16);
  background: rgba(7, 11, 34, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  animation: articleFadeUp 0.55s ease both;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5.5vw, 64px);
  background:
    linear-gradient(135deg, rgba(0, 76, 255, 0.22), rgba(255, 192, 2, 0.08) 58%, rgba(34, 197, 94, 0.08)),
    rgba(255, 255, 255, 0.025);
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.45;
}

.article-hero__content {
  position: relative;
  max-width: 840px;
}

.article-hero h1 {
  margin: 16px 0 12px;
  color: var(--white);
  font-size: clamp(32px, 5.4vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.article-hero h1 a {
  color: inherit;
}

.article-brief {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.9;
}

.article-brief:empty {
  display: none;
}

.article-detail .article-statistic {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  direction: rtl;
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.article-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.article-detail .article-image {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.article-detail .article-image:empty {
  display: none;
}

.article-detail .article-image .text-center {
  margin: 0;
}

.article-detail .article-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.article-detail:hover .article-image img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.article-detail .article-content {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.responsive-content,
.article-body,
.page-content {
  color: rgba(255, 255, 255, 0.74);
}

.article-body {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 2.12;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 34px 0 14px;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0;
}

.article-body h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.article-body h3 {
  font-size: clamp(21px, 2.4vw, 28px);
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 20px;
}

.article-body ul,
.article-body ol {
  padding-inline-start: 24px;
}

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

.article-body blockquote {
  margin: 30px 0;
  padding: 22px 24px;
  border-right: 4px solid var(--gold);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 192, 2, 0.075);
}

.article-body a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.article-body table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

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

.article-body th {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.article-body pre,
.article-body code {
  border-radius: 12px;
  color: #dce7ff;
  background: rgba(1, 3, 21, 0.72);
  direction: ltr;
}

.article-body pre {
  overflow-x: auto;
  padding: 16px;
}

.article-body code {
  padding: 2px 6px;
}

.article-body iframe,
.article-body video {
  max-width: 100%;
  border: 0;
  border-radius: 16px;
}

.responsive-content img,
.article-image img,
.page-content img {
  max-width: 100%;
  border-radius: 14px;
}

.article-image {
  margin-bottom: 18px;
}

.blog-card p,
.article-statistic {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.article-social-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-social-share > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.article-social-share > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  direction: ltr;
}

.article-social-share .socialicon,
.article-author-card__social .socialicon {
  width: 32px;
  height: 32px;
  margin: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.article-social-share a:hover .socialicon,
.article-author-card__social a:hover .socialicon {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.article-show-layout > .home-section {
  margin-top: 18px;
}

.article-author-section {
  padding-top: 24px;
}

.article-author-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(77, 142, 255, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 76, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.article-author-card--compact {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
}

.article-author-card__avatar {
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.article-author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-author-card h1,
.article-author-card h2 {
  margin: 8px 0;
  color: var(--white);
  line-height: 1.35;
}

.article-author-card h1 {
  font-size: clamp(26px, 4vw, 42px);
}

.article-author-card h2 {
  font-size: 20px;
}

.article-author-card__bio {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.85;
}

.article-author-card__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.article-related-section .section-head {
  align-items: end;
}

.article-related-section .blog-grid {
  margin-top: 18px;
}

@keyframes articleFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-content,
.search-result-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.cms-main > .search-result-card {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 12px;
}

.search-content img,
.search-result-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.search-content h1,
.search-result-card h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.45;
}

.search-content p,
.search-result-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.form-panel form,
.panel form,
.cms-form {
  display: grid;
  gap: 14px;
}

.form-caption {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.form-unit {
  display: grid;
  gap: 7px;
  margin: 0;
}

.form-unit-title,
.form-unit-textarea-title {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.form-unit-field label {
  display: grid;
  gap: 7px;
}

.form-unit-field input:not([type="checkbox"]),
.form-unit-field select,
.form-unit-field textarea,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.form-unit-field textarea,
.field textarea {
  min-height: 130px;
  padding-block: 12px;
  resize: vertical;
}

.form-unit-field input[type="checkbox"] {
  margin-inline-end: 8px;
}

.button,
.button-style-success-dark,
.form-unit button[type="submit"] {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 76, 255, 0.32);
  font-size: 14px;
  font-weight: 800;
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.72);
}

.table th,
.table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.table th {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  text-align: right;
}

.dlcms-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(1, 3, 21, 0.56);
}

.dlcms-loading-overlay.is-active {
  display: grid;
}

.dlcms-loading-ring {
  width: 34px;
  height: 34px;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: aussuiSpin 0.75s linear infinite;
}

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

.product-card-form {
  margin: 0;
}

.pc-cta .btn {
  width: 100%;
}

.denomination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.denomination-option {
  position: relative;
  display: block;
}

.denomination-option input {
  position: absolute;
  opacity: 0;
}

.denomination-option span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.denomination-option input:checked + span {
  border-color: var(--blue);
  background: rgba(0, 76, 255, 0.14);
  color: var(--white);
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-item img {
  width: 86px;
  height: 112px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 16px;
}

.cart-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.cart-summary,
.checkout-summary {
  display: grid;
  gap: 12px;
}

.cart-summary-row,
.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cart-summary-row strong,
.checkout-summary-row strong {
  color: var(--gold);
}

.checkout-summary-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  margin-inline-end: 10px;
  vertical-align: middle;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.account-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.account-stat strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.empty-content-placeholder {
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--blue-soft);
}

.complaint-page {
  width: min(760px, calc(100% - 32px));
  margin: 24px auto 56px;
}

.complaint-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(77, 142, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.complaint-heading {
  margin-bottom: 18px;
}

.complaint-heading span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.complaint-heading h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.25;
}

.complaint-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1023px) {
  .site-nav-list {
    display: none;
  }

  .article-page__wrap,
  .article-author-card--compact {
    width: min(100% - 24px, 1120px);
  }

  .article-hero h1 {
    font-size: clamp(30px, 7vw, 52px);
  }

  .account-grid,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .lc-show {
    display: none !important;
  }

  .lc-hide,
  .mc-show {
    display: initial !important;
  }

  .mc-hide {
    display: none !important;
  }

  .mc-1 { width: .83333333%; }
  .mc-2 { width: 1.66666667%; }
  .mc-8 { width: 6.66666667%; }
  .mc-12 { width: 10%; }
  .mc-15 { width: 12.5%; }
  .mc-20 { width: 16.66666667%; }
  .mc-30 { width: 25%; }
  .mc-40 { width: 33.33333333%; }
  .mc-50 { width: 41.66666667%; }
  .mc-59 { width: 49.16666667%; }
  .mc-70 { width: 58.33333333%; }
  .mc-80 { width: 66.66666667%; }
  .mc-90 { width: 75%; }
  .mc-100 { width: 83.33333333%; }
  .mc-105 { width: 87.5%; }
  .mc-108 { width: 90%; }
  .mc-112 { width: 93.33333333%; }
  .mc-118 { width: 98.33333333%; }
  .mc-120 { width: 100%; }

  .flex-row,
  .flex-row-reverse {
    width: min(100%, calc(100% - 24px));
  }
}

@media (max-width: 767px) {
  .cms-main > .wrap {
    padding-block: 18px 32px;
  }

  .content-page,
  .article-wrapper,
  .cms-panel {
    padding: 18px;
  }

  .article-page {
    padding: 18px 0 44px;
  }

  .article-back-link {
    margin-bottom: 10px;
  }

  .article-wrapper.article-detail {
    padding: 0;
    border-radius: 16px;
  }

  .article-hero {
    padding: 24px 18px;
  }

  .article-hero::before {
    opacity: 0.28;
  }

  .article-hero h1 {
    margin-top: 12px;
    font-size: 30px;
    line-height: 1.2;
  }

  .article-brief {
    font-size: 14px;
  }

  .article-detail .article-statistic {
    gap: 8px;
  }

  .article-meta-item {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .article-detail .article-image img {
    max-height: 340px;
  }

  .article-detail .article-content {
    width: calc(100% - 36px);
    padding: 26px 0 30px;
  }

  .article-body {
    font-size: 16px;
    line-height: 2;
  }

  .article-body blockquote {
    padding: 18px;
    border-radius: 14px;
  }

  .article-social-share {
    align-items: flex-start;
    flex-direction: column;
  }

  .complaint-page {
    width: min(100% - 20px, 760px);
    margin-block: 16px 36px;
  }

  .complaint-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .complaint-heading h1 {
    font-size: 24px;
  }

  .mc-show {
    display: none !important;
  }

  .mc-hide,
  .sc-show {
    display: initial !important;
  }

  .sc-hide {
    display: none !important;
  }

  .sc-1 { width: .83333333%; }
  .sc-2 { width: 1.66666667%; }
  .sc-8 { width: 6.66666667%; }
  .sc-12 { width: 10%; }
  .sc-15 { width: 12.5%; }
  .sc-20 { width: 16.66666667%; }
  .sc-30 { width: 25%; }
  .sc-40 { width: 33.33333333%; }
  .sc-50 { width: 41.66666667%; }
  .sc-59 { width: 49.16666667%; }
  .sc-70 { width: 58.33333333%; }
  .sc-80 { width: 66.66666667%; }
  .sc-90 { width: 75%; }
  .sc-100 { width: 83.33333333%; }
  .sc-105 { width: 87.5%; }
  .sc-108 { width: 90%; }
  .sc-112 { width: 93.33333333%; }
  .sc-118 { width: 98.33333333%; }
  .sc-120 { width: 100%; }

  .denomination-grid,
  .search-content,
  .search-result-card {
    grid-template-columns: 1fr;
  }

  .article-author-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 16px;
  }

  .article-author-card__avatar {
    width: 96px;
    height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-wrapper.article-detail,
  .article-back-link,
  .article-detail .article-image img,
  .article-social-share .socialicon,
  .article-author-card__social .socialicon {
    animation: none;
    transition: none;
  }
}
