/* ============================================
   北京森艺阳教育 — 官网完整样式表
   风格：专业教育机构官网（参考中广鹏图）
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .2s, background .2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 11px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  line-height: 1.4;
}
.btn--primary {
  background: #104be2;
  color: #fff !important;
  border-color: #104be2;
}
.btn--primary:hover { background: #0d3fc0; border-color: #0d3fc0; box-shadow: 0 4px 14px rgba(16,75,226,.35); }
.btn--outline {
  background: transparent; color: #fff !important; border-color: #fff;
}
.btn--outline:hover { background: #fff; color: #104be2 !important; }
.btn--sm { padding: 5px 14px; font-size: .85rem; }
.btn--gray { background: #f0f0f0; color: #555; border-color: #ddd; }
.btn--gray:hover { background: #e0e0e0; }
.btn--full { width: 100%; padding: 14px; font-size: 1.05rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: #0b1f3f;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: 7px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__sep { margin: 0 12px; opacity: .3; }
.topbar__links { display: flex; align-items: center; }
.topbar__links a { color: rgba(255,255,255,.7); }
.topbar__links a:hover { color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; }
.logo__img { height: 48px; width: auto; }

/* Nav */
.nav__list { display: flex; gap: 2px; }
.nav__link {
  display: block;
  padding: 8px 18px;
  font-size: .92rem;
  font-weight: 500;
  color: #444;
  border-radius: 4px;
}
.nav__link:hover { color: #104be2; background: #f0f4ff; }
.nav__link--active { color: #104be2; font-weight: 600; }

/* Hotline */
.header__hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f4ff;
  padding: 7px 18px;
  border-radius: 6px;
  border: 1px solid #dce5ff;
}
.hotline-icon { font-size: 1.4rem; }
.hotline-text { line-height: 1.3; }
.hotline-label { font-size: .72rem; color: #888; display: block; }
.hotline-num { font-size: 1.05rem; color: #104be2; letter-spacing: 1px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #333; border-radius: 2px; transition: .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a1f3f 0%, #143d75 50%, #104be2 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255,255,255,.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(16,75,226,.15) 0%, transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 60px 20px;
}
.hero__text { flex: 1; color: #fff; }
.hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.hero__subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.hero__subtitle strong { font-weight: 700; color: #ffc600; }
.hero__divider {
  width: 56px;
  height: 3px;
  background: #ffc600;
  margin: 16px 0;
}
.hero__brand { font-size: 1.15rem; font-weight: 600; margin-bottom: 2px; }
.hero__desc { font-size: .95rem; opacity: .8; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__badge {
  display: flex;
  gap: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero__badge-item { text-align: center; color: #fff; }
.hero__badge-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffc600;
  line-height: 1.1;
}
.hero__badge-label { font-size: .8rem; opacity: .75; }

/* ---------- Features ---------- */
.features { padding: 48px 0; background: #f7f9fc; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid #f0f0f0;
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(16,75,226,.08); }
.feature-card__icon { margin-bottom: 10px; }
.feature-card__icon svg { display: inline-block; }
.feature-card__title { font-size: 1rem; font-weight: 700; color: #222; margin-bottom: 4px; }
.feature-card__desc { font-size: .85rem; color: #888; line-height: 1.6; }

/* ---------- Section ---------- */
.section { padding: 70px 0; }
.section--alt { background: #f7f9fc; }
.section__header { text-align: center; margin-bottom: 40px; }
.section__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}
.section__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #104be2, #ff6a00);
  margin: 10px auto 0;
  border-radius: 2px;
}
.section__desc-en {
  font-size: .82rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  margin-top: 6px;
}
.section__desc { font-size: 1rem; color: #777; margin-top: 2px; }
.section__tag {
  display: inline-block;
  margin-top: 12px;
  background: #fff3e0;
  color: #e65100;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: .88rem;
  font-weight: 600;
}
.section__footer-text {
  text-align: center;
  margin-top: 44px;
  font-size: 1rem;
  color: #999;
  font-style: italic;
}

/* ---------- Courses ---------- */
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px 24px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.course-card:hover { box-shadow: 0 8px 28px rgba(16,75,226,.1); border-color: #104be2; transform: translateY(-4px); }
.course-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.course-card__badge {
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}
.course-card__badge:contains("🔥") { background: #fff3e0; color: #e65100; }
.course-card__icon { font-size: 2.2rem; }
.course-card__title { font-size: 1.15rem; font-weight: 700; color: #222; margin-bottom: 8px; }
.course-card__brief { font-size: .88rem; color: #888; margin-bottom: 14px; line-height: 1.6; flex: 1; }
.course-card__features { margin-bottom: 18px; }
.course-card__features li { font-size: .84rem; color: #666; padding: 4px 0; border-bottom: 1px dashed #f0f0f0; }
.course-card__features li:last-child { border-bottom: none; }
.course-card__link { display: inline-block; color: #104be2; font-weight: 600; font-size: .9rem; margin-top: auto; }
.course-card__link:hover { color: #ff6a00; }

/* ---------- Why Us ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(16,75,226,.06); }
.why-card__num { font-size: 2.4rem; font-weight: 800; color: #104be2; opacity: .15; margin-bottom: 4px; }
.why-card__title { font-size: 1.05rem; font-weight: 700; color: #222; margin-bottom: 8px; }
.why-card__desc { font-size: .88rem; color: #888; line-height: 1.6; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about__content p {
  margin-bottom: 14px;
  font-size: .95rem;
  color: #555;
  line-height: 1.9;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about__stat {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  border: 1px solid #eee;
}
.about__stat-num { display: block; font-size: 2rem; font-weight: 800; color: #104be2; line-height: 1.1; }
.about__stat-label { font-size: .85rem; color: #888; margin-top: 4px; }

/* ---------- News ---------- */
.news__list { max-width: 800px; margin: 0 auto; }
.news-card {
  border-bottom: 1px solid #f0f0f0;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news-card:first-child { padding-top: 0; }
.news-card:last-child { border-bottom: none; padding-bottom: 0; }
.news-card__date { font-size: .78rem; color: #aaa; }
.news-card__title { font-size: 1.05rem; font-weight: 700; color: #222; transition: color .2s; }
.news-card__title:hover { color: #104be2; }
.news-card__excerpt { font-size: .88rem; color: #888; }
.news-card__link { font-size: .85rem; color: #104be2; font-weight: 600; }
.news-card__link:hover { color: #ff6a00; }

/* ---------- Form ---------- */
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.form__note {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .85rem;
  color: #7c6a00;
  line-height: 1.8;
  margin-bottom: 24px;
}
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-weight: 600; font-size: .92rem; color: #333; }
.form__required { color: #e74c3c; }
.form__input {
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form__input:focus { border-color: #104be2; box-shadow: 0 0 0 3px rgba(16,75,226,.08); }
.form__select { background: #fff; cursor: pointer; }
.form__captcha-wrap { display: flex; gap: 10px; align-items: center; }
.form__input--captcha { width: 130px; }
.form__captcha { border: 1px solid #ddd; border-radius: 6px; cursor: pointer; }
.form__row--checkbox { flex-direction: row; align-items: center; gap: 8px; }
.form__checkbox-label { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: #555; }
.form__checkbox-label a { color: #104be2; text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: #0f1a2e;
  color: #bbb;
  padding: 56px 0 0;
}
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.footer__logo { margin-bottom: 14px; }
.footer__intro { font-size: .88rem; line-height: 1.8; margin-bottom: 16px; color: #999; }
.footer__contact p { font-size: .88rem; margin-bottom: 6px; color: #bbb; }
.footer__contact a { color: #ffc600; }
.footer__contact a:hover { color: #fff; }

.footer__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,.06);
}
.footer__links li { margin-bottom: 7px; }
.footer__links a { color: #999; font-size: .88rem; }
.footer__links a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 18px 0;
  text-align: center;
  font-size: .8rem;
  color: #777;
}
.footer__bottom p + p { margin-top: 3px; }
.footer__bottom a { color: #999; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #104be2;
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(16,75,226,.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #0d3fc0; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .courses__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__badge { display: none; }
  .about { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .header__hotline { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .topbar__links { display: none; }
  .topbar__slogan { font-size: .75rem; }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; padding: 12px; gap: 2px; }
  .nav__link { padding: 12px 16px; font-size: 1rem; }

  .hero__content { flex-direction: column; text-align: center; }
  .hero__divider { margin: 16px auto; }
  .hero__actions { justify-content: center; }
  .hero__title { font-size: 1.7rem; }
  .hero__subtitle { font-size: 1.2rem; }

  .features__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .courses__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .why__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .about__stats { grid-template-columns: 1fr 1fr; }

  .form-wrap { padding: 24px 18px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }

  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.4rem; }
  .section__title { font-size: 1.5rem; }
  .hero { min-height: 380px; }
}

/* ============================================
   二级页面专用样式
   ============================================ */

/* Page Hero */
.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #0a1f3f 0%, #143d75 100%);
  color: #fff;
}
.page-hero--rsnj { background: linear-gradient(135deg, #1a3a2e 0%, #2e7d32 100%); }
.page-hero--gdrc { background: linear-gradient(135deg, #3a1a1a 0%, #e65100 100%); }
.page-hero--more { background: linear-gradient(135deg, #1a1a3a 0%, #6a1b9a 100%); }
.page-hero--register { background: linear-gradient(135deg, #0a1f3f 0%, #104be2 100%); }
.page-hero__content { text-align: center; }
.page-hero__title { font-size: 2rem; font-weight: 700; margin-bottom: 6px; }
.page-hero__desc { font-size: 1rem; opacity: .8; margin-bottom: 14px; }
.breadcrumb { font-size: .82rem; opacity: .65; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

/* Category Intro */
.category-intro {
  max-width: 800px;
  margin: 0 auto;
  background: #f7f9fc;
  border-radius: 12px;
  padding: 32px 36px;
  border: 1px solid #eee;
}
.category-intro__badge {
  display: inline-block;
  background: #e3f2fd;
  color: #1565c0;
  font-size: .8rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.category-intro h2 { font-size: 1.4rem; color: #222; margin-bottom: 10px; }
.category-intro p { font-size: .92rem; color: #666; line-height: 1.8; }

/* Card Badge Colors */
.badge-hot { background:#fff3e0;color:#e65100; }
.badge-rec { background:#e8f5e9;color:#2e7d32; }
.badge-new { background:#e3f2fd;color:#1565c0; }
.badge-purple { background:#f3e5f5;color:#6a1b9a; }

/* CTA Section */
.cta-section {
  padding: 50px 0;
}

/* Cat Grid (二级导航卡片) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
  transition: all .3s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16,75,226,.1);
  border-color: #104be2;
}
.cat-card__icon { margin-bottom: 12px; }
.cat-card__icon svg { display: inline-block; }
.cat-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.cat-card__desc {
  font-size: .82rem;
  color: #999;
  line-height: 1.5;
  margin-bottom: 12px;
}
.cat-card__arrow {
  color: #104be2;
  font-weight: 600;
  font-size: .88rem;
}
.cat-card:hover .cat-card__arrow { color: #ff6a00; }

/* Admin Page */
.admin-login {
  max-width: 380px;
  margin: 60px auto;
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  text-align: center;
}
.admin-login h2 { font-size: 1.4rem; margin-bottom: 8px; }
.admin-login p { color: #888; font-size: .9rem; margin-bottom: 24px; }

.admin-panel { display: none; }
.admin-panel.visible { display: block; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.admin-stat {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid #eee;
}
.admin-stat__num { display: block; font-size: 1.8rem; font-weight: 800; color: #104be2; }
.admin-stat__label { font-size: .82rem; color: #999; }

.admin-table-wrap {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.admin-table th {
  background: #f7f9fc;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: #555;
  border-bottom: 2px solid #eee;
  white-space: nowrap;
}
.admin-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f5f5f5;
  color: #555;
}
.admin-table tr:hover td { background: #fafbff; }
.admin-table .empty-row td {
  text-align: center;
  color: #bbb;
  padding: 40px 14px;
  font-size: .9rem;
}

.admin-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.admin-actions h2 { font-size: 1.3rem; color: #222; }

/* Wide card for single-course pages */
.course-card--wide {
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
}
.course-card--wide .course-card__header {
  flex-shrink: 0;
  text-align: center;
  min-width: 120px;
}
.course-card--wide .course-card__icon {
  font-size: 2.6rem;
}
.course-card--wide .course-card__title {
  font-size: 1.3rem;
}
.course-card--wide .course-card__features {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .course-card--wide { flex-direction: column; text-align: center; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .page-hero__title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* Textarea */
.form__textarea {
  resize: vertical;
  min-height: 70px;
}

/* News tag */
.news-card__tag {
  display: inline-block;
  background: #e3f2fd;
  color: #1565c0;
  font-size: .72rem;
  padding: 1px 10px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}
.news-card:nth-child(2) .news-card__tag { background: #fff3e0; color: #e65100; }
.news-card:nth-child(3) .news-card__tag { background: #e8f5e9; color: #2e7d32; }

/* News List Page */
.news-list {
  max-width: 800px;
  margin: 0 auto;
}
.news-list__item {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #eee;
  margin-bottom: 16px;
  transition: all .3s ease;
}
.news-list__item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border-color: #104be2;
  transform: translateY(-2px);
}
.news-list__date { font-size: .8rem; color: #aaa; display: inline-block; margin-right: 10px; }
.news-list__badge {
  display: inline-block;
  font-size: .72rem;
  padding: 1px 10px;
  border-radius: 12px;
  background: #e3f2fd;
  color: #1565c0;
  vertical-align: middle;
}
.news-list__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #222;
  margin: 10px 0 6px;
  transition: color .2s;
}
.news-list__item:hover .news-list__title { color: #104be2; }
.news-list__brief {
  font-size: .88rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 8px;
}
.news-list__arrow {
  font-size: .85rem;
  color: #104be2;
  font-weight: 600;
}

/* Admin link on homepage */
.admin-link {
  text-align: center;
  margin-top: 20px;
}
.admin-link a {
  color: #999;
  font-size: .8rem;
}
.admin-link a:hover { color: #104be2; }
