:root {
  /* Brand */
  --primary: #750ef7;
  --primary-light: #f3eaff;
  --primary-hover: #5f0bd1;

  /* Text */
  --text: #222222;
  --heading: #181d27;
  --subtitle: #535862;
  --muted: #717680;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-soft: #fafafa;

  /* Borders */
  --border: #e0e0e0;
  --border-light: #eaeaea;

  /* Extras */
  --radius: 10px;
  --transition: 0.2s ease;
}
.cs-breadcrumbs {
  display: none !important;
}

.cs-main-content,
.cs-sidebar-disabled .cs-main-content,
.cs-sidebar-left .cs-main-content .cs-entry__container,
.cs-sidebar-right .cs-main-content {
  grid-template-columns: minmax(0, 1fr) !important;
}

/* ══════════════════════════════════════════
   Variables & Wrapper
   ══════════════════════════════════════════ */
.menu-grid-wrap {
  --primary: #750ef7;
  --primary-light: #f3eaff;
  --heading: #181d27;
  --subtitle: #535862;
  --muted: #717680;
  --border: #e0e0e0;

  font-family: "Inter", sans-serif;
  width: 100%;
  max-width: 1144px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════
   Header
   ══════════════════════════════════════════ */
.menu-grid-wrap .mg-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 20px;
}

.menu-grid-wrap .mg-subtitle {
  font-size: 15px;
  color: var(--subtitle);
  margin: 0 0 16px;
}

/* ══════════════════════════════════════════
   Filter Tabs
   ══════════════════════════════════════════ */
.menu-grid-wrap .mg-filters {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  /* justify-content: center; */
  -webkit-overflow-scrolling: touch;
}
.menu-grid-wrap .mg-filters-end {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  /* justify-content: center; */
  -webkit-overflow-scrolling: touch;
  justify-content: flex-end;
}

.menu-grid-wrap .mg-filters::-webkit-scrollbar {
  height: 4px;
}

.menu-grid-wrap .mg-filters-end::-webkit-scrollbar {
  height: 4px;
}
.menu-grid-wrap .mg-filter-btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.menu-grid-wrap .mg-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-grid-wrap .mg-filter-btn.active {
  background: var(--primary-light);
  border-color: transparent;
  color: var(--primary);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   GRID — CSS columns (instant, no JS needed for layout)
   ══════════════════════════════════════════ */
.menu-grid-wrap .mg-grid {
  column-count: 4;
  column-gap: 20px;
  cursor: pointer;
}

/* ══════════════════════════════════════════
   Card
   ══════════════════════════════════════════ */
.menu-grid-wrap .mg-card {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  opacity: 1;
}

.menu-grid-wrap .mg-card:hover {
  transform: translateY(-4px);
}

/* Hidden by filter */
.menu-grid-wrap .mg-card[data-visible="false"] {
  display: none;
}

/* ══════════════════════════════════════════
   Image Area with Skeleton
   ══════════════════════════════════════════ */
.menu-grid-wrap .mg-card-img-wrap {
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
  border-radius: 16px;
  /* Fixed estimated height before image loads — prevents layout shift */
  min-height: 100px;
}

/* ── Skeleton shimmer animation ── */
.menu-grid-wrap .mg-card-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mg-shimmer 1.5s ease-in-out infinite;
  border-radius: 16px;
  transition: opacity 0.3s ease;
}

/* Hide skeleton once image loaded */
.menu-grid-wrap .mg-card-img-wrap.mg-loaded::before {
  opacity: 0;
  pointer-events: none;
}

@keyframes mg-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ── Image — hidden until loaded ── */
.menu-grid-wrap .mg-card-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.menu-grid-wrap .mg-card-img-wrap.mg-loaded img {
  opacity: 1;
}

.menu-grid-wrap .mg-card:hover img {
  transform: scale(1.05);
}

