:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --white: #ffffff;
  --cyan: #00adef;
  --cyan-2: #25aae1;
  --cyan-deep: #0090c8;
  --header-top: #2199ca;
  --header-bottom: #25aae1;
  --join: #33c85d;
  --join-hover: #42d163;
  --gold-1: #ffdc50;
  --gold-2: #c88404;
  --text: #1a6f99;
  --text-dark: #145a7a;
  --muted: #5a90ad;
  --site: 1200px;
  --sans: "Noto Sans Thai", Arial, Helvetica, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.45;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.wrap {
  margin: 0 auto;
  max-width: var(--site);
  width: 100%;
}

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 200; }

.header-bottom {
  background: var(--header-bottom);
  box-shadow: 0 4px 14px rgba(0, 144, 200, 0.25);
  height: 64px;
}

.header-bottom .wrap {
  align-items: center;
  display: flex;
  gap: 14px;
  height: 64px;
  justify-content: space-between;
  padding: 0 12px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  flex-shrink: 0;
  height: 48px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.main-nav {
  display: flex;
  flex: 1;
  gap: 2px;
  justify-content: center;
  min-width: 0;
}

.main-nav a,
.main-nav a:link,
.main-nav a:visited {
  align-items: center;
  border-radius: 6px;
  color: #fff !important;
  display: flex;
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 36px;
  padding: 6px 4px;
  text-align: center;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

.auth-btns { display: flex; flex-shrink: 0; }

.btn-login {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  color: #fff;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  width: 108px;
}

.btn-login:hover { background: #fff; color: var(--header-top); }

.btn-join {
  align-items: center;
  background: linear-gradient(90deg, #00adef 0%, #5cc8f0 45%, #c8eefc 78%, #ffffff 100%);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: #145a7a;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  margin-left: 8px;
  padding: 0 10px;
  white-space: nowrap;
  width: 108px;
}

.btn-join:hover {
  filter: brightness(1.05);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 36px;
  justify-content: center;
  width: 40px;
}

.menu-toggle span {
  background: #fff;
  display: block;
  height: 2px;
  width: 18px;
}

/* ===== BANNER SLIDER ===== */
.banner-wrap {
  overflow: hidden;
  width: 100%;
}

.banner-slider {
  margin: 0 auto;
  max-width: var(--site);
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  width: 100%;
}

.banner-track {
  aspect-ratio: 2400 / 936;
  border-radius: 12px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.banner-slide {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.45s ease;
  visibility: hidden;
  width: 100%;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.banner-slide a {
  display: block;
  height: 100%;
  width: 100%;
}

.banner-slide picture {
  display: block;
  height: 100%;
  width: 100%;
}

.banner-slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.banner-dots {
  bottom: 14px;
  display: flex;
  gap: 7px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.banner-dots span {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 8px;
  width: 8px;
}

.banner-dots span.active {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 173, 239, 0.35);
}

/* ===== PAGE ===== */
.page {
  margin: 0 auto;
  max-width: var(--site);
  padding: 22px 12px 50px;
}

/* Slanted section titles like screenshot */
.section-title {
  align-items: center;
  background: linear-gradient(90deg, #00adef 0%, #5cc8f0 45%, #c8eefc 78%, #ffffff 100%);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
  margin: 26px 0 16px;
  min-width: 280px;
  padding: 12px 48px 12px 16px;
  text-transform: none;
}

.section-title .ico {
  font-size: 1.1rem;
}

/* Feature row — equal columns, locked vertical align */
.features {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 8px 0 6px;
  width: 100%;
}

.feature {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 68px 1fr;
  min-height: 76px;
  min-width: 0;
  padding: 0;
  width: 100%;
}

.feature-icon {
  align-items: center;
  align-self: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(190, 232, 252, 0.55) 70%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(0, 173, 239, 0.45);
  display: grid;
  height: 68px;
  justify-items: center;
  margin: 0;
  place-items: center;
  width: 68px;
}

.feature-icon svg {
  display: block;
  height: 32px;
  margin: 0;
  width: 32px;
}

.feature-text {
  align-self: center;
  color: var(--cyan);
  display: grid;
  font-size: 15px;
  font-weight: 700;
  grid-template-rows: 1.25em 1.25em;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}

.feature-text span {
  display: block;
  height: 1.25em;
  line-height: 1.25em;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
}

/* Ambassador + media image — equal left/right halves */
.amb-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 6px;
  width: 100%;
}

.amb-heading {
  color: var(--cyan);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.amb-people {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.amb-person {
  min-width: 0;
  text-align: center;
  width: 100%;
}

.amb-photo {
  aspect-ratio: 400 / 520;
  border-radius: 16px;
  display: block;
  height: auto;
  margin: 0 0 10px;
  object-fit: cover;
  width: 100%;
}

.amb-person strong {
  color: var(--cyan);
  display: block;
  font-size: 14px;
  font-weight: 800;
  text-transform: capitalize;
}

.amb-person small {
  color: var(--muted);
  font-size: 12px;
}

.amb-person a {
  display: block;
}

.amb-media {
  align-self: start;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 120, 170, 0.2);
  overflow: hidden;
  width: 100%;
}

.amb-media a {
  display: block;
  height: 100%;
  width: 100%;
}

.amb-media img {
  aspect-ratio: 900 / 560;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

/* Game gallery */
.game-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}

.game-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}

.game-card:hover {
  box-shadow: 0 12px 28px rgba(0, 173, 239, 0.3);
  transform: translateY(-4px);
}

.game-thumb {
  aspect-ratio: 3 / 4;
  background: #0a4a70;
  display: grid;
  overflow: hidden;
  place-items: end center;
  position: relative;
}

.game-thumb img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.game-thumb strong {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 28px 8px 12px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.rtp-tag {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  border-radius: 999px;
  color: #5a3a00;
  font-size: 10px;
  font-weight: 900;
  left: 8px;
  padding: 3px 8px;
  position: absolute;
  top: 8px;
  z-index: 2;
}

/* Update cards — CHỜ CẬP NHẬT */
.update-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 8px;
}

.update-card {
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
  border: 1px solid #cfd8de;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(20, 80, 110, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-height: 120px;
  padding: 18px 12px;
  text-align: center;
}

.update-card .diamond {
  color: #9aa7b2;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
}

.update-card strong {
  color: #7f8e99;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* TẢI APP section */
.app-download {
  align-items: center;
  background:
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.65), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(210, 239, 250, 0.4));
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.1fr 1fr;
  margin: 28px 0 10px;
  padding: 24px 18px;
}

.app-copy h2 {
  color: var(--cyan);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.app-copy p {
  color: #4a6f84;
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 34ch;
}

.app-phones {
  align-items: center;
  display: flex;
  justify-content: center;
}

.app-phones img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

.app-qr-col {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.qr-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qr-box {
  background:
    repeating-linear-gradient(0deg, #111 0 2px, #fff 2px 4px),
    repeating-linear-gradient(90deg, #111 0 2px, #fff 2px 4px);
  background-size: 10px 10px;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  height: 96px;
  width: 96px;
}

.dl-btn {
  background: var(--cyan);
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 9px 10px;
  text-align: center;
  width: 100%;
}

.dl-btn:hover { filter: brightness(1.06); }

.store-badge {
  background: #111;
  border-radius: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 10px;
  text-align: center;
  width: 100%;
}

.store-badge.apple { background: #000; }
.store-badge.google { background: #1a1a1a; }

/* Promo banners pair */
.promo-banners {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin: 22px 0 8px;
}

.promo-banner {
  background: linear-gradient(180deg, #f7fcff, #eaf7fd);
  border: 2px solid rgba(0, 173, 239, 0.35);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 180px;
  overflow: hidden;
  padding: 28px 18px 18px;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}

.promo-banner:hover {
  box-shadow: 0 12px 28px rgba(0, 173, 239, 0.2);
  transform: translateY(-2px);
}

.promo-logo {
  background: var(--cyan);
  border-radius: 0 0 14px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  left: 50%;
  padding: 6px 16px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.promo-copy {
  align-self: center;
  color: var(--cyan-deep);
  padding-right: 8px;
}

.promo-copy h3 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 8px;
}

.promo-copy p {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 800;
}

.promo-art {
  align-items: center;
  border-radius: 14px;
  display: flex;
  font-size: 3.2rem;
  justify-content: center;
}

.art-a {
  background: linear-gradient(160deg, #ffe29a, #ff8f3a 55%, #e33d2b);
  color: #fff;
  font-weight: 900;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.art-b {
  background: linear-gradient(160deg, #b8ecff, #4eb8e0 50%, #ff8a3d);
}

/* VIP / APP panels */
.two-col {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.panel {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 173, 239, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 144, 200, 0.08);
  padding: 20px;
}

.panel h3 {
  color: var(--cyan);
  font-size: 18px;
  margin-bottom: 8px;
}

.panel p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.btn-soft {
  align-items: center;
  background: linear-gradient(90deg, #00adef 0%, #5cc8f0 45%, #c8eefc 78%, #ffffff 100%);
  border: 1px solid rgba(0, 173, 239, 0.35);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  min-width: 120px;
  padding: 0 16px;
  text-shadow: 0 1px 1px rgba(0, 90, 130, 0.25);
  transition: filter 0.15s;
}

.btn-soft:hover {
  filter: brightness(1.04);
}

.app-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.app-btn {
  background: #112233;
  border-radius: 10px;
  color: #fff;
  min-width: 130px;
  padding: 10px 12px;
}

.app-btn small { display: block; font-size: 11px; opacity: 0.7; }
.app-btn strong { font-size: 14px; }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid #d9e6ee;
  padding: 28px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 1fr 1fr;
  margin: 0 auto 22px;
  max-width: var(--site);
  padding: 0 12px;
}

.footer-col h4 {
  color: var(--cyan);
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-col a,
.footer-col p {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-col a:hover { color: var(--cyan-deep); }

.footer-bar {
  border-bottom: 1px solid #d9e6ee;
  border-top: 1px solid #d9e6ee;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin: 0 auto 18px;
  max-width: var(--site);
  padding: 18px 12px;
}

.footer-bar-col h4 {
  color: #29abe2;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.icon-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.f-ico {
  align-items: center;
  color: #29abe2;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.f-ico svg {
  display: block;
  height: 26px;
  width: 26px;
}

.f-ico-text {
  border: 1.5px solid #29abe2;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  height: auto;
  letter-spacing: 0.02em;
  padding: 4px 7px;
  width: auto;
}

.f-ico-circle {
  border: 2px solid #29abe2;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  height: 30px;
  width: 30px;
}

.social-row { gap: 8px; }

.social {
  align-items: center;
  background: #29abe2;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  transition: filter 0.15s, transform 0.15s;
  width: 28px;
}

.social:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.copyright {
  color: #7aa8bd;
  font-size: 12px;
  margin: 0 auto;
  max-width: var(--site);
  padding: 0 12px;
  text-align: center;
}

.copyright strong { color: #29abe2; }

/* Article */
.article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 144, 200, 0.08);
  margin: 28px 0 8px;
  padding: clamp(18px, 3vw, 28px);
}

.article h1 {
  color: var(--cyan-deep);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
  text-align: center;
}

.article h2 {
  color: var(--cyan);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  margin: 24px 0 10px;
}

.article h3 {
  color: #1a6f99;
  font-size: 1rem;
  font-weight: 800;
  margin: 16px 0 8px;
}

.article p {
  color: #4a6f84;
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.article a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.article a:hover {
  color: var(--cyan-deep);
  text-decoration: underline;
}

/* Sub pages */
.sub-page {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 144, 200, 0.08);
  margin: 24px auto 40px;
  max-width: var(--site);
  padding: clamp(20px, 3vw, 32px);
  width: calc(100% - 24px);
}

.sub-page h1 {
  color: var(--cyan-deep);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
  text-align: center;
}

.sub-page h2 {
  color: var(--cyan);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  margin: 22px 0 10px;
}

.sub-page p,
.sub-page li {
  color: #4a6f84;
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.sub-page ul {
  margin: 0 0 14px 1.2rem;
}

.sub-page a {
  color: var(--cyan-deep);
  font-weight: 700;
}

.sub-page a:hover { color: var(--cyan); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  margin: 0 auto 12px;
  max-width: var(--site);
  padding: 0 12px;
}

.footer-nav a {
  color: #7aa8bd;
  font-size: 13px;
  font-weight: 600;
}

.footer-nav a:hover { color: var(--cyan-deep); }

a.btn-login {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

/* Floating + */
.fab {
  align-items: center;
  background: var(--cyan);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 0 0 6px rgba(0, 173, 239, 0.2), 0 10px 24px rgba(0, 144, 200, 0.35);
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 700;
  height: 54px;
  justify-content: center;
  position: fixed;
  right: 20px;
  text-decoration: none;
  width: 54px;
  z-index: 300;
}

@media (min-width: 1001px) and (max-width: 1180px) {
  .header-bottom .wrap { gap: 8px; }
  .main-nav a { font-size: 10px; padding: 6px 2px; }
  .brand-logo { height: 42px; max-height: 42px; }
  .btn-login,
  .btn-join { font-size: 12px; width: 100px; }
}

@media (max-width: 1000px) {
  .menu-toggle { display: flex; }
  .header-bottom .auth-btns { display: none; }
  .main-nav {
    background: var(--header-bottom);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 8px 10px 12px;
    position: absolute;
    right: 0;
    top: 64px;
  }
  .main-nav a {
    max-width: none;
    width: 100%;
  }
  .site-header.is-open .main-nav { display: flex; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .amb-row,
  .two-col,
  .footer-grid,
  .app-download,
  .promo-banners,
  .footer-bar { grid-template-columns: 1fr; }
  .update-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .banner-slider {
    padding: 0 12px;
  }

  .banner-track {
    aspect-ratio: 750 / 422;
    border-radius: 10px;
    width: 100%;
  }

  .banner-slide img {
    object-fit: cover;
    object-position: center center;
  }

  .page {
    padding-top: 16px;
  }

  .section-title {
    background: linear-gradient(90deg, #00adef 0%, #25aae1 100%);
    box-sizing: border-box;
    clip-path: none;
    display: flex;
    font-size: 15px;
    margin-left: -12px;
    margin-right: -12px;
    min-width: 0;
    padding: 12px 16px;
    width: calc(100% + 24px);
  }
}

@media (max-width: 640px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .features {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature {
    gap: 8px;
    grid-template-columns: 52px 1fr;
    min-height: 64px;
  }
  .feature-icon {
    height: 52px;
    width: 52px;
  }
  .feature-icon svg {
    height: 26px;
    width: 26px;
  }
  .feature-text {
    font-size: 12px;
    grid-template-rows: auto auto;
  }
  .amb-people { gap: 6px; }
}
