:root {
  --cvx-bg: #fff7e8;
  --cvx-ink: #251815;
  --cvx-night: #0b1020;
  --cvx-navy: #3b0709;
  --cvx-blue: #aa0712;
  --cvx-cyan: #27d6df;
  --cvx-orange: #e51f22;
  --cvx-orange-dark: #a80712;
  --cvx-gold: #f7c45a;
  --cvx-gold-deep: #d99725;
  --cvx-cream: #fff7e8;
  --cvx-paper: #ffffff;
  --cvx-muted: #76655f;
  --cvx-line: rgba(170, 7, 18, .18);
  --cvx-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  --cvx-max: 1180px;
  font-family: Inter, "Noto Sans Bengali", Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--cvx-ink);
  background: var(--cvx-bg);
  letter-spacing: 0;
}
body.cvx-page a { color: inherit; text-decoration: none; }
body.cvx-page img { display: block; max-width: 100%; height: auto; }
body.cvx-page h1, body.cvx-page h2, body.cvx-page h3, body.cvx-page p { margin: 0; overflow-wrap: anywhere; }
body.cvx-page p { line-height: 1.72; }
.cvx-shell { width: min(var(--cvx-max), calc(100% - 48px)); margin: 0 auto; }
.cvx-top {
  background: linear-gradient(180deg, #ffe7b8 0%, #ffd07f 100%);
  color: #5a0610;
  border-bottom: 1px solid rgba(170, 7, 18, .12);
}
.cvx-top-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cvx-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.cvx-mark {
  width: 58px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #8b000b 0%, #c50d19 100%);
  color: #fffdf0;
  font-weight: 950;
  font-size: 20px;
  border: 2px solid var(--cvx-gold);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 14px 30px rgba(0,0,0,.4);
}
.cvx-word { display: grid; gap: 2px; }
.cvx-word strong {
  font-size: 32px;
  line-height: .9;
  font-style: italic;
  font-weight: 950;
  color: #5a0610;
  text-shadow: 1px 2px 0 rgba(255,255,255,.36);
}
.cvx-word span {
  color: #7d1115;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.cvx-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cvx-pill {
  min-width: 132px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #f3262c 0%, #b80612 100%);
  box-shadow: 0 10px 26px rgba(170, 7, 18, .28);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.cvx-pill.alt {
  color: #fff;
  background: linear-gradient(180deg, #e51f22 0%, #8d0610 100%);
  box-shadow: 0 10px 26px rgba(170, 7, 18, .22);
}
.cvx-nav-wrap {
  background: #a80712;
  color: #fff7db;
  border-bottom: 3px solid var(--cvx-gold-deep);
}
.cvx-nav {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.cvx-nav::-webkit-scrollbar { display: none; }
.cvx-nav a {
  flex: 0 0 auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.cvx-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--cvx-gold);
}
.cvx-hero {
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 81, 34, .5), transparent 34%),
    linear-gradient(115deg, #530407 0%, #930912 45%, #e22a1b 100%);
  border-bottom: 1px solid rgba(247, 196, 90, .42);
}
.cvx-hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 74px 0 96px;
}
.cvx-hero-card {
  width: min(650px, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.cvx-hero h1 {
  font-size: 66px;
  line-height: .94;
  font-weight: 950;
  color: #ffffff;
  max-width: 540px;
  text-shadow: 0 6px 0 rgba(90, 6, 16, .45);
}
.cvx-hero p {
  margin-top: 24px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  font-weight: 650;
  max-width: 530px;
}
.cvx-hero-visual {
  overflow: hidden;
  border: 2px solid rgba(247, 196, 90, .72);
  background: rgba(68, 3, 8, .54);
  box-shadow: 0 28px 70px rgba(40, 0, 5, .42);
}
.cvx-hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.cvx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.cvx-button {
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffdf85 0%, #e8aa36 100%);
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(217,151,37,.28);
}
.cvx-button.gold {
  color: #fff8e2;
  background: linear-gradient(180deg, #8a0710 0%, #510408 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}
.cvx-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.cvx-proof div {
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(245, 200, 90, .28);
  background: rgba(255,255,255,.06);
  border-radius: 4px;
}
.cvx-proof b { display: block; color: var(--cvx-gold); font-size: 25px; line-height: 1; }
.cvx-proof span { display: block; margin-top: 8px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 850; }
.cvx-category-rail {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.cvx-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px;
  background: #fffdf7;
  border: 1px solid rgba(217, 151, 37, .5);
  box-shadow: 0 22px 54px rgba(91, 39, 5, .18);
  border-radius: 0;
}
.cvx-category {
  min-height: 94px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  color: #3a1c18;
  background: #fff4de;
  border: 1px solid rgba(217, 151, 37, .28);
  border-left: 4px solid var(--cvx-orange);
}
.cvx-category b { color: #7f0710; font-size: 13px; line-height: 1; width: 42px; height: 42px; display: grid; place-items: center; background: var(--cvx-gold); }
.cvx-category span { color: #7f0710; font-size: 13px; font-weight: 950; text-transform: uppercase; }
.cvx-category small { color: #76655f; line-height: 1.35; }
.cvx-overview {
  background: var(--cvx-cream);
  padding: 92px 0 84px;
}
.cvx-overview-layout {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 70px;
  align-items: center;
}
.cvx-section-label {
  color: var(--cvx-blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.cvx-overview h2, .cvx-news h2, .cvx-column h1 {
  margin-top: 12px;
  color: var(--cvx-blue);
  font-size: 44px;
  line-height: 1.14;
  font-weight: 950;
  max-width: 760px;
}
.cvx-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
}
.cvx-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 23, 35, .12);
  color: #514a41;
  line-height: 1.65;
}
.cvx-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--cvx-orange);
  box-shadow: 0 0 0 5px rgba(170,7,18,.12);
}
.cvx-image-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(155, 106, 22, .35);
  box-shadow: 0 24px 58px rgba(41, 24, 4, .18);
}
.cvx-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.cvx-image-caption {
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #8c0710, #4a0307);
}
.cvx-image-caption h3 { font-size: 22px; line-height: 1.18; font-weight: 950; }
.cvx-image-caption p { margin-top: 10px; color: rgba(255,255,255,.78); font-size: 14px; }
.cvx-showcase {
  background: #fff;
  padding: 78px 0;
  border-top: 1px solid rgba(17,23,35,.08);
  border-bottom: 1px solid rgba(17,23,35,.08);
}
.cvx-showcase-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.cvx-showcase-head h2 {
  margin-top: 12px;
  color: var(--cvx-blue);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 950;
}
.cvx-showcase-head p {
  margin-top: 14px;
  color: #62584b;
  font-size: 15px;
}
.cvx-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cvx-showcase-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(17,23,35,.1);
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(17,23,35,.07);
}
.cvx-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.cvx-showcase-card div {
  padding: 20px;
}
.cvx-showcase-card h3 {
  color: #120d08;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 950;
}
.cvx-showcase-card p {
  margin-top: 9px;
  color: #62584b;
  font-size: 14px;
}
.cvx-band {
  color: #fff;
  background: linear-gradient(180deg, rgba(93, 4, 8, .98), rgba(140, 7, 16, .98)), #5a0408;
  padding: 78px 0;
  border-top: 1px solid rgba(245, 200, 90, .16);
  border-bottom: 1px solid rgba(245, 200, 90, .16);
}
.cvx-band-head, .cvx-news-head {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}
.cvx-band h2 { font-size: 45px; line-height: 1.04; font-weight: 950; }
.cvx-band p { color: rgba(255,255,255,.72); font-size: 15px; }
.cvx-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cvx-step {
  min-height: 176px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(245,200,90,.2);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.cvx-step b { display: block; color: var(--cvx-gold); font-size: 30px; line-height: 1; margin-bottom: 30px; }
.cvx-step h3 { font-size: 18px; line-height: 1.2; font-weight: 950; }
.cvx-step p { margin-top: 10px; color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.55; }
.cvx-news, .cvx-column {
  background: var(--cvx-paper);
  padding: 82px 0 88px;
}
.cvx-news-head p { color: #62584b; font-size: 15px; }
.cvx-news-layout {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 24px;
  align-items: stretch;
}
.cvx-featured-news {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: #151013;
  color: #fff;
  border: 1px solid rgba(155, 106, 22, .32);
  box-shadow: 0 20px 44px rgba(41, 24, 4, .14);
}
.cvx-featured-media {
  position: relative;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(6,8,12,.06), rgba(6,8,12,.48)), url("/assets/cv666apk-guide.png") center / cover no-repeat;
}
.cvx-featured-media b {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #e51f22, #3b0709);
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 16px 28px rgba(0,0,0,.28);
}
.cvx-featured-copy {
  padding: 36px 32px;
  background: linear-gradient(145deg, #71121c, #170d12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.cvx-featured-copy small, .cvx-bottom-card small { color: var(--cvx-gold); font-weight: 950; text-transform: uppercase; }
.cvx-featured-copy h3 { font-size: 38px; line-height: 1.04; font-weight: 950; }
.cvx-featured-copy p { color: rgba(255,255,255,.76); font-size: 14px; }
.cvx-news-link {
  width: max-content;
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--cvx-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.cvx-side-news { display: grid; gap: 16px; }
.cvx-side-card, .cvx-column-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17,23,35,.08);
  box-shadow: 0 16px 34px rgba(17,23,35,.06);
}
.cvx-side-card b, .cvx-column-card b {
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(135deg, #a80712, #2f0708);
  font-size: 20px;
  font-weight: 950;
}
.cvx-side-card h3, .cvx-column-card h2 { color: #111723; font-size: 17px; line-height: 1.2; font-weight: 950; }
.cvx-side-card p, .cvx-column-card p { margin-top: 5px; color: #6a6256; font-size: 13px; line-height: 1.5; }
.cvx-news-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: #0b0d13;
  border: 1px solid rgba(245,200,90,.2);
}
.cvx-bottom-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  min-height: 118px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  color: #111723;
}
.cvx-bottom-card b {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 26px;
  font-weight: 950;
  background: linear-gradient(145deg, #a80712, #4d0508 64%, #f7c45a 100%);
}
.cvx-bottom-card div { padding: 20px 18px; }
.cvx-bottom-card h3 { margin-top: 8px; font-size: 17px; line-height: 1.16; font-weight: 950; }
.cvx-bottom-card p { margin-top: 8px; color: #6a6256; font-size: 12px; line-height: 1.45; }
.cvx-column-hero, .cvx-article-hero {
  color: #fff;
  background: linear-gradient(90deg, rgba(75,4,7,.94), rgba(146,8,16,.78)), url("/assets/cv666apk-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(245, 200, 90, .22);
}
.cvx-column-hero-inner, .cvx-article-hero-inner {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 58px 0;
}
.cvx-column-hero h1, .cvx-article-hero h1 {
  max-width: 820px;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 950;
}
.cvx-column-hero p, .cvx-article-hero p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  font-weight: 650;
}
.cvx-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.cvx-article-section {
  background: var(--cvx-paper);
}
.cvx-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  padding: 64px 0 78px;
}
.cvx-article, .cvx-article-side-card {
  border: 1px solid rgba(17,23,35,.12);
  border-radius: 8px;
  background: var(--cvx-paper);
  box-shadow: 0 18px 46px rgba(20, 12, 4, .1);
}
.cvx-article { padding: 42px; }
.cvx-article h1 { color: #120d08; font-size: 42px; line-height: 1.08; font-weight: 950; }
.cvx-article-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.cvx-article-meta span {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(155,106,22,.24);
  border-radius: 4px;
  color: #6a5140;
  background: #fff8e8;
  font-size: 13px;
  font-weight: 850;
}
.cvx-article-visual { margin: 0 0 30px; overflow: hidden; border-radius: 8px; background: #111; }
.cvx-article-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.cvx-article-body { color: #2b241d; font-size: 16px; line-height: 1.82; }
.cvx-article-body h2, .cvx-article-body h3 { margin: 30px 0 12px; color: #140d08; font-weight: 950; }
.cvx-article-body p, .cvx-article-body ul, .cvx-article-body ol { margin: 0 0 18px; }
.cvx-article-body a { color: var(--cvx-blue); font-weight: 850; }
.cvx-article-actions { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(17,23,35,.12); }
.cvx-article-actions ul { display: grid; gap: 10px; margin: 0; padding: 0; }
.cvx-article-actions li { list-style: none; color: #4c4037; font-weight: 750; }
.cvx-article-actions a { color: var(--cvx-blue); }
.cvx-article-side { display: grid; gap: 18px; }
.cvx-article-side-card { overflow: hidden; }
.cvx-side-visual { min-height: 190px; background: linear-gradient(180deg, rgba(7,9,13,.12), rgba(7,9,13,.58)), url("/assets/cv666apk-guide.png") center / cover no-repeat; }
.cvx-side-body { padding: 24px; }
.cvx-side-body h2, .cvx-side-body h3 { color: #140d08; font-size: 22px; line-height: 1.1; font-weight: 950; }
.cvx-side-body p, .cvx-side-body li { margin-top: 10px; color: #635a50; line-height: 1.62; font-size: 14px; }
.cvx-side-body ul { margin: 14px 0 0; padding-left: 18px; }
.cvx-footer {
  color: rgba(255,255,255,.74);
  background: #111113;
  border-top: 2px solid rgba(247, 196, 90, .78);
  padding: 34px 0;
  font-size: 13px;
}
.cvx-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cvx-footer strong { display: block; color: #fff; font-size: 16px; margin-bottom: 6px; }
.cvx-pagination { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.cvx-pagination li, .cvx-pagination a, .cvx-pagination span { display: inline-grid; min-height: 38px; place-items: center; padding: 0 12px; border-radius: 4px; background: #fff; border: 1px solid rgba(17,23,35,.12); color: #111723; }
@media (max-width: 980px) {
  .cvx-shell { width: min(var(--cvx-max), calc(100% - 32px)); }
  .cvx-top-inner { flex-direction: column; align-items: stretch; padding: 18px 0; }
  .cvx-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cvx-pill { min-width: 0; }
  .cvx-nav { justify-content: flex-start; gap: 28px; margin-inline: -16px; padding: 0 16px; scroll-padding-inline: 16px; }
  .cvx-hero-inner { min-height: 0; padding: 68px 0 96px; grid-template-columns: 1fr; }
  .cvx-hero-card { padding: 34px 28px; }
  .cvx-hero h1 { font-size: 48px; }
  .cvx-proof, .cvx-overview-layout, .cvx-band-head, .cvx-news-head, .cvx-news-layout, .cvx-featured-news, .cvx-footer-inner, .cvx-article-wrap, .cvx-column-grid { grid-template-columns: 1fr; }
  .cvx-category-grid { grid-template-columns: repeat(2, 1fr); }
  .cvx-step-grid, .cvx-news-bottom, .cvx-showcase-grid { grid-template-columns: 1fr; }
  .cvx-overview h2, .cvx-news h2, .cvx-band h2, .cvx-column h1, .cvx-showcase-head h2 { font-size: 34px; line-height: 1.16; }
  .cvx-footer-inner { display: grid; }
}
@media (max-width: 560px) {
  .cvx-shell { width: min(var(--cvx-max), calc(100% - 28px)); }
  .cvx-top-inner { min-width: 0; }
  .cvx-actions { grid-template-columns: 1fr; }
  .cvx-pill { width: 100%; }
  .cvx-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }
  .cvx-nav a {
    min-height: 44px;
    justify-content: center;
    padding: 0 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
    font-size: 12px;
  }
  .cvx-nav a.is-active::after { left: 18px; right: 18px; }
  .cvx-word strong { font-size: 28px; }
  .cvx-mark { width: 52px; height: 52px; }
  .cvx-hero {
    background: radial-gradient(circle at 80% 10%, rgba(255, 81, 34, .34), transparent 42%), linear-gradient(115deg, #530407 0%, #930912 48%, #d82118 100%);
  }
  .cvx-hero-card { width: 100%; max-width: 100%; padding: 28px; }
  .cvx-hero h1 { font-size: 34px; }
  .cvx-article { padding: 28px; }
  .cvx-article h1, .cvx-article-hero h1, .cvx-column-hero h1 { font-size: 34px; }
  .cvx-overview h2, .cvx-news h2, .cvx-band h2, .cvx-column h1, .cvx-showcase-head h2 { font-size: 30px; line-height: 1.18; }
  .cvx-hero p { font-size: 14px; max-width: 100%; }
  .cvx-cta-row { display: grid; }
  .cvx-category-grid { grid-template-columns: 1fr; }
  .cvx-overview, .cvx-news, .cvx-column, .cvx-showcase { padding: 64px 0; }
  .cvx-band { padding: 64px 0; }
  .cvx-side-card, .cvx-bottom-card, .cvx-column-card { grid-template-columns: 1fr; }
  .cvx-side-card b, .cvx-column-card b { width: 64px; }
}
