/* templates/marketplace/browse.twig — SEO content blocks
 *
 * Phase 5 elite editorial polish (2026-05-24). Same blocks, same DOM, same
 * schema selectors — every visible block lifted to a coherent editorial
 * language: soft indigo accent moment, display-font headings with tight
 * letter-spacing, uppercase eyebrow labels for rhythm, two-layer shadow
 * recipe instead of flat borders, ZERO side-stripe accents.
 *
 * Contains: breadcrumb, intro lede, byline, guide-link callout, comparison
 * table, How It Works strip, FAQ accordion, tier mesh, internal link mesh,
 * HTML pagination.
 *
 * Split from marketplace-browse.css because that file hit the 1500-line cap.
 */

/* ── Breadcrumb ──────────────────────────────────────────────────────── */
.mp-breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.mp-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mp-breadcrumb a {
  color: var(--color-gray-600);
  text-decoration: none;
  transition: color 150ms ease;
}
.mp-breadcrumb a:hover {
  color: var(--color-primary);
}
.mp-breadcrumb [aria-current="page"] {
  color: var(--color-gray-800);
  font-weight: 600;
}
.mp-breadcrumb__sep {
  color: var(--color-gray-300);
  font-size: 0.75rem;
}
.marketplace-browse--member .mp-breadcrumb { display: none; }
@media (min-width: 768px) {
  .marketplace-browse--member .mp-breadcrumb { display: block; }
}

/* ── SEO intro lede (page's editorial pitch) ─────────────────────────
 * Soft-indigo surface with refined typography. No border-left stripe (AI
 * tell). This block ONLY renders for anonymous users + Googlebot (member
 * view gates it server-side via {% if not isLoggedIn %}), so its job is
 * to feel like the page's hero — the first marketing moment a cold
 * visitor sees. Typography is tuned for that audience.
 *
 * Two variants: root (.mp-intro alone, 50-70 word universal lede) and
 * category (.mp-intro--category with byline + about + guide-link). The
 * root variant gets an uppercase eyebrow via ::after so it reads as a
 * proper hero, not a notice card. Category gets the byline strip instead. */
.mp-intro {
  position: relative;
  margin: 16px 0 28px;
  padding: 22px 24px 24px;
  background: var(--color-primary-soft);
  border-radius: 16px;
  overflow: hidden;
}
.mp-intro::before {
  /* Subtle indigo gradient overlay so the surface has depth, not flatness.
   * Replaces the discarded border-left stripe as the "this is editorial"
   * visual signal — diffuse, not directional. */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.08), transparent 55%);
  pointer-events: none;
}
.mp-intro > * { position: relative; z-index: 1; }
/* Root variant only: uppercase eyebrow above the lede, no byline strip
 * (no readtime/updated on the root). Pinned via ::after because ::before
 * is already used for the gradient overlay. */
.mp-intro:not(.mp-intro--category) {
  padding-top: 40px;
}
.mp-intro:not(.mp-intro--category)::after {
  /* "About this marketplace" matches the editorial-section eyebrow
   * convention used everywhere else on the page ("How it works",
   * "Common questions", "Side-by-side", "Discover more"). The old text
   * "CollabPals Marketplace" was a brand-name duplicate that read as
   * SEO copy rather than a section label. */
  content: 'About this marketplace';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 1;
}
.mp-intro__lede {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-gray-800);
  letter-spacing: -0.005em;
}
.mp-intro__lede strong {
  color: var(--color-gray-900);
  font-weight: 700;
}
/* Category variant: 120-180 word intro + 50-80 word about. Hairline rule
 * separates the two so the about paragraph reads as continuation, not a
 * second alert card. */
