@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400;1,8..60,600&display=swap');
@import url('https://fonts.cdnfonts.com/css/redaction');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700&display=swap');

/* ==========================================================================
   ESMERY DESIGN SYSTEM - TOKENS & VARIABLES
   ========================================================================== */
:root {
  --bg: #ffffff;
  --card: #f2f2f3;
  --deep: #e4e4e5;
  --text: #17191c;
  --body: #777b86;
  --tag: #979799;
  --faint: #a3a6af;
  --line: #17191c;
  --card-line: transparent;
  --hair: #ececec;
  --hello-filter: invert(1);
  --hello-blend: multiply;
  --logo-filter: none;
  --grad: rgba(255, 255, 255, 0.9);
  --btn-bg: #17191c;
  --btn-text: #ffffff;
  --btn-hover: #000000;
  --ghost-r: 9999px;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --backdrop: rgba(23, 25, 28, 0.45);
  --modal-bg: #ffffff;
  --modal-line: transparent;
  --footer-line: #ececec;
  --footer-bg: #fafafb;
  --font-display: 'Source Serif 4', serif;
  --font-display-em: 'Source Serif 4', serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --shadow-artifact: 0 0 0 1px rgba(4, 23, 43, 0.05), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --spark-a: #5d2a1a;
  --chart-a: #a3a6af;
  --chart-b: #5d2a1a;
  --delta: #5d2a1a;
  --pill-line: #979799;
  --pill-text: #17191c;
  --error: #b44233;
  --fab-logo-filter: invert(1);
}

body[data-esm-theme="dark"] {
  --bg: #000000;
  --card: #191919;
  --deep: #303030;
  --text: #eeeeee;
  --body: #b4b4b4;
  --tag: #7b7b7b;
  --faint: #606060;
  --line: #b4b4b4;
  --card-line: #303030;
  --hair: #303030;
  --hello-filter: none;
  --hello-blend: screen;
  --logo-filter: invert(1);
  --grad: rgba(0, 0, 0, 0.72);
  --btn-bg: #eeeeee;
  --btn-text: #050505;
  --btn-hover: #ffffff;
  --ghost-r: 10px;
  --nav-bg: rgba(0, 0, 0, 0.8);
  --backdrop: rgba(0, 0, 0, 0.82);
  --modal-bg: #191919;
  --modal-line: #383838;
  --footer-line: #606060;
  --footer-bg: transparent;
  --font-display: 'Redaction 10', serif;
  --font-display-em: 'Redaction 50', serif;
  --font-body: 'Geist', sans-serif;
  --shadow-artifact: none;
  --spark-a: #fbe1d1;
  --chart-a: #b4b4b4;
  --chart-b: #fbe1d1;
  --delta: #fbe1d1;
  --pill-line: #b4b4b4;
  --pill-text: #b4b4b4;
  --error: #e06050;
  --fab-logo-filter: none;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--tag);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

a:hover {
  color: var(--text);
}

::selection {
  background: var(--deep);
  color: var(--text);
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--line);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  margin: 0;
}

h1 em, h2 em, h3 em {
  font-family: var(--font-display-em);
  font-style: italic;
  font-weight: 400;
}

img, video {
  max-width: 100%;
  height: auto;
  transform: translateZ(0);
}

.wwd-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

#projects, .esm-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes esm-liq-en {
  0%   { transform: translateX(0) scaleX(1) scaleY(1); }
  28%  { transform: translateX(9px) scaleX(1.42) scaleY(0.90); }
  62%  { transform: translateX(40px) scaleX(1.22) scaleY(0.93); }
  86%  { transform: translateX(46px) scaleX(0.965) scaleY(1.015); }
  100% { transform: translateX(46px) scaleX(1) scaleY(1); }
}

@keyframes esm-liq-vi {
  0%   { transform: translateX(46px) scaleX(1) scaleY(1); }
  28%  { transform: translateX(37px) scaleX(1.42) scaleY(0.90); }
  62%  { transform: translateX(6px) scaleX(1.22) scaleY(0.93); }
  86%  { transform: translateX(0) scaleX(0.965) scaleY(1.015); }
  100% { transform: translateX(0) scaleX(1) scaleY(1); }
}

