/* ============================================================
   益米无忧官网 · 共用样式
   品牌色与小程序 utils/config.js 保持一致：
   primary #22C55E / primaryDark #16A34A / orange #FF8A3D / blue #5B8DEF
   ============================================================ */
:root {
  --primary: #22C55E;
  --primary-dark: #16A34A;
  --primary-light: #DCFCE7;
  --orange: #FF8A3D;
  --blue: #5B8DEF;
  --ink: #1F2937;
  --ink-2: #4B5563;
  --ink-3: #9CA3AF;
  --bg: #FFFFFF;
  --bg-soft: #F6FAF7;
  --line: #E5E7EB;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(34, 197, 94, 0.10);
  --shadow-hover: 0 8px 32px rgba(34, 197, 94, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ---------- 顶部导航 ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand .tag {
  font-size: 11px; font-weight: 500; color: var(--primary-dark);
  background: var(--primary-light); border-radius: 999px; padding: 2px 10px;
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 15px; color: var(--ink-2); }
.nav-links a:hover { color: var(--primary-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: none; cursor: pointer; font-size: 15px; font-weight: 600;
  border-radius: 999px; padding: 10px 24px; transition: all .2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--primary-dark); border: 1.5px solid var(--primary); }
.btn-ghost:hover { background: var(--primary-light); }
.btn-block { width: 100%; padding: 13px; font-size: 16px; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #F0FDF4 0%, #FFFFFF 55%, #F0FDF4 100%);
  padding: 84px 0 72px;
}
.hero-inner { display: flex; align-items: center; gap: 56px; }
.hero-copy { flex: 1.15; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--primary-dark);
  background: #fff; border: 1px solid var(--primary);
  border-radius: 999px; padding: 5px 14px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(30px, 4.4vw, 48px); line-height: 1.22; font-weight: 800; letter-spacing: .5px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero p.sub { margin: 18px 0 30px; font-size: 17px; color: var(--ink-2); max-width: 520px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-qr { display: flex; align-items: center; gap: 12px; }
.hero-qr .qr-box {
  width: 96px; height: 96px; border-radius: 12px; background: #fff;
  border: 1.5px dashed var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink-3); text-align: center; padding: 8px;
}
.hero-qr .qr-tip { font-size: 13px; color: var(--ink-3); line-height: 1.5; }

/* 手机 mockup（纯 CSS） */
.hero-visual { flex: .85; display: flex; justify-content: center; }
.phone {
  width: 300px; border-radius: 40px; background: #111827;
  padding: 12px; box-shadow: 0 24px 60px rgba(16, 185, 129, .22);
}
.phone-screen {
  border-radius: 30px; overflow: hidden; background: #F6FAF7;
  display: flex; flex-direction: column; height: 560px;
}
.ps-status { height: 34px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--ink-3); }
.ps-header {
  padding: 10px 18px 16px; background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
}
.ps-header .row1 { display: flex; justify-content: space-between; font-size: 12px; opacity: .9; }
.ps-header h3 { font-size: 19px; margin-top: 8px; font-weight: 700; }
.ps-card {
  margin: -8px 12px 10px; background: #fff; border-radius: 14px;
  padding: 14px; box-shadow: 0 4px 14px rgba(0,0,0,.06);
  display: flex; align-items: center; gap: 12px;
}
.ps-card .ring {
  width: 46px; height: 46px; border-radius: 50%;
  background: conic-gradient(var(--primary) 72%, #E5E7EB 0);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.ps-card .ring i {
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; font-style: normal; font-size: 16px;
}
.ps-card b { font-size: 14px; display: block; }
.ps-card span { font-size: 11px; color: var(--ink-3); }
.ps-chat { padding: 0 12px; display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.bubble { max-width: 82%; padding: 9px 12px; border-radius: 12px; line-height: 1.5; }
.bubble.ai { background: #fff; border: 1px solid var(--line); border-top-left-radius: 4px; align-self: flex-start; }
.bubble.user { background: var(--primary); color: #fff; border-top-right-radius: 4px; align-self: flex-end; }
.ps-foot { margin-top: auto; padding: 10px 14px 16px; font-size: 10px; color: var(--ink-3); text-align: center; }

/* ---------- 数据条 ---------- */
.stats { border-bottom: 1px solid var(--line); background: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: 30px 0; text-align: center; }
.stat b { font-size: 28px; font-weight: 800; color: var(--primary-dark); }
.stat span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* ---------- 通用 section ---------- */
.section { padding: 76px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head .kicker { color: var(--primary-dark); font-weight: 700; font-size: 14px; letter-spacing: 2px; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin: 8px 0 12px; }
.section-head p { color: var(--ink-2); font-size: 15px; }

/* ---------- 功能卡片 ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: all .25s ease;
}
.feature:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.feature .icon {
  width: 52px; height: 52px; border-radius: 14px; font-size: 26px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  background: var(--primary-light);
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--ink-2); }

/* ---------- 价格 ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 26px; justify-content: center; }
.price-card {
  position: relative; background: #fff; border: 1.5px solid var(--line);
  border-radius: 20px; padding: 34px 30px; text-align: center; transition: all .25s ease;
}
.price-card.hot { border-color: var(--primary); box-shadow: var(--shadow); }
.price-card .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 4px 16px; white-space: nowrap;
}
.price-card h3 { font-size: 17px; color: var(--ink-2); font-weight: 600; }
.price-card .amount { margin: 14px 0 4px; font-size: 46px; font-weight: 800; color: var(--ink); }
.price-card .amount small { font-size: 18px; font-weight: 600; }
.price-card .orig { font-size: 14px; color: var(--ink-3); text-decoration: line-through; }
.price-card ul { margin: 22px 0 26px; text-align: left; }
.price-card li { font-size: 14px; color: var(--ink-2); padding: 6px 0 6px 26px; position: relative; }
.price-card li::before {
  content: "✓"; position: absolute; left: 2px; color: var(--primary-dark); font-weight: 800;
}

/* ---------- 联系 ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.contact-card .icon { font-size: 30px; margin-bottom: 10px; }
.contact-card h4 { font-size: 15px; margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--ink-2); }

/* ---------- 营养师招募横幅 ---------- */
.expert-banner {
  background: linear-gradient(120deg, #16A34A, #22C55E);
  border-radius: 22px; color: #fff; padding: 46px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.expert-banner h2 { font-size: clamp(20px, 2.6vw, 28px); font-weight: 800; }
.expert-banner p { margin-top: 8px; font-size: 15px; opacity: .92; }
.expert-banner .btn { background: #fff; color: var(--primary-dark); }
.expert-banner .btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ---------- Footer ---------- */
.footer { background: #10231A; color: #9CB4A6; padding: 48px 0 32px; font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .f-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.footer .f-brand img { width: 32px; height: 32px; border-radius: 8px; }
.footer h5 { color: #E5EFE9; font-size: 14px; margin-bottom: 12px; }
.footer li { padding: 4px 0; }
.footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px;
}

/* ============================================================
   营养师登录页（expert.html）
   ============================================================ */
.auth-wrap { display: flex; min-height: 100vh; }

/* 左侧品牌区 */
.auth-side {
  flex: 1.1; position: relative; overflow: hidden;
  background: linear-gradient(150deg, #16A34A 0%, #22C55E 60%, #4ADE80 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: center;
  padding: 60px 7%;
}
.auth-side::before, .auth-side::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.auth-side::before { width: 420px; height: 420px; top: -140px; right: -120px; }
.auth-side::after { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.auth-side .s-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 700; margin-bottom: 40px; position: relative; }
.auth-side .s-brand img { width: 42px; height: 42px; border-radius: 11px; }
.auth-side h1 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.3; position: relative; }
.auth-side p.s-sub { margin-top: 16px; font-size: 15px; opacity: .92; max-width: 460px; position: relative; }
.duty-list { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.duty-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.duty-list .d-icon {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.s-footer { margin-top: 48px; font-size: 13px; opacity: .75; position: relative; }

/* 右侧表单区 */
.auth-form-side {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 48px 5%; background: #fff;
}
.auth-card { width: min(400px, 100%); }
.auth-card .back-home { font-size: 14px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 4px; margin-bottom: 26px; }
.auth-card .back-home:hover { color: var(--primary-dark); }
.auth-card h2 { font-size: 26px; font-weight: 800; }
.auth-card .a-sub { color: var(--ink-2); font-size: 14px; margin: 8px 0 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 13px 16px; font-size: 15px; border: 1.5px solid var(--line);
  border-radius: 12px; outline: none; transition: border .2s, box-shadow .2s; background: #FAFBFA;
}
.field input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(34,197,94,.12); background: #fff; }
.auth-err {
  display: none; background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA;
  font-size: 13px; border-radius: 10px; padding: 10px 14px; margin-bottom: 16px;
}
.auth-err.show { display: block; }
.auth-tip { margin-top: 22px; font-size: 12.5px; color: var(--ink-3); line-height: 1.7; }
.auth-extra { margin-top: 14px; text-align: right; font-size: 13px; }
.auth-extra a { color: var(--primary-dark); }

/* ============================================================
   协议中心（agreement.html）
   ============================================================ */
.legal-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.tab-btn {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
  font-size: 14px; font-weight: 600; border-radius: 999px;
  padding: 9px 22px; cursor: pointer; transition: all .2s ease;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary-dark); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: var(--shadow); }

.tab-panel { display: none; }
.tab-panel.show { display: block; }

.legal-body {
  max-width: 860px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 4vw, 48px);
}
.legal-body h2 {
  font-size: 20px; font-weight: 800; margin: 34px 0 14px;
  padding-left: 12px; border-left: 4px solid var(--primary);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.legal-body p { font-size: 14.5px; color: var(--ink-2); margin: 10px 0; line-height: 1.9; }
.legal-body strong { color: var(--ink); }
.legal-body ul, .legal-body ol { margin: 10px 0 10px 22px; }
.legal-body li { font-size: 14.5px; color: var(--ink-2); padding: 3px 0; line-height: 1.8; }
.legal-body hr { border: none; border-top: 1px dashed var(--line); margin: 26px 0; }
.legal-body code {
  background: var(--primary-light); color: var(--primary-dark);
  border-radius: 5px; padding: 1px 7px; font-size: 13px;
}
.tbl-wrap { overflow-x: auto; margin: 16px 0; }
.legal-body table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
.legal-body th {
  background: var(--primary-light); color: var(--primary-dark);
  font-weight: 700; text-align: left; padding: 10px 12px;
  border: 1px solid #D1FAE5; white-space: nowrap;
}
.legal-body td {
  border: 1px solid var(--line); padding: 9px 12px; color: var(--ink-2);
  vertical-align: top; line-height: 1.6;
}

/* ============================================================
   关于我们（about.html / index 关于区块共用）
   ============================================================ */
.about-grid { display: flex; gap: 48px; align-items: center; }
.about-copy { flex: 1.1; }
.about-copy h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.about-copy p { font-size: 15px; color: var(--ink-2); margin-bottom: 12px; }
.about-facts { flex: .9; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; text-align: center; transition: all .25s ease;
}
.fact:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.fact .f-icon { font-size: 28px; margin-bottom: 8px; }
.fact b { display: block; font-size: 16px; }
.fact span { font-size: 12.5px; color: var(--ink-3); }

/* 资质墙 */
.honor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.honor {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
}
.honor .h-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.honor .h-head .icon { font-size: 24px; }
.honor h4 { font-size: 15.5px; font-weight: 700; }
.honor p { font-size: 13px; color: var(--ink-3); line-height: 1.7; }
.honor .cert {
  margin-top: 12px; display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--primary-dark); background: var(--primary-light);
  border-radius: 999px; padding: 3px 12px;
}

/* 发展历程 */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 26px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(#22C55E, #DCFCE7);
}
.tl-item { position: relative; padding: 0 0 30px 18px; }
.tl-item::before {
  content: ""; position: absolute; left: -24px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 3px solid var(--primary);
}
.tl-item time { font-size: 13px; font-weight: 800; color: var(--primary-dark); }
.tl-item h4 { font-size: 15.5px; font-weight: 700; margin: 4px 0 4px; }
.tl-item p { font-size: 13.5px; color: var(--ink-2); }

@media (max-width: 860px) {
  .about-grid { flex-direction: column; }
  .honor-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* ---------- Mission 四支柱（借鉴 HelloFresh Group Mission 区块） ---------- */
.mission { background: #fff; padding: 72px 0 64px; }
.mission-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.mission-head .kicker { color: var(--primary-dark); font-weight: 700; font-size: 14px; letter-spacing: 2px; }
.mission-head h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 800; margin-top: 8px; }
.mission-head p { color: var(--ink-2); font-size: 15px; margin-top: 10px; }
.mission-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all .25s ease;
}
.pillar:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pillar .p-icon { font-size: 30px; margin-bottom: 12px; }
.pillar b { display: block; font-size: 17px; margin-bottom: 6px; }
.pillar span { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; }

/* ---------- How It Works 三步（借鉴 hellofresh.com） ---------- */
.how { background: var(--bg-soft); padding: 72px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; text-align: center; position: relative;
}
.step .s-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(34,197,94,.35);
}
.step .p-icon { font-size: 32px; margin: 8px 0 12px; }
.step b { display: block; font-size: 17px; margin-bottom: 8px; }
.step span { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; }
/* 目标场景 chips */
.goal-strip { margin-top: 40px; text-align: center; }
.goal-strip .g-title { font-size: 14px; color: var(--ink-2); margin-bottom: 14px; }
.goal-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.goal-chip {
  font-size: 13.5px; font-weight: 600; color: var(--primary-dark);
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 999px; padding: 8px 18px; transition: all .2s ease;
}
.goal-chip:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); }

/* ---------- FAQ 手风琴（借鉴 hellofresh.com） ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 17px 22px;
  font-size: 15px; font-weight: 700; display: flex;
  justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 20px; font-weight: 600; color: var(--primary-dark);
  transition: transform .2s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 18px; font-size: 14px; color: var(--ink-2); line-height: 1.8; }
.faq-item[open] { border-color: var(--primary); }

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column-reverse; gap: 40px; text-align: center; }
  .hero-copy p.sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-qr { justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  /* 登录页：移动端隐藏品牌侧栏，只留表单 */
  .auth-side { display: none; }
  .auth-form-side { padding: 32px 6%; }
}
@media (max-width: 620px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links a.hide-m { display: none; }
  .expert-banner { padding: 34px 26px; text-align: center; justify-content: center; }
}