.mp-intro--category .mp-intro__lede + .mp-intro__about {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(79, 70, 229, 0.12);
}
.mp-intro__about {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-gray-700);
}
@media (min-width: 768px) {
  .mp-intro {
    padding: 26px 30px 28px;
  }
  .mp-intro:not(.mp-intro--category) {
    padding-top: 46px;
  }
  .mp-intro:not(.mp-intro--category)::after {
    top: 20px;
    left: 30px;
    font-size: 0.75rem;
  }
  .mp-intro__lede {
    font-size: 1.1875rem;
    line-height: 1.65;
  }
  .mp-intro__about {
    font-size: 1.0625rem;
  }
}
@media (max-width: 767px) {
  .mp-intro {
    margin: 12px 0 20px;
    padding: 18px 18px 20px;
    border-radius: 14px;
  }
  .mp-intro:not(.mp-intro--category) {
    padding-top: 36px;
  }
  .mp-intro:not(.mp-intro--category)::after {
    top: 14px;
    left: 18px;
    font-size: 0.625rem;
  }
  .mp-intro__lede {
    font-size: 0.9375rem;
    line-height: 1.65;
  }
  .mp-intro__about {
    font-size: 0.875rem;
  }
}

/* ── Editorial byline (read-time + updated) on category + facet pages ──
 * Sits at the top of the .mp-intro--category block. Reads as the
 * "magazine column heading" — small, refined, tracked. */
.mp-intro__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.4;
}
.mp-intro__byline-read,
.mp-intro__byline-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mp-intro__byline-read i {
  font-size: 0.75rem;
  color: var(--color-primary);
}
.mp-intro__byline-dot {
  width: 3px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.45;
  display: inline-block;
}
.mp-intro__byline-dot::before { content: ''; }
.mp-intro__byline-dot {
  font-size: 0;
}
@media (max-width: 767px) {
  .mp-intro__byline {
    gap: 8px;
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
}

/* ── "Read the full guide" deep-link card ────────────────────────────
 * Lives inside the category intro. Elevated white card with a square
 * indigo icon chip on the left (the "book cover"), title text in the
 * middle, animated arrow at the right. Reads as a curated next step,
 * not a notice. */
.mp-intro__guide-link {
  margin: 18px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.mp-intro__guide-link a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  background: #fff;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 12px;
  color: var(--color-gray-900);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  letter-spacing: -0.005em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 6px rgba(15, 23, 42, 0.05);
  transition:
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 150ms ease;
}
.mp-intro__guide-link a:hover,
.mp-intro__guide-link a:focus-visible {
  text-decoration: none;
  border-color: rgba(79, 70, 229, 0.35);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 14px rgba(79, 70, 229, 0.1);
}
.mp-intro__guide-link a > i:first-child {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.25);
}
.mp-intro__guide-link-arrow {
  font-size: 0.75rem;
  color: var(--color-primary);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.mp-intro__guide-link a:hover .mp-intro__guide-link-arrow {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .mp-intro__guide-link a {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    padding: 12px 14px 12px 12px;
    font-size: 0.875rem;
  }
  .mp-intro__guide-link a > i:first-child {
    width: 36px;
    height: 36px;
    font-size: 0.9375rem;
  }
}

/* ── Category comparison table ───────────────────────────────────────
 * AI Overview food. Eyebrow + display heading + scrollable wrap so the
 * table never breaks the 375px viewport. Subtle zebra + indigo row-
 * header accent for editorial scannability. */
/* Comparison table now lives in the editorial footer zone (post-grid),
 * first section after the .mp-footer-break divider. Tight top margin
 * because the divider already provides the visual section break;
 * standard bottom margin before the next footer section. */
.mp-compare {
  margin: 18px 0 28px;
}
.mp-compare__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin: 0 0 18px;
  letter-spacing: -0.022em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-compare__heading::before {
  content: 'Side-by-side';
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mp-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 2px 6px rgba(15, 23, 42, 0.04);
}
.mp-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-gray-700);
}
.mp-compare__table thead {
  background: var(--color-gray-50);
}
.mp-compare__table th,
.mp-compare__table td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-gray-100);
}
.mp-compare__table thead th {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-600);
  border-bottom: 2px solid var(--color-gray-200);
}
.mp-compare__table tbody tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.5);
}
.mp-compare__table tbody tr:last-child th,
.mp-compare__table tbody tr:last-child td {
  border-bottom: 0;
}
.mp-compare__table tbody th[scope="row"] {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-gray-900);
  background: transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
  /* No dot accent — Phase 5 added a `::before` indigo dot here that
   * positioned itself centered to the CELL height. When sibling cells
   * wrapped to multiple lines, the cell grew tall while the th text
   * stayed at the top, leaving the dot floating in empty space below.
   * Bold display-font weight + gray-900 vs gray-700 body is enough
   * differentiation; the dot was decorative noise. */
}
@media (max-width: 767px) {
  .mp-compare {
    margin: 14px 0 22px;
  }
  .mp-compare__heading {
    font-size: 1.25rem;
  }
  .mp-compare__heading::before {
    font-size: 0.625rem;
  }
  .mp-compare__table {
    font-size: 0.8125rem;
  }
  .mp-compare__table th,
  .mp-compare__table td {
    padding: 11px 13px;
  }
  .mp-compare__table tbody th[scope="row"] {
    min-width: 130px;
  }
  .mp-compare__table td {
    min-width: 170px;
  }
  .mp-compare__table thead th {
    font-size: 0.625rem;
  }
}