@keyframes esmFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes esmSlideL {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes esmSlideR {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes esmPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

@keyframes esm-pre-logo {
  from { opacity: 0; filter: blur(12px) brightness(0.1); }
  to   { opacity: 1; filter: blur(0) brightness(1); }
}

@keyframes esm-pre-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes esm-pre-text {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .esm-pre, .esm-pre * {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}

html.esm-skip-preloader #esm-preloader {
  display: none !important;
}

/* ==========================================================================
   NAVIGATION BAR (UNIVERSAL NAVBAR)
   ========================================================================== */
.esm-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.esm-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.esm-nav-logo {
  display: inline-flex;
  align-items: center;
}

.esm-nav-logo img {
  height: 32px;
  width: auto;
  filter: var(--logo-filter);
  transition: filter 0.3s ease;
}

.esm-theme-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 9999px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: var(--font-body);
  padding: 0;
  justify-self: center;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.esm-theme-btn:hover {
  transform: scale(1.08);
}

.esm-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

/* Language Switcher Pill */
.esm-lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 2px;
  gap: 2px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.esm-lang-toggle:hover {
  border-color: var(--text);
  background: var(--card);
}

.esm-lang-blob {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: 44px;
  border-radius: 9999px;
  background: var(--btn-bg);
  pointer-events: none;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-esm-lang="en"] .esm-lang-blob {
  transform: translateX(46px);
}

body[data-esm-lang="vi"] .esm-lang-blob {
  transform: translateX(0);
}

.esm-lang-item {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  width: 44px;
  padding: 5px 0;
  text-align: center;
  border-radius: 9999px;
  transition: color 0.35s ease 0.1s;
}

body[data-esm-lang="vi"] .esm-lang-vi {
  color: var(--btn-text);
}
body[data-esm-lang="vi"] .esm-lang-en {
  color: var(--body);
}
body[data-esm-lang="en"] .esm-lang-vi {
  color: var(--body);
}
body[data-esm-lang="en"] .esm-lang-en {
  color: var(--btn-text);
}

.esm-cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--btn-text);
  background: var(--btn-bg);
  border: none;
  border-radius: 9999px;
  padding: 10px 20px;
  min-width: 118px;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.esm-cta-btn:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-1px);
}

/* ==========================================================================
   CARDS & HOVER EFFECTS
   ========================================================================== */
.wwd-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s ease;
}

.wwd-card .wwd-visual {
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.wwd-card:hover .wwd-visual {
  transform: scale(1.035);
}

.wwd-card .wwd-cta {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.wwd-card:hover .wwd-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HERO VIDEO CONTAINER
   ========================================================================== */
#esm-hero-video {
  opacity: 0;
  transition: opacity 0.45s ease;
}

body[data-esm-theme="dark"] #esm-hero-video {
  opacity: 1;
}

#esm-hero-video-light {
  opacity: 1;
  transition: opacity 0.45s ease;
}

body[data-esm-theme="dark"] #esm-hero-video-light {
  opacity: 0;
}

.esm-hv-pc {
  display: block;
}

.esm-hv-mb {
  display: none;
}

@media (max-width: 768px) {
  .esm-hv-pc {
    display: none;
  }
  .esm-hv-mb {
    display: block;
  }
}

/* ==========================================================================
   UNIVERSAL FOOTER
   ========================================================================== */
.esm-footer {
  border-top: 1px solid var(--footer-line);
  background: var(--footer-bg);
  margin-top: 60px;
}

.esm-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.esm-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.esm-footer-brand img {
  height: 64px;
  max-width: 100%;
  object-fit: contain;
  object-position: left;
  filter: var(--logo-filter);
}

.esm-footer-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--tag);
  max-width: 320px;
}

.esm-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.esm-footer-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.esm-footer-col a {
  font-size: 14px;
  color: var(--tag);
}

.esm-footer-col a:hover {
  color: var(--text);
}

.esm-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 32px;
  font-size: 12px;
  color: var(--faint);
}

/* ==========================================================================
   BACK TO TOP FLOATING BUTTON
   ========================================================================== */
