/* ============================================================
   联考中国 · 报刊风全站共享样式
   暖白米色纸张底 / 墨黑宋体 / 印章红 / 金色英文小注
   ============================================================ */
:root {
  --paper: #f7f2e9;
  --paper-deep: #f0e9db;
  --ink: #23201a;
  --ink-soft: #565043;
  --gray: #7d7668;
  --red: #b5342a;
  --red-deep: #8f2a22;
  --gold: #9a7b4f;
  --line: #d9cfbc;
  --line-soft: #e7dfd0;
  --serif: 'Noto Serif SC', 'Songti SC', Georgia, serif;
  --sans: 'Noto Sans SC', -apple-system, 'PingFang SC', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(35,32,26,0.012) 2px 4px),
    radial-gradient(ellipse at 20% 0%, rgba(154,123,79,0.06), transparent 55%);
}
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; display: block; }

/* ============ 报头 ============ */
.topbar { border-bottom: 1px solid var(--line); font-size: 12px; color: var(--gray); letter-spacing: 2px; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.topbar .dot { color: var(--red); }
.masthead {
  border-bottom: 3px double var(--ink);
  background: var(--paper);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(35,32,26,0.06);
}
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.seal {
  width: 46px; height: 46px; background: var(--red); color: var(--paper);
  font-family: var(--serif); font-weight: 900; font-size: 26px;
  display: flex; align-items: center; justify-content: center; border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(247,242,233,0.35), 0 2px 8px rgba(143,42,34,0.25);
  flex-shrink: 0;
}
.brand-name { font-family: var(--serif); font-weight: 900; font-size: 24px; letter-spacing: 4px; line-height: 1.15; }
.brand-en { font-size: 10px; letter-spacing: 4px; color: var(--gold); font-weight: 500; }
.mastnav { display: flex; gap: 2px; align-items: center; }
.mastnav a {
  color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 12px; letter-spacing: 1px;
  border-bottom: 2px solid transparent; transition: all .2s;
}
.mastnav a:hover, .mastnav a.active { color: var(--red); border-bottom-color: var(--red); }
.mastnav .nav-hot { color: var(--paper); background: var(--red); border-radius: 3px; font-weight: 600; }
.mastnav .nav-hot:hover, .mastnav .nav-hot.active { background: var(--red-deep); border-bottom-color: transparent; color: var(--paper); }

/* ============ 内页头版 ============ */
.page-front { padding: 64px 0 52px; border-bottom: 1px solid var(--line); }
.page-front .crumb {
  font-size: 12px; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 18px; font-weight: 600;
}
.page-front .crumb a { color: var(--gold); text-decoration: none; }
.page-front .crumb a:hover { color: var(--red); }
.page-front h1 {
  font-family: var(--serif); font-weight: 900; font-size: 46px;
  letter-spacing: 3px; line-height: 1.3;
}
.page-front h1 em { font-style: normal; color: var(--red); }
.page-front .lede {
  margin-top: 20px; font-size: 16px; color: var(--ink-soft);
  max-width: 720px; line-height: 2;
}
.page-front .lede strong { color: var(--ink); }

/* ============ 首页头版 ============ */
.front { padding: 72px 0 64px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.front .wrap { display: grid; grid-template-columns: 1fr 190px; gap: 40px; align-items: end; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 3px; color: var(--red); font-weight: 600; margin-bottom: 26px;
}
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--red); }
h1.display { font-family: var(--serif); font-weight: 900; font-size: 58px; line-height: 1.28; letter-spacing: 2px; }
h1.display em { font-style: normal; color: var(--red); position: relative; z-index: 0; }
h1.display em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 10px;
  background: rgba(181,52,42,0.12); z-index: -1;
}
.standfirst { margin-top: 28px; font-size: 16.5px; color: var(--ink-soft); max-width: 620px; line-height: 2; }
.standfirst strong { color: var(--ink); }
.front-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.front-side {
  writing-mode: vertical-rl; font-family: var(--serif); font-size: 15px; letter-spacing: 8px;
  color: var(--gray); border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  padding: 10px 18px; height: 300px; justify-self: end; align-self: start;
}
.front-side b { color: var(--red); font-weight: 700; }