/* ── HTML pagination ─────────────────────────────────────────────────── */
.mp-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 28px 0 36px;
  padding: 18px 0 0;
  border-top: 1px solid var(--color-gray-200);
  font-size: 0.9375rem;
}
.mp-pagination__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  background: #fff;
  color: var(--color-gray-700);
  font-weight: 600;
  text-decoration: none;
  transition: all 150ms ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.mp-pagination__link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.1);
}
.mp-pagination__current {
  color: var(--color-gray-500);
  font-weight: 500;
}
.mp-pagination__link--prev { margin-right: auto; }
.mp-pagination__link--next { margin-left: auto; }
@media (max-width: 767px) {
  .mp-pagination { display: none; }
}

/* ── Editorial footer divider (Phase 7, 2026-05-24) ────────────────
 * Visually demarcates "marketplace surface" (intro + search + grid)
 * from "editorial footer zone" (comparison + how-it-works + FAQ +
 * tier-mesh + links-mesh). Centered uppercase eyebrow label flanked by
 * hairline rules — the same pattern editorial magazines use to mark
 * section breaks. Reads as a deliberate "the marketplace ends here,
 * the learning resources start" cue, not as more clutter. */
.mp-footer-break {
  margin: 40px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mp-footer-break::before,
.mp-footer-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    var(--color-gray-200) 30%,
    var(--color-gray-200) 70%,
    transparent
  );
}
.mp-footer-break::before {
  background: linear-gradient(to right, transparent, var(--color-gray-200));
}
.mp-footer-break::after {
  background: linear-gradient(to left, transparent, var(--color-gray-200));
}
.mp-footer-break__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .mp-footer-break {
    margin: 28px 0 18px;
    gap: 12px;
  }
  .mp-footer-break__label {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
  }
}
/* Whatever section follows the divider, drop its top margin to 0 — the
 * divider already owns the visual break. Adjacent-sibling combinator
 * targets exactly what the user sees, no JS, no :has() dependency.
 * Phase 10: mp-discover removed at founder's request — only intro /
 * compare / howto / faq can be the first-after-divider section now. */
.mp-footer-break + .mp-intro,
.mp-footer-break + .mp-compare,
.mp-footer-break + .mp-howto,
.mp-footer-break + .mp-faq {
  margin-top: 0;
}

/* ── How It Works strip ─────────────────────────────────────────────
 * Editorial 3-step explainer. Eyebrow + left-aligned display heading
 * replace the centered title. Step numbers are connected by a hairline
 * column rule on desktop so the three steps read as a sequence, not
 * three independent boxes. */
.mp-howto {
  margin: 32px 0 24px;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 16px rgba(15, 23, 42, 0.04);
}
.mp-howto__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin: 0 0 22px;
  text-align: left;
  letter-spacing: -0.022em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-howto__heading::before {
  content: 'How it works';
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mp-howto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.mp-howto__step {
  position: relative;
  padding: 4px 4px 0;
}
.mp-howto__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
  position: relative;
  z-index: 1;
}
/* Desktop: subtle hairline connector between numbered circles to suggest
 * sequence. Sits behind the circles via z-index. */