/* ── Placeholder (no image) ── */
.menu-grid-wrap .mg-placeholder {
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 16px;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.menu-grid-wrap .mg-placeholder-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ── Card Info ── */
.menu-grid-wrap .mg-card-info {
  padding: 10px 4px 14px;
}

.menu-grid-wrap .mg-card-item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.3;
  margin: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 768px): 2 columns
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .menu-grid-wrap {
    padding: 24px 12px;
  }

  .menu-grid-wrap .mg-title {
    font-size: 22px;
  }

  .menu-grid-wrap .mg-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
  .menu-grid-wrap .mg-filters-end {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }

  .menu-grid-wrap .mg-filter-btn {
    padding: 7px 14px;
    font-size: 13px;
  }

  .menu-grid-wrap .mg-grid {
    column-count: 2;
    column-gap: 16px;
  }

  .menu-grid-wrap .mg-card {
    margin-bottom: 16px;
  }

  .menu-grid-wrap .mg-card-item-name {
    font-size: 14px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 480px): 1 column
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .menu-grid-wrap {
    padding: 20px 12px;
  }

  .menu-grid-wrap .mg-title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .menu-grid-wrap p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .menu-grid-wrap .mg-filters {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 6px;
  }
  .menu-grid-wrap .mg-filters-end {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 6px;
  }

  .menu-grid-wrap .mg-filter-btn {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
  }

  /* Change column-count from 1 to 2 */
  .menu-grid-wrap .mg-grid {
    column-count: 2;
    column-gap: 12px;
  }

  /* Remove the max-width centering — it only made sense for 1 column */
  .menu-grid-wrap .mg-card {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 12px;
  }

  /* Slightly reduce min-height since cards are narrower now */
  .menu-grid-wrap .mg-card-img-wrap {
    min-height: 120px;
  }

  .menu-grid-wrap .mg-placeholder-name {
    font-size: 16px;
  }

  .menu-grid-wrap .mg-card-item-name {
    font-size: 13px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Extra small (≤ 380px)
   ══════════════════════════════════════════ */
@media (max-width: 380px) {
  .menu-grid-wrap {
    padding: 16px 10px;
  }

  .menu-grid-wrap .mg-filter-btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  .menu-grid-wrap .mg-card-item-name {
    font-size: 12px;
  }
}
:root {
  --primary: #750ef7;
  --text: #1b013b;
  --muted: #666;
  --bg: #ffffff;
  --border: #eaeaea;
}

/* Container */
.main-post-content {
  max-width: 820px;
  margin: auto;
  padding: 40px 20px;
  background: var(--bg);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
}

/* Headings */
.main-post-content h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.main-post-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
}

.main-post-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
}

/* Paragraph */
.main-post-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

/* Links */
.main-post-content a {
  color: var(--primary);
  text-decoration: none;
}

.main-post-content a:hover {
  text-decoration: underline;
}

/* Lists */
.main-post-content ul,
.main-post-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.main-post-content li {
  line-height: 1.8;
}

/* Images */
.main-post-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 15px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Blockquote */
.main-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 15px;
  color: var(--muted);
  margin: 20px 0;
  font-style: italic;
}

/* Code */
.main-post-content pre {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
}

.main-post-content code {
  background: #f3eaff;
  padding: 3px 6px;
  border-radius: 5px;
}

/* Buttons */
.main-post-content .btn {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--primary);
  background: #f1e7fe;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.main-post-content .btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Tables */
.main-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.main-post-content th,
.main-post-content td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
}

.main-post-content th {
  background: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
  .main-post-content {
    padding: 20px;
  }

  .main-post-content h1 {
    font-size: 24px;
  }

  .main-post-content h2 {
    font-size: 20px;
  }

  .main-post-content h3 {
    font-size: 18px;
  }
}
:root {
  --primary: #750ef7;
  --light: #f3eaff;
  --border: #e9d8ff;
  --text: #1a1a2e;
  --text-muted: #5c5c7a;
  --bg-surface: #faf9fd;
}

.main-post-content.mg-content-shell {
  max-width: 100%;
  margin: 48px auto 0;
  padding: 0 16px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

/* ── POST BODY ── */
.mg-post-body {
  font-size: 15px;
  color: var(--text);
  font-family: "Inter", sans-serif;
}

.mg-post-body > * + * {
  margin-top: 1.25em;
}

.mg-post-body h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-top: 52px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  scroll-margin-top: 80px;
  position: relative;
  padding-bottom: 12px;
}

