:root {
  --c-dark: #1F222E;
  --c-dark-2: #15171F;
  --c-green: #6AC340;
  --c-green-600: #59aa33;
  --c-green-700: #4c9a2a;
  --c-bg: #6AC340;
  --c-box: #ffffff;
  --c-box-alt: #f4f7f2;
  --c-ink: #1a1d27;
  --c-ink-soft: #4a4f5e;
  --c-line: #e3e8e0;
  --c-light: #f2f6ef;
  --c-gold: #f2c14e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(21, 23, 31, 0.14);
  --shadow-soft: 0 4px 14px rgba(21, 23, 31, 0.10);
  --maxw: 1180px;
  --gap: 22px;
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: var(--c-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body.fixed { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }

a { color: var(--c-dark-2); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--c-green-700); }

h1, h2, h3, h4 { font-family: var(--font); font-weight: 800; line-height: 1.25; color: var(--c-ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 18px; }
h2 { font-size: clamp(22px, 3vw, 30px); margin: 8px 0 18px; }
h3 { font-size: clamp(18px, 2.2vw, 22px); margin-bottom: 10px; }
p { margin-bottom: 14px; }

.wrapper { width: 100%; min-height: 100vh; display: flex; flex-direction: column; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  background: var(--c-box);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  margin: 18px 0;
}

main { flex: 1 0 auto; }

.blk_r3x9 {
  background: var(--c-box);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px;
  margin: 22px 0;
  animation: fadeUp .55s ease both;
}

.blk_r3x9 > h2 { display: flex; align-items: center; gap: 10px; }
.blk_r3x9 .ic { width: 24px; height: 24px; flex: 0 0 24px; color: var(--c-green-700); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(106,195,64,.5); } 50% { box-shadow: 0 0 0 10px rgba(106,195,64,0); } }
@keyframes shimmer_u2 { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes blinkDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-family: var(--font);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--md { padding: 12px 20px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--c-green); color: var(--c-dark-2); box-shadow: 0 6px 16px rgba(106,195,64,.4); }
.btn--primary:hover { background: var(--c-green-600); color: var(--c-dark-2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(106,195,64,.5); }

.btn--secondary { background: var(--c-dark-2); color: #fff; }
.btn--secondary:hover { background: #0e1017; color: #fff; transform: translateY(-2px); }

.btn--bonus {
  background: var(--c-gold);
  color: var(--c-dark-2);
  animation: pulseGlow 2.2s infinite;
}
.btn--bonus:hover { background: #eeb531; color: var(--c-dark-2); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

.header {
  background: var(--c-dark);
  color: #f4f6fb;
  padding: 14px 22px;
  border-radius: var(--radius);
}
.hdr_row9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hdr__logo img { height: 42px; width: auto; }
.hdr__logo { display: inline-flex; align-items: center; }

.hdr__nav_a7 { display: flex; align-items: center; gap: 6px; }
.hdr__nav_a7 a {
  color: #dfe3ee;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hdr__nav_a7 a:hover { color: #fff; background: rgba(255,255,255,.08); }
.hdr__nav_a7 a .ic { width: 18px; height: 18px; color: var(--c-green); }

.hdr__right { display: flex; align-items: center; gap: 12px; }

.olc_9z {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cfd6e6;
  background: rgba(255,255,255,.06);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.09);
}
.olc_9z .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 3px rgba(106,195,64,.25);
  animation: blinkDot 1.6s infinite;
}
.olc_9z b { color: #fff; }

.hdr__btns { display: flex; align-items: center; gap: 10px; }
.hdr__btns_mobile { display: none; }

.brg_x2 {
  display: none;
  width: 44px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.brg_x2 span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.brg_x2.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.brg_x2.active span:nth-child(2) { opacity: 0; }
.brg_x2.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero_q71 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 18px 0;
  box-shadow: var(--shadow);
  min-height: 340px;
  display: flex;
  align-items: center;
  background: var(--c-dark);
}
.hero_q71::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(20,23,31,.92) 0%, rgba(20,23,31,.6) 45%, rgba(20,23,31,.2) 100%), url("/hero-banner.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; padding: 40px 42px; max-width: 640px; color: #fff; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(106,195,64,.16);
  color: var(--c-green);
  border: 1px solid rgba(106,195,64,.4);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  margin-bottom: 16px;
}
.hero__title { color: #fff; font-size: clamp(28px, 5vw, 46px); margin-bottom: 14px; }
.hero__title span { color: var(--c-green); }
.hero__sub { color: #dfe3ee; font-size: clamp(15px, 2vw, 18px); margin-bottom: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta { display: flex; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.hero__meta div { font-size: 13px; color: #cfd6e6; }
.hero__meta b { display: block; color: #fff; font-size: 18px; }

.bcr_m4 {
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  padding: 10px 20px;
  margin: 14px 0;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}
.bcr_m4 ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.bcr_m4 li { display: inline-flex; align-items: center; gap: 6px; color: var(--c-ink-soft); }
.bcr_m4 li + li::before { content: "›"; color: var(--c-ink-soft); margin-right: 6px; }
.bcr_m4 a { color: var(--c-green-700); font-weight: 600; }
.bcr_m4 [aria-current] { color: var(--c-ink); font-weight: 700; }

.toc__list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.toc__list a {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-box-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--c-ink);
  font-weight: 600;
  font-size: 14px;
}
.toc__list a:hover { border-color: var(--c-green); background: #eef6e9; transform: translateX(3px); }
.toc__list .ic { width: 20px; height: 20px; color: var(--c-green-700); flex: 0 0 20px; }

.pnc_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pnc_col { border-radius: var(--radius-sm); padding: 20px; border: 1px solid var(--c-line); }
.pnc_col--pro { background: #eef8e8; border-color: #cbe6b8; }
.pnc_col--con { background: #fdeef0; border-color: #f2cbd1; }
.pnc_col h3 { display: flex; align-items: center; gap: 10px; }
.pnc_col--pro h3 { color: #35761c; }
.pnc_col--con h3 { color: #b23342; }
.pnc_col ul { list-style: none; margin-top: 8px; }
.pnc_col li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 15px; }
.pnc_col li .ic { position: absolute; left: 0; top: 2px; width: 20px; height: 20px; }
.pnc_col--pro .ic { color: #4c9a2a; }
.pnc_col--con .ic { color: #d2586a; }

.win_wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); }
table.win_tbl {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  margin: 0 auto;
  text-align: left;
}
table.win_tbl caption { caption-side: top; text-align: left; color: var(--c-ink-soft); font-size: 13px; margin-bottom: 10px; }
table.win_tbl th, table.win_tbl td {
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  font-size: 14px;
}
table.win_tbl thead th { background: var(--c-dark); color: #fff; font-weight: 700; }
table.win_tbl tbody tr:nth-child(even) { background: var(--c-box-alt); }
table.win_tbl tbody tr:hover { background: #eef6e9; }
table.win_tbl .rank { font-weight: 800; color: var(--c-green-700); width: 60px; }
table.win_tbl .amount { font-weight: 800; color: var(--c-dark); text-align: right; }
.win_tbl .medal { color: var(--c-gold); }

.trn_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.trn_card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf3 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.trn_card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trn_card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.trn_card h3 { font-size: 17px; margin: 0; }
.trn_tag { font-size: 11px; font-weight: 700; background: rgba(106,195,64,.16); color: var(--c-green-700); padding: 4px 9px; border-radius: 999px; }
.trn_card p { font-size: 13.5px; color: var(--c-ink-soft); margin: 0; flex: 1; }
.trn_prize { font-weight: 800; color: var(--c-dark); font-size: 20px; }
.trn_prize small { display: block; font-size: 11px; color: var(--c-ink-soft); font-weight: 600; }
.trn_timer { display: flex; gap: 8px; }
.trn_timer .seg { background: var(--c-dark); color: #fff; border-radius: 8px; padding: 7px 0; text-align: center; flex: 1; }
.trn_timer .seg b { display: block; font-size: 18px; line-height: 1; }
.trn_timer .seg small { font-size: 10px; opacity: .7; text-transform: uppercase; letter-spacing: .04em; }

.gms_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.gms_card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-box);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gms_card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gms_thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--c-dark-2); }
.gms_thumb img { width: 100%; height: 100%; object-fit: cover; }
.gms_prov { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 700; background: rgba(20,23,31,.75); color: #fff; padding: 3px 8px; border-radius: 999px; }
.gms_body { padding: 12px; }
.gms_body h3 { font-size: 15px; margin-bottom: 10px; }

.slider_scroll { display: none; }

.faq_item { border: 1px solid var(--c-line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--c-box); }
.faq_item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 50px 16px 18px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  color: var(--c-ink);
}
.faq_item summary::-webkit-details-marker { display: none; }
.faq_item summary::after {
  content: "+";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-green); color: var(--c-dark-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; transition: transform .25s ease;
}
.faq_item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq_item .faq_ans { padding: 0 18px 18px; color: var(--c-ink-soft); font-size: 15px; }

.aut_card { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.aut_photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--c-green); flex: 0 0 96px; }
.aut_body { flex: 1; min-width: 220px; }
.aut_body h3 { margin-bottom: 2px; }
.aut_role { color: var(--c-green-700); font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.aut_meta { font-size: 13px; color: var(--c-ink-soft); margin-top: 12px; display: flex; flex-wrap: wrap; gap: 16px; }
.aut_social { display: flex; gap: 10px; margin-top: 12px; }
.aut_social a { width: 38px; height: 38px; border-radius: 10px; background: var(--c-dark-2); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.aut_social a:hover { background: var(--c-green); color: var(--c-dark-2); transform: translateY(-2px); }
.aut_social .ic { width: 18px; height: 18px; }

.rev_body { line-height: 1.7; }
.rev_body h2 { margin-top: 26px; }
.rev_body h3 { margin-top: 20px; }
.rev_body p { margin-bottom: 16px; }
.rev_body ul, .rev_body ol { margin: 0 0 16px 22px; }
.rev_body li { margin-bottom: 8px; }
.rev_body a { color: var(--c-green-700); font-weight: 600; text-decoration: underline; }
.rev_body blockquote {
  border-left: 4px solid var(--c-green);
  background: var(--c-box-alt);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0 0 16px;
  font-style: italic;
  color: var(--c-ink-soft);
}
.rev_body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 18px;
  display: block;
  overflow-x: auto;
}
.rev_body table th, .rev_body table td { border: 1px solid var(--c-line); padding: 10px 14px; text-align: left; font-size: 14px; }
.rev_body table th { background: var(--c-dark); color: #fff; }
.rev_body table tr:nth-child(even) td { background: var(--c-box-alt); }
.rev_body img { border-radius: var(--radius-sm); margin: 0 auto 16px; }
.rev_body h1 { font-size: clamp(24px, 3.5vw, 34px); }

.footer {
  background: var(--c-dark);
  color: #cfd6e6;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 34px 26px 22px;
  margin-top: 22px;
}
.ftr_grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 26px; }
.ftr_logo img { height: 40px; margin-bottom: 12px; }
.ftr_col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.ftr_col ul { list-style: none; }
.ftr_col li { margin-bottom: 9px; }
.ftr_col a { color: #b9c1d4; font-size: 14px; }
.ftr_col a:hover { color: var(--c-green); }
.ftr_flag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #cfd6e6; margin-bottom: 12px; }
.ftr_flag img { height: 18px; width: auto; border-radius: 2px; }
.ftr_logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 8px 0; }
.ftr_logos span {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: #cfd6e6;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
}
.ftr_section { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin-top: 22px; }
.ftr_section h4 { color: #fff; font-size: 13px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; opacity: .8; }
.ftr_social { display: flex; gap: 10px; margin: 10px 0; }
.ftr_social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.ftr_social a:hover { background: var(--c-green); color: var(--c-dark-2); }
.ftr_social .ic { width: 18px; height: 18px; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin-top: 22px; font-size: 12.5px; color: #9aa3b8; }
.copyright a { color: #b9c1d4; }
.copyright p { margin-bottom: 8px; }
.age_badge { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--c-green); color: var(--c-green); font-weight: 800; font-size: 13px; margin-right: 10px; vertical-align: middle; }

.wgt_z0 {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--c-dark);
  border-top: 2px solid var(--c-green);
  box-shadow: 0 -6px 24px rgba(0,0,0,.28);
  transform: translateY(0);
  transition: transform .35s ease;
}
.wgt_z0.hide { transform: translateY(110%); }
.wgt_inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.wgt_text { color: #fff; font-size: 14px; line-height: 1.35; }
.wgt_text b { color: var(--c-green); }
.wgt_text .amt { color: var(--c-gold); }
.wgt_right { display: flex; align-items: center; gap: 10px; }
.wgt_close {
  background: transparent; border: 0; color: #9aa3b8; cursor: pointer;
  font-size: 22px; line-height: 1; padding: 4px 8px;
}
.wgt_close:hover { color: #fff; }
.wgt_link { text-decoration: none !important; }

.info_body { line-height: 1.7; }
.info_body h2 { margin-top: 24px; }
.info_body p { margin-bottom: 14px; }
.info_body ul { margin: 0 0 14px 22px; }
.info_body li { margin-bottom: 8px; }
.info_body a { color: var(--c-green-700); font-weight: 600; text-decoration: underline; }

.text-center { text-align: center; }
.mt1 { margin-top: 12px; }
.mb1 { margin-bottom: 12px; }
.muted { color: var(--c-ink-soft); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.hl_shine {
  background: linear-gradient(90deg, var(--c-green) 25%, #a4e17f 50%, var(--c-green) 75%);
  background-size: 200% 100%;
  animation: shimmer_u2 2.4s linear infinite;
}
.chip_row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip { background: var(--c-box-alt); border: 1px solid var(--c-line); border-radius: 999px; padding: 6px 12px; font-size: 12.5px; font-weight: 600; color: var(--c-ink-soft); }
.float_x { animation: floaty 4s ease-in-out infinite; }

@media (max-width: 900px) {
  .ftr_grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hdr__nav_a7 {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(82vw, 320px);
    background: var(--c-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 78px 18px 24px;
    gap: 4px;
    transform: translateX(105%);
    transition: transform .3s ease;
    z-index: 80;
    box-shadow: -10px 0 30px rgba(0,0,0,.35);
    overflow-y: auto;
  }
  .hdr__nav_a7.active { transform: translateX(0); }
  .hdr__nav_a7 a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .brg_x2 { display: flex; z-index: 90; }
  .olc_9z { display: none; }
  .hdr__btns { display: none; }
  .hdr__btns_mobile { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
  .hdr__btns_mobile .btn { width: 100%; text-align: center; }
  .header { padding: 12px 16px; }
  .hdr__logo img { height: 34px; }
  .nav_overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 70;
  }
  .nav_overlay.active { opacity: 1; pointer-events: auto; }
  .hero__inner { padding: 30px 22px; }
}

@media (max-width: 720px) {
  .pnc_grid { grid-template-columns: 1fr; }
  .toc__list { grid-template-columns: 1fr; }
  .ftr_grid { grid-template-columns: 1fr; }
  .box, .blk_r3x9 { padding: 20px 16px; }
  .hdr__btns .btn { padding: 9px 13px; font-size: 12.5px; }

  .slider_scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin: 0 -4px;
  }
  .slider_scroll > * {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }
  .trn_grid.is_slider, .gms_grid.is_slider { display: none; }
  .gms_grid.is_slider ~ .slider_scroll > * { flex: 0 0 60%; }
}

@media (max-width: 480px) {
  .hero_q71 { min-height: 300px; }
  .wgt_inner { padding: 10px 12px; }
  .wgt_text { font-size: 12.5px; }
  .aut_photo { flex: 0 0 72px; width: 72px; height: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