/* ============ 按钮 ============ */
.btn {
  display: inline-block; text-decoration: none; font-size: 15px; font-weight: 600;
  letter-spacing: 1px; padding: 13px 30px; border-radius: 3px; transition: all .2s;
}
.btn-red { background: var(--red); color: var(--paper); box-shadow: 3px 3px 0 var(--ink); }
.btn-red:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ============ 数据条 ============ */
.figs { border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.figs .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.fig { padding: 34px 12px; text-align: center; border-left: 1px solid var(--line); }
.fig:first-child { border-left: none; }
.fig-num { font-family: var(--serif); font-weight: 900; font-size: 44px; color: var(--ink); line-height: 1.1; }
.fig-num .unit { font-size: 18px; color: var(--red); margin-left: 2px; }
.fig-label { font-size: 13px; color: var(--gray); letter-spacing: 2px; margin-top: 6px; }

/* ============ 章节眉 ============ */
.section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.section.tinted { background: var(--paper-deep); }
.sec-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: 14px; }
.sec-no {
  font-family: var(--serif); font-weight: 900; font-size: 15px; color: var(--paper);
  background: var(--ink); padding: 4px 12px; border-radius: 2px; letter-spacing: 2px; flex-shrink: 0;
}
.sec-title { font-family: var(--serif); font-weight: 900; font-size: 36px; letter-spacing: 3px; }
.sec-sub {
  font-size: 15px; color: var(--gray); letter-spacing: 1px; margin-bottom: 52px;
  border-bottom: 1px solid var(--line-soft); padding-bottom: 22px;
}
.sec-sub b { color: var(--red); font-weight: 600; }

/* ============ 线路图 ============ */
.map-layout { display: grid; grid-template-columns: 460px 1fr; gap: 60px; align-items: center; }
.metro { width: 100%; height: auto; display: block; }
.metro .stn-label { font-family: var(--serif); font-weight: 700; font-size: 21px; fill: var(--ink); }
.metro .stn-en { font-size: 10px; letter-spacing: 2px; fill: var(--gray); }
.metro .stn-addr { font-size: 12px; fill: var(--ink-soft); }
.metro .line-name { font-family: var(--serif); font-size: 13px; fill: var(--gold); letter-spacing: 4px; }
.metro .draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: drawline 2.2s .3s ease forwards; }
@keyframes drawline { to { stroke-dashoffset: 0; } }
.metro .pop { animation: pop .4s ease both; }
.metro .pop.d1 { animation-delay: .6s; } .metro .pop.d2 { animation-delay: 1.0s; }
.metro .pop.d3 { animation-delay: 1.4s; } .metro .pop.d4 { animation-delay: 1.8s; }
.metro .pop.d5 { animation-delay: 2.2s; }
@keyframes pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
.metro text, .metro g { transform-box: fill-box; transform-origin: center; }
.map-note { margin-top: 18px; font-size: 12.5px; color: var(--gray); display: flex; gap: 20px; flex-wrap: wrap; }
.map-note span { display: inline-flex; align-items: center; gap: 6px; }
.lg-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); display: inline-block; }
.lg-hub { width: 12px; height: 12px; border-radius: 50%; border: 3px solid var(--red); background: var(--paper); display: inline-block; }
.lg-branch { width: 18px; height: 3px; background: var(--gold); display: inline-block; border-radius: 2px; }