.mg-post-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.mg-post-body h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 24px;
  scroll-margin-top: 80px;
}

.mg-post-body p {
  margin: 0 0 1em;
  color: #3a3a52;
  font-size: 15px;
  line-height: 1.8;
}

.mg-post-body a {
  color: var(--primary);
  text-decoration: none !important;
  text-underline-offset: 2px;
}

.mg-post-body a.btn {
  font-weight: 600;
  font-size: 15px;
}

.mg-post-body a:hover {
  text-decoration: underline;
}

.mg-post-body ul,
.mg-post-body ol {
  margin: 0 0 1.2em;
  padding-left: 22px;
}

.mg-post-body li {
  margin: 7px 0;
  color: #3a3a52;
  font-size: 15px;
  line-height: 1.7;
}

.mg-post-body strong {
  font-weight: 600;
  color: var(--text);
}

/* ── HOWTO GRID ── */
.howto-grid {
  margin: 2rem 0;
}

.howto-grid__header {
  margin-bottom: 22px;
}

.howto-grid--align-center .howto-grid__header {
  text-align: center;
}

.howto-grid--align-left .howto-grid__header {
  text-align: left;
}

.howto-grid__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

.howto-grid__tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.howto-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.howto-grid__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px 16px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  gap: 8px;
  background: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  overflow: hidden;
}

.howto-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(117, 14, 247, 0.11);
  border-color: rgba(117, 14, 247, 0.35);
}

.howto-grid__item-icon .icon-text {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.howto-grid__item-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.howto-grid__item-title {
  font-size: 15px;
  font-weight: 700;
  margin: 2px 0 0;
  color: var(--text);
  line-height: 1.3;
}

.howto-grid__item-content {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
  width: 100%;
}

.howto-grid__item-content p {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 15px;
}

.howto-grid__item-content ul,
.howto-grid__item-content ol {
  padding-left: 16px;
  margin: 0 0 6px;
}

.howto-grid__item-content li {
  font-size: 15px;
  margin: 3px 0;
  color: var(--text-muted);
}

.howto-grid__item-image {
  margin: 6px 0 0;
  width: 100%;
}

.howto-grid__item-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.howto-grid--align-left .howto-grid__item {
  align-items: flex-start;
  text-align: left;
}

.howto-grid--align-right .howto-grid__item {
  align-items: flex-end;
  text-align: right;
}

/* ── HOWTO COLUMNS ── */
.howto-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  margin: 2rem 0;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.howto-cols.howto-cols--default.howto-cols--img-left {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.howto-cols--img-right .howto-cols__image-col {
  order: 2;
}

.howto-cols--img-right .howto-cols__text-col {
  order: 1;
}

.howto-cols--split {
  grid-template-columns: 1fr 1fr;
}

.howto-cols--split.howto-cols--img-right {
  grid-template-columns: 1fr 1fr;
}

.howto-cols--wide-image {
  grid-template-columns: 58% 1fr;
}

.howto-cols--wide-image.howto-cols--img-right {
  grid-template-columns: 1fr 58%;
}

.howto-cols__image {
  margin: 0;
}

.howto-cols__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.howto-cols__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.howto-cols__question {
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3;
}

.howto-cols__text-col h2 {
  font-size: 18px;
  margin: 6px 0 4px;
  color: var(--text);
}

.howto-cols__text-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 4px 0 4px;
  color: var(--text);
}

.howto-cols__text-col p {
  margin: 0 0 8px;
  line-height: 1.75;
  color: #3a3a52;
  font-size: 15px;
}

.howto-cols__text-col ul,
.howto-cols__text-col ol {
  padding-left: 18px;
  margin: 0 0 8px;
}

.howto-cols__text-col li {
  margin: 4px 0;
  color: #3a3a52;
  font-size: 15px;
  line-height: 1.6;
}

.howto-cols__text-col a {
  color: var(--primary);
  text-decoration: none;
}

.howto-cols__text-col a:hover {
  text-decoration: underline;
}

.howto-cols__example {
  line-height: 1.75;
  font-size: 15px;
  color: #3a3a52;
}

.howto-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 15px;
  margin-top: 14px;
  transition:
    opacity 0.18s,
    transform 0.18s;
  font-family: "Inter", sans-serif;
}