.esm-fab-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: none;
  background: var(--btn-bg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.25s ease, opacity 0.3s ease;
}

.esm-fab-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.esm-fab-top:active {
  transform: scale(0.94);
}

.esm-fab-top img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: var(--fab-logo-filter);
  pointer-events: none;
}

/* ==========================================================================
   CONSULTATION BOOKING MODAL & DETAIL MODAL
   ========================================================================== */
.esm-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--backdrop);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 48px 20px;
  display: none;
  justify-content: center;
  animation: esmFade 0.2s ease;
}

.esm-modal-backdrop.active {
  display: flex;
}

.esm-modal-card {
  background: var(--modal-bg);
  border: 1px solid var(--modal-line);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  box-shadow: var(--shadow-artifact);
  align-self: flex-start;
  overflow: hidden;
  position: relative;
}

.esm-service-chip {
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--text);
  border-radius: 9999px;
  padding: 8px 16px;
  min-height: 36px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.esm-service-chip.selected {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-color: var(--btn-bg);
}

/* ==========================================================================
   RESPONSIVE LAYOUT & MOBILE OPTIMIZATION
   ========================================================================== */

/* Tablet & Smaller Desktops */
@media (max-width: 1024px) {
  .esm-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
  /* Global reset for mobile */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* Typography flow & text wrapping */
  h1, h2, h3, h4 {
    text-wrap: balance;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  p {
    text-wrap: pretty;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Remove unnatural hard breaks on narrow screens */
  h1 br, h2 br, h3 br {
    display: inline !important;
  }

  /* Main containers */
  main {
    padding: 36px 18px 60px !important;
    gap: 36px !important;
  }

  /* Navbar */
  .esm-nav-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 60px !important;
    padding: 0 16px !important;
    gap: 8px !important;
  }

  .esm-nav-logo img {
    height: 26px !important;
  }

  .esm-theme-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
  }

  .esm-nav-actions {
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  .esm-lang-toggle {
    padding: 2px !important;
    gap: 1px !important;
  }

  .esm-lang-blob {
    width: 34px !important;
    top: 2px !important;
    bottom: 2px !important;
    left: 2px !important;
  }

  body[data-esm-lang="en"] .esm-lang-blob {
    transform: translateX(35px) !important;
  }

  .esm-lang-item {
    width: 34px !important;
    font-size: 11px !important;
    padding: 4px 0 !important;
  }

  .esm-cta-btn {
    min-width: auto !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  /* Hero & Homepage Sections */
  #top {
    min-height: 65vh !important;
  }

  #top > div {
    padding: 40px 16px 28px !important;
    gap: 18px !important;
  }

  #top h1 {
    font-size: clamp(28px, 7.5vw, 42px) !important;
    line-height: 1.18 !important;
  }

  #intro {
    padding: 48px 16px 24px !important;
    gap: 14px !important;
  }

  #intro img {
    width: min(300px, 72vw) !important;
  }

  #intro h2 {
    font-size: 28px !important;
  }

  #projects {
    padding: 32px 16px 60px !important;
  }

  /* Cards on Mobile */
  .wwd-card {
    border-radius: 20px !important;
  }

  .wwd-card .wwd-visual {
    height: 300px !important;
    max-height: 320px !important;
  }

  .wwd-card .wwd-cta {
    opacity: 1 !important;
    transform: none !important;
    font-size: 13px !important;
  }

  .wwd-card > div[style*="position:absolute"][style*="bottom:0"] {
    padding: 18px 20px !important;
  }

  /* Campaign Page & Cards */
  #esm-campaign-list > button,
  #esm-campaign-list .wwd-card {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
  }

  #esm-campaign-list .esm-campaign-visual-wrap,
  #esm-campaign-list .esm-campaign-card > div:first-child {
    min-height: 220px !important;
    height: 220px !important;
    width: 100% !important;
  }

  #esm-campaign-list .wwd-visual {
    height: 100% !important;
    min-height: 100% !important;
    width: 100% !important;
  }

  #esm-campaign-list .wwd-card > div:last-child {
    padding: 22px 18px !important;
    gap: 14px !important;
  }

  #esm-campaign-list [style*="grid-template-columns:repeat(4, 1fr)"],
  #esm-campaign-list [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 14px !important;
    padding-top: 14px !important;
  }

  /* Gallery Grids (Design, Website, AI Video) */
  #esm-design-gallery,
  #esm-website-gallery,
  section[style*="grid-template-columns:repeat(auto-fit, minmax(320px, 1fr))"],
  section[style*="grid-template-columns: repeat(auto-fit, minmax(320px, 1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  #esm-design-gallery .wwd-visual,
  #esm-website-gallery .wwd-visual {
    height: 280px !important;
  }

  #esm-inhouse-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Modals (Universal & Detail) */
  .esm-modal-backdrop {
    padding: 16px 10px !important;
  }

  .esm-modal-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
    max-width: 100% !important;
  }

  .esm-modal-card [style*="position:sticky"] {
    top: -20px !important;
    padding: 20px 0 12px !important;
    margin: -20px 0 0 !important;
  }

  #esm-cmodal-title,
  #esm-dmodal-title,
  #esm-wmodal-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  #esm-cmodal-hero > div,
  #esm-dmodal-hero > div,
  #esm-wmodal-hero > div {
    height: 200px !important;
    margin: 20px 0 !important;
  }

  /* Detail Modal Rows (convert 220px 1fr to stacked 1fr) */
  .esm-modal-card [style*="grid-template-columns:220px 1fr"],
  .esm-modal-card [style*="grid-template-columns: 220px 1fr"],
  #esm-cmodal-sections > div,
  #esm-dmodal-sections > div,
  #esm-wmodal-sections > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-top: 16px !important;
  }

  #esm-cmodal-exec,
  #esm-dmodal-work {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  #esm-cmodal-exec > div,
  #esm-dmodal-work > div {
    height: 130px !important;
  }

  /* Consultation Booking Modal Form */
  .esm-modal-card [style*="grid-template-columns:1fr 1fr"],
  .esm-modal-card [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .esm-modal-card [style*="grid-template-columns:120px 1fr"],
  .esm-modal-card [style*="grid-template-columns: 120px 1fr"] {
    grid-template-columns: 84px 1fr !important;
    gap: 8px !important;
    padding: 8px 0 !important;
    font-size: 13px !important;
  }

  .esm-modal-card input,
  .esm-modal-card textarea {
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
    padding: 10px 12px !important;
    border-radius: 12px !important;
  }

  .esm-service-chip {
    padding: 6px 12px !important;
    font-size: 12px !important;
    min-height: 32px !important;
  }

  /* Report Page & KPI Grid */
  section[style*="grid-template-columns:repeat(auto-fit, minmax(240px, 1fr))"],
  section[style*="grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  section[style*="grid-template-columns:repeat(auto-fit, minmax(240px, 1fr))"] article,
  section[style*="grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))"] article {
    padding: 16px !important;
    border-radius: 16px !important;
    gap: 6px !important;
  }

  section[style*="grid-template-columns:repeat(auto-fit, minmax(240px, 1fr))"] span[style*="font-size:32px"],
  section[style*="grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))"] span[style*="font-size:32px"] {
    font-size: 24px !important;
  }

  /* Footer */
  .esm-footer {
    margin-top: 40px !important;
  }

  .esm-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 40px 18px 24px !important;
  }

  .esm-footer-bottom {
    padding: 0 18px 24px !important;
  }

  /* Back to top FAB */
  .esm-fab-top {
    width: 46px !important;
    height: 46px !important;
    right: 16px !important;
    bottom: 16px !important;
  }

  .esm-fab-top img {
    width: 26px !important;
    height: 26px !important;
  }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 400px) {
  .esm-nav-inner {
    padding: 0 12px !important;
  }

  .esm-cta-btn {
    padding: 7px 11px !important;
    font-size: 12px !important;
  }

  .esm-theme-btn {
    width: 30px !important;
    height: 30px !important;
  }

  section[style*="grid-template-columns:repeat(auto-fit, minmax(240px, 1fr))"],
  section[style*="grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }
}