/* ============ 深圳专栏 ============ */
.sz-column { border: 1px solid var(--ink); background: #fffdf8; box-shadow: 6px 6px 0 rgba(35,32,26,0.08); }
.sz-column-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 26px; background: var(--ink); color: var(--paper);
}
.sz-column-head h3 { font-family: var(--serif); font-size: 20px; font-weight: 900; letter-spacing: 3px; }
.sz-column-head .tag {
  font-size: 11px; letter-spacing: 2px; border: 1px solid rgba(247,242,233,0.4);
  padding: 3px 10px; border-radius: 2px; color: #f0c9a8;
}
.sz-body { padding: 26px; }
.sz-campus { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.sz-campus:last-of-type { border-bottom: none; }
.sz-badge {
  writing-mode: vertical-rl; background: var(--red); color: var(--paper);
  font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: 5px;
  display: flex; align-items: center; justify-content: center; border-radius: 3px; padding: 10px 0;
}
.sz-badge.alt { background: var(--ink); }
.sz-campus h4 { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.sz-campus p { font-size: 13.5px; color: var(--ink-soft); }
.sz-campus .hl { color: var(--red); font-weight: 600; }
.sz-classes { margin-top: 18px; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.sz-classes table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.sz-classes th {
  background: var(--paper-deep); font-family: var(--serif); font-weight: 700; text-align: left;
  padding: 9px 14px; letter-spacing: 1px; border-bottom: 1px solid var(--line);
}
.sz-classes td { padding: 9px 14px; border-bottom: 1px dashed var(--line-soft); color: var(--ink-soft); }
.sz-classes tr:last-child td { border-bottom: none; }
.sz-classes td:first-child { color: var(--ink); font-weight: 600; }
.sz-contact {
  margin-top: 18px; background: rgba(181,52,42,0.06); border-left: 3px solid var(--red);
  padding: 12px 16px; font-size: 14px;
}
.sz-contact b { color: var(--red); font-family: var(--serif); font-size: 16px; }

/* ============ 校区卡片 ============ */
.others { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.other-card { padding: 28px 26px; border-left: 1px solid var(--line); position: relative; }
.other-card:first-child { border-left: none; }
.other-card .city { font-family: var(--serif); font-weight: 900; font-size: 22px; display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.other-card .city small { font-size: 11px; color: var(--gold); letter-spacing: 3px; font-weight: 400; }
.other-card ul { list-style: none; font-size: 13.5px; color: var(--ink-soft); }
.other-card ul li { padding: 5px 0 5px 16px; position: relative; }
.other-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 11px; top: 7px; }
.other-card ul li b { color: var(--ink); font-weight: 600; }

/* ============ 特性 ============ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.feature-cell { padding: 34px 30px; border-left: 1px solid var(--line); border-top: 1px solid transparent; }
.feature-cell:nth-child(n+4) { border-top: 1px solid var(--line); }
.feature-cell:nth-child(3n+1) { border-left: none; }
.feature-cell .f-no { font-family: var(--serif); font-weight: 900; font-size: 15px; color: var(--red); letter-spacing: 2px; margin-bottom: 12px; }
.feature-cell h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-cell p { font-size: 13.5px; color: var(--ink-soft); }

/* ============ 时间轴 ============ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 10px; }
.timeline::before {
  content: ''; position: absolute; top: 9px; left: 4%; right: 4%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 14px);
}
.tl-node { padding: 0 26px; position: relative; }
.tl-node::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper); border: 4px solid var(--ink);
  display: block; position: relative; z-index: 1;
}
.tl-node.hot::before { border-color: var(--red); background: var(--red); }
.tl-date { font-family: var(--serif); font-weight: 900; font-size: 26px; margin: 16px 0 2px; }
.tl-node.hot .tl-date { color: var(--red); }
.tl-name { font-size: 15px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.tl-desc { font-size: 13px; color: var(--gray); line-height: 1.8; }

/* ============ 目录行 ============ */
.paths-list { border-top: 2px solid var(--ink); }
.path-row {
  display: grid; grid-template-columns: 90px 260px 1fr auto; gap: 30px; align-items: center;
  padding: 30px 6px; border-bottom: 1px solid var(--line); transition: background .2s;
}
.path-row:hover { background: rgba(181,52,42,0.04); }
.path-no { font-family: var(--serif); font-weight: 900; font-size: 34px; color: var(--line); transition: color .2s; }
.path-row:hover .path-no { color: var(--red); }
.path-name { font-family: var(--serif); font-weight: 900; font-size: 22px; letter-spacing: 2px; }
.path-name small { display: block; font-family: var(--sans); font-size: 11.5px; color: var(--gold); letter-spacing: 2px; font-weight: 400; margin-top: 3px; }
.path-desc { font-size: 14px; color: var(--ink-soft); }
.path-go {
  font-size: 13px; color: var(--red); text-decoration: none; letter-spacing: 2px;
  border-bottom: 1px solid var(--red); padding-bottom: 2px; white-space: nowrap;
}

/* ============ 师资 ============ */
.teachers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.teacher {
  border: 1px solid var(--line); background: #fffdf8; padding: 28px;
  display: grid; grid-template-columns: 76px 1fr; gap: 20px;
}
.teacher .t-seal {
  width: 64px; height: 64px; border-radius: 50%; background: var(--paper-deep);
  border: 2px solid var(--gold); color: var(--ink); font-family: var(--serif); font-weight: 900;
  font-size: 26px; display: flex; align-items: center; justify-content: center;
}
.teacher h4 { font-family: var(--serif); font-size: 19px; font-weight: 900; }
.teacher .t-role { font-size: 12px; color: var(--red); letter-spacing: 2px; font-weight: 600; margin: 2px 0 8px; }
.teacher p { font-size: 13px; color: var(--ink-soft); }

/* ============ 评价 ============ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  border: 1px solid var(--line); background: #fffdf8; padding: 30px 28px; position: relative;
}
.testimonial::before {
  content: '“'; font-family: var(--serif); font-size: 60px; color: rgba(181,52,42,0.18);
  position: absolute; top: 4px; left: 16px; line-height: 1;
}
.testimonial p { font-size: 14px; color: var(--ink-soft); margin: 26px 0 18px; line-height: 1.9; }
.testimonial .t-who { display: flex; align-items: center; gap: 12px; }
.testimonial .t-ava {
  width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: var(--paper);
  font-family: var(--serif); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial .t-ava.alt { background: var(--ink); }
.testimonial .t-ava.gold { background: var(--gold); }
.testimonial .t-name { font-size: 14px; font-weight: 700; }
.testimonial .t-meta { font-size: 12px; color: var(--gray); }

/* ============ 院校标签 ============ */
.uni-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.uni-tag {
  font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: 2px;
  border: 1px solid var(--line); background: #fffdf8; color: var(--ink);
  padding: 8px 20px; border-radius: 2px;
}
.uni-tag.hot { border-color: var(--red); color: var(--red); }

/* ============ 资料列表 ============ */
.mate-list { border-top: 2px solid var(--ink); }
.mate-row {
  display: grid; grid-template-columns: 74px 1fr auto; gap: 24px; align-items: center;
  padding: 24px 6px; border-bottom: 1px solid var(--line); transition: background .2s;
}
.mate-row:hover { background: rgba(181,52,42,0.04); }
.mate-no { font-family: var(--serif); font-weight: 900; font-size: 26px; color: var(--line); }
.mate-row h4 { font-family: var(--serif); font-size: 17px; font-weight: 700; }
.mate-row p { font-size: 13px; color: var(--gray); margin-top: 2px; }
.mate-tag {
  font-size: 11px; letter-spacing: 2px; color: var(--red);
  border: 1px solid var(--red); border-radius: 2px; padding: 2px 10px; white-space: nowrap;
}

/* ============ 表格 ============ */
.paper-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: #fffdf8; font-size: 14px; }
.paper-table th {
  background: var(--ink); color: var(--paper); font-family: var(--serif); font-weight: 700;
  text-align: left; padding: 12px 18px; letter-spacing: 2px; font-size: 14px;
}
.paper-table td { padding: 12px 18px; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.paper-table tr:last-child td { border-bottom: none; }
.paper-table td:first-child { color: var(--ink); font-weight: 600; }
.paper-table tr td b { color: var(--red); }

/* ============ 表单 ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-item { display: flex; flex-direction: column; gap: 8px; }
.form-item.full { grid-column: 1 / -1; }
.form-item label { font-family: var(--serif); font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.form-item input, .form-item select, .form-item textarea {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: #fffdf8; border: 1px solid var(--line); border-radius: 3px;
  padding: 12px 14px; outline: none; transition: border-color .2s;
}
.form-item input:focus, .form-item select:focus, .form-item textarea:focus { border-color: var(--red); }
.form-note { font-size: 12px; color: var(--gray); margin-top: 14px; }

/* ============ CTA ============ */
.cta { background: var(--ink); color: var(--paper); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: '联考中国'; position: absolute; font-family: var(--serif); font-weight: 900;
  font-size: 220px; color: rgba(247,242,233,0.04); top: 50%; left: 50%;
  transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none;
}
.cta .kicker { color: #e8b98a; justify-content: center; width: 100%; }
.cta .kicker::before { background: #e8b98a; }
.cta h2 { font-family: var(--serif); font-weight: 900; font-size: 40px; letter-spacing: 4px; margin-bottom: 18px; }
.cta p { color: rgba(247,242,233,0.65); font-size: 15px; margin-bottom: 36px; }
.cta-phone {
  font-family: var(--serif); font-weight: 900; font-size: 52px; color: var(--paper);
  text-decoration: none; letter-spacing: 3px; display: inline-block;
  padding: 6px 30px; border: 2px solid rgba(247,242,233,0.3); border-radius: 4px; transition: all .2s;
}
.cta-phone:hover { border-color: var(--red); color: #f0c9a8; }
.cta-sub { margin-top: 22px; font-size: 14px; color: rgba(247,242,233,0.55); }
.cta-sub b { color: #f0c9a8; font-weight: 600; }

/* ============ 页脚 ============ */
footer { background: #1a1814; color: #8a8375; font-size: 13px; padding: 48px 0 36px; }
footer .wrap { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
footer .f-brand { max-width: 380px; }
footer .f-brand .brand-name { color: var(--paper); font-size: 19px; }
footer p { margin-top: 12px; line-height: 1.9; }
footer h5 { color: #c9c2b2; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; font-weight: 600; }
footer ul { list-style: none; }
footer ul li { padding: 3px 0; }
footer ul li a { color: #8a8375; text-decoration: none; }
footer ul li a:hover { color: var(--paper); }
.f-bottom { border-top: 1px solid rgba(247,242,233,0.08); margin-top: 36px; padding-top: 22px; text-align: center; font-size: 12px; letter-spacing: 1px; }

/* ============ 动画 ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .front .wrap { grid-template-columns: 1fr; }
  .front-side { display: none; }
  h1.display { font-size: 44px; }
  .page-front h1 { font-size: 36px; }
  .map-layout { grid-template-columns: 1fr; gap: 44px; }
  .metro { max-width: 420px; margin: 0 auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .timeline::before { display: none; }
  .path-row { grid-template-columns: 60px 1fr; gap: 8px 20px; }
  .path-desc { grid-column: 2; }
  .path-go { grid-column: 2; justify-self: start; margin-top: 4px; }
  .teachers { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cell { border-left: none !important; border-top: 1px solid var(--line); }
  .feature-cell:nth-child(-n+2) { border-top: none; }
  .feature-cell:nth-child(even) { border-left: 1px solid var(--line) !important; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .mastnav a:not(.nav-hot) { display: none; }
  h1.display { font-size: 33px; letter-spacing: 1px; }
  .page-front h1 { font-size: 28px; }
  .figs .wrap { grid-template-columns: repeat(2, 1fr); }
  .fig { border-left: none; border-top: 1px solid var(--line); }
  .fig:nth-child(-n+2) { border-top: none; }
  .fig:nth-child(even) { border-left: 1px solid var(--line); }
  .section { padding: 60px 0; }
  .sec-title { font-size: 27px; }
  .others { grid-template-columns: 1fr; }
  .other-card { border-left: none; border-top: 1px solid var(--line); }
  .other-card:first-child { border-top: none; }
  .timeline { grid-template-columns: 1fr; gap: 34px; }
  .sz-body { padding: 18px; }
  .sz-campus { grid-template-columns: 64px 1fr; gap: 14px; }
  .sz-badge { font-size: 13px; letter-spacing: 3px; }
  .cta h2 { font-size: 29px; }
  .cta-phone { font-size: 32px; }
  .testimonials { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-cell { border-left: none !important; border-top: 1px solid var(--line); }
  .feature-cell:first-child { border-top: none; }
  .form-grid { grid-template-columns: 1fr; }
  .mate-row { grid-template-columns: 1fr; gap: 8px; }
  .mate-no { font-size: 18px; }
  .teacher { grid-template-columns: 56px 1fr; gap: 14px; }
  .teacher .t-seal { width: 52px; height: 52px; font-size: 21px; }
}