.howto-btn:hover {
  opacity: 0.86;
  transform: translateY(-2px);
}

/* ── COLS GROUP ── */
.howto-cols-group {
  margin: 2rem 0;
}

.howto-cols-group__header {
  margin-bottom: 18px;
}

.howto-cols-group--align-left .howto-cols-group__header {
  text-align: left;
}

.howto-cols-group__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

.howto-cols-group__tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.howto-cols-group__items .howto-cols {
  margin: 14px 0;
}

/* ── HOWTO FAQ / STEPS ── */
.howto-faq {
  margin: 1.25rem 0;
}

.howto-faq__body {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
  background: #fff;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  align-items: flex-start;
}

.howto-faq__body:hover {
  border-color: rgba(117, 14, 247, 0.3);
  box-shadow: 0 8px 28px rgba(117, 14, 247, 0.08);
}

.howto-faq__number {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.howto-faq__explanation {
  flex: 1;
  min-width: 0;
}

.howto-faq__question {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3;
}

.howto-faq__explanation p {
  font-size: 15px;
  color: #3a3a52;
  margin: 6px 0 6px;
  line-height: 1.75;
}

.editor-desktop .howto-faq__explanation h3 {
  margin: 0px !important;
}

.howto-faq__image {
  margin: 12px 0 0;
}

.howto-faq__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.howto-faq--numbered .howto-faq__body {
  flex-direction: row;
}

.howto-faq--numbered .howto-faq__explanation {
  flex: 1;
}

/* ── TABLE ── */
.mg-post-body .mg-table-wrap {
  margin: 28px 0;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

.mg-post-body .mg-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 0;
  font-size: 15px;
}

.mg-post-body .mg-table thead {
  background: var(--primary);
}

.mg-post-body .mg-table th {
  text-align: left;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 16px;
  border-bottom: none;
  white-space: nowrap;
  background: var(--primary);
}

.mg-post-body .mg-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  font-size: 15px;
}

.mg-post-body .mg-table tbody tr:last-child td {
  border-bottom: 0;
}

.mg-post-body .mg-table tbody tr:nth-child(even) {
  background: #fdfbff;
}

.mg-post-body .mg-table tbody tr:hover {
  background: var(--light);
}

/* ── FAQ SECTION ── */
.mg-faq-section {
  margin: 0;
}

.mg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mg-faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 15px;
  padding: 18px 22px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.mg-faq-item[open] {
  border-color: rgba(117, 14, 247, 0.3);
  box-shadow: 0 4px 20px rgba(117, 14, 247, 0.07);
  background: #fffeff;
}

.mg-faq-item:hover {
  border-color: rgba(117, 14, 247, 0.22);
}

.mg-faq-q {
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}
.mg-faq-q h3 {
  margin: 0;
}

.mg-faq-q::-webkit-details-marker {
  display: none;
}

.mg-faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 50%;
  font-size: 16px;
}

.mg-faq-item[open] summary::after {
  content: "−";
}

.mg-faq-a {
  font-size: 15px;
  color: var(--text-muted);
  margin: 14px 0 0;
  line-height: 1.78;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.mg-faq-a p {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 15px;
}

.mg-faq-a p:last-child {
  margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .howto-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .howto-cols,
  .howto-cols--split,
  .howto-cols--wide-image,
  .howto-cols--img-right,
  .howto-cols--wide-image.howto-cols--img-right {
    grid-template-columns: 1fr !important;
    padding: 20px;
    gap: 18px;
  }

  .howto-cols__image-col,
  .howto-cols__text-col {
    order: unset !important;
  }

  .howto-cols__image img {
    height: 180px;
  }

  .howto-faq--numbered .howto-faq__body {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .howto-grid__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-post-content.mg-content-shell {
    margin-top: 32px;
  }

  .mg-post-body h2 {
    font-size: 20px;
    margin-top: 36px;
  }

  .mg-post-body h3 {
    font-size: 16px;
  }

  .mg-faq-q {
    font-size: 15px;
  }

  .mg-post-body .mg-table th,
  .mg-post-body .mg-table td {
    padding: 10px 12px;
  }
}