@media (min-width: 768px) {
  .mp-howto__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 36px;
    top: 22px;
    right: -28px;
    height: 1px;
    background: linear-gradient(to right, var(--color-primary-soft), transparent);
    z-index: 0;
  }
}
.mp-howto__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0 0 8px;
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.mp-howto__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
}
@media (max-width: 767px) {
  .mp-howto {
    margin: 24px 0 20px;
    padding: 22px 18px;
    border-radius: 14px;
  }
  .mp-howto__heading {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
  .mp-howto__heading::before {
    font-size: 0.625rem;
  }
  .mp-howto__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mp-howto__step {
    padding: 14px 0 0;
    border-top: 1px solid var(--color-gray-100);
  }
  .mp-howto__step:first-child {
    border-top: 0;
    padding-top: 4px;
  }
  .mp-howto__num {
    width: 32px;
    height: 32px;
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }
  .mp-howto__title {
    font-size: 1rem;
  }
}

/* ── FAQ accordion ──────────────────────────────────────────────────
 * Native <details>/<summary>, zero JS. Open-state uses chevron rotation
 * + tight indigo elevation (NOT a full border-color change — that's the
 * generic SaaS pattern). Eyebrow above the heading. */
.mp-faq {
  margin: 28px 0 28px;
  padding: 0;
}
.mp-faq__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin: 0 0 20px;
  letter-spacing: -0.022em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-faq__heading::before {
  content: 'Common questions';
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mp-faq__item {
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 150ms ease,
    box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mp-faq__item:hover {
  border-color: var(--color-gray-300);
}
.mp-faq__item[open] {
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.08);
}
.mp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
  letter-spacing: -0.012em;
  line-height: 1.4;
  transition: color 150ms ease;
}
.mp-faq__q::-webkit-details-marker { display: none; }
.mp-faq__q:hover {
  color: var(--color-primary);
}
.mp-faq__item[open] .mp-faq__q {
  color: var(--color-primary-dark);
  padding-bottom: 12px;
}
.mp-faq__chevron {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  border-radius: 50%;
  font-size: 0.75rem;
  transition:
    transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
    background 150ms ease,
    color 150ms ease;
  flex-shrink: 0;
}
.mp-faq__q:hover .mp-faq__chevron {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.mp-faq__item[open] .mp-faq__chevron {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: #fff;
}
.mp-faq__a {
  padding: 0 20px 18px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-700);
}
@media (max-width: 767px) {
  .mp-faq {
    margin: 24px 0 24px;
  }
  .mp-faq__heading {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
  .mp-faq__heading::before {
    font-size: 0.625rem;
  }
  .mp-faq__q {
    padding: 15px 16px;
    font-size: 0.9375rem;
    gap: 12px;
  }
  .mp-faq__item[open] .mp-faq__q {
    padding-bottom: 10px;
  }
  .mp-faq__chevron {
    width: 26px;
    height: 26px;
    font-size: 0.6875rem;
  }
  .mp-faq__a {
    padding: 0 16px 16px;
    font-size: 0.875rem;
  }
}


/* ── ABOUT (intro in footer position) — Phase 8 ─────────────────────
 * The .mp-intro card now lives in the footer zone (moved from above-
 * grid where it was duplicating the page H1). Its margin reset by the
 * adjacent-sibling rule when it follows the divider; its own bottom
 * margin owns the gap to the next section. */
.mp-footer-break + .mp-intro {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .mp-footer-break + .mp-intro {
    margin-bottom: 24px;
  }
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mp-intro__guide-link a,
  .mp-faq__item,
  .mp-faq__chevron,
  .mp-howto__step,
  .mp-intro__guide-link-arrow,
  .mp-pagination__link {
    transition: none !important;
    animation: none !important;
  }
  .mp-intro__guide-link a:hover,
  .mp-pagination__link:hover {
    transform: none !important;
  }
}
