@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Barlow:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS 变量 & 重置
   ============================================= */
:root {
  --c-green: #00ff80;
  --c-blue: #0000ff;
  --c-black: #000000;
  --c-white: #ffffff;
  --c-gray: #111111;
  --c-gray2: #222222;
  --c-border: 3px solid #000000;
  --c-border-thin: 2px solid #000000;
  --font-cond: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --aside-w: 260px;
  --max-content: 860px;
  --gap: 24px;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--c-green);
  text-decoration: none;
  transition: none;
}

a:hover {
  color: var(--c-blue);
  background: var(--c-green);
}

ul {
  list-style: none;
}

/* =============================================
   公告栏
   ============================================= */
.announce-bar {
  background: var(--c-blue);
  color: var(--c-white);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  text-align: center;
  border-bottom: var(--c-border);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* =============================================
   侧边导航（ASIDE）
   ============================================= */
.site-aside {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--aside-w);
  height: 100vh;
  background: var(--c-black);
  border-right: var(--c-border);
  overflow-y: auto;
  z-index: 900;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}

.brand-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 16px 12px;
  border-bottom: var(--c-border);
  gap: 8px;
}

.brand-name {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-green);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-name:hover {
  color: var(--c-black);
  background: var(--c-green);
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-aside nav {
  padding: 8px 0;
  border-bottom: var(--c-border);
}

.site-aside nav ul {
  display: flex;
  flex-direction: column;
}

.site-aside nav ul li {
  border-bottom: 1px solid var(--c-gray2);
}

.site-aside nav ul li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.site-aside nav ul li a:hover,
.site-aside nav ul li a[aria-current="page"] {
  color: var(--c-black);
  background: var(--c-green);
}

.aside-related {
  padding: 16px;
  border-bottom: var(--c-border);
}

.aside-related h3 {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 8px;
}

.aside-related hr {
  border: none;
  border-top: 2px solid var(--c-green);
  margin-bottom: 10px;
}

.aside-related ul li {
  margin-bottom: 4px;
}

.aside-related ul li a {
  font-size: 0.82rem;
  font-family: var(--font-cond);
  color: var(--c-white);
  font-weight: 500;
  padding: 4px 0;
  display: block;
}

.aside-related ul li a:hover {
  color: var(--c-black);
  background: var(--c-green);
  padding-left: 6px;
}

/* =============================================
   页面整体布局
   ============================================= */
.page-layout {
  margin-left: var(--aside-w);
  min-height: 100vh;
}

/* =============================================
   MAIN & WRAP & SECTION & ARTICLE 结构
   ============================================= */
main {
  padding: 0;
}

main > div.wrap {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 40px var(--gap);
}

main > div.wrap > section {
  margin-bottom: 60px;
}

main > div.wrap > section > article {
  background: var(--c-black);
  border: var(--c-border);
  padding: 32px;
}

/* =============================================
   页面头部
   ============================================= */
.page-header {
  margin-bottom: 32px;
  border-bottom: var(--c-border);
  padding-bottom: 20px;
}

.page-header h1 {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-green);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.page-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pub-date, .mod-date {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  color: var(--c-green);
  font-weight: 600;
  letter-spacing: 0.06em;
  border: var(--c-border-thin);
  border-color: var(--c-green);
  padding: 2px 8px;
  display: inline-block;
}

/* =============================================
   正文内容
   ============================================= */
.page-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-white);
}

.page-body h2 {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  margin: 40px 0 0;
  letter-spacing: 0.04em;
}

.page-body h2 + hr {
  border: none;
  border-top: 3px solid var(--c-green);
  margin: 8px 0 20px;
}

.page-body h3 {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-blue);
  text-transform: uppercase;
  margin: 28px 0 0;
  letter-spacing: 0.03em;
}

.page-body h3 + hr {
  border: none;
  border-top: 2px solid var(--c-blue);
  margin: 6px 0 16px;
}

.page-body p {
  margin-bottom: 18px;
  color: #e0e0e0;
}

.page-body ul, .page-body ol {
  margin: 0 0 18px 24px;
  list-style: disc;
  color: #e0e0e0;
}

.page-body ol {
  list-style: decimal;
}

.page-body li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.page-body strong {
  color: var(--c-green);
  font-weight: 700;
}

.page-body em {
  color: #cccccc;
  font-style: italic;
}

.page-body blockquote {
  border-left: 4px solid var(--c-green);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--c-gray2);
  color: #cccccc;
  font-style: italic;
}

.page-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.page-body table th {
  background: var(--c-green);
  color: var(--c-black);
  font-family: var(--font-cond);
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  border: var(--c-border);
  text-transform: uppercase;
}

.page-body table td {
  padding: 10px 12px;
  border: 2px solid var(--c-gray2);
  color: #e0e0e0;
  vertical-align: top;
}

.page-body table tr:nth-child(even) td {
  background: var(--c-gray);
}

.page-body a {
  color: var(--c-green);
  text-decoration: underline;
  font-weight: 600;
}

.page-body a:hover {
  color: var(--c-black);
  background: var(--c-green);
  text-decoration: none;
}

/* =============================================
   首页 HERO
   ============================================= */
.home-layout .hero-block {
  min-height: 100vh;
  background: var(--c-black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 60px 40px;
  border-bottom: var(--c-border);
  position: relative;
  overflow: hidden;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-blue);
  clip-path: polygon(0 0, 55% 0, 30% 100%, 0 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green);
  border: 2px solid var(--c-green);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: var(--c-green);
  color: var(--c-black);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 3px solid var(--c-green);
  min-height: 48px;
}

.hero-cta:hover {
  background: var(--c-black);
  color: var(--c-green);
}

.hero-index-label {
  position: absolute;
  left: 40px;
  bottom: 60px;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white);
  z-index: 2;
  writing-mode: vertical-lr;
}

/* =============================================
   索引区块
   ============================================= */
.index-section {
  margin-bottom: 60px;
}

.section-index-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.section-index-title + hr {
  border: none;
  border-top: 4px solid var(--c-green);
  margin: 8px 0 24px;
}

/* =============================================
   卡片网格
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.index-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--c-black);
  border: 3px solid var(--c-white);
  color: var(--c-white);
  text-decoration: none;
  border-radius: 0;
  min-height: 120px;
}

.index-card:hover {
  border-color: var(--c-green);
  background: var(--c-gray);
  color: var(--c-white);
}

.index-card > strong {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.index-card:hover > strong {
  color: var(--c-green);
}

.card-desc {
  font-size: 0.88rem;
  color: #aaaaaa;
  line-height: 1.5;
}

.card-desc time {
  display: block;
  margin-top: 8px;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: var(--c-green);
  font-weight: 600;
}

/* =============================================
   对比页 HERO
   ============================================= */
.compare-hero {
  background: var(--c-blue);
  padding: 60px 40px 40px;
  border-bottom: var(--c-border);
  position: relative;
}

.compare-number {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-green);
  border: 2px solid var(--c-green);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.compare-title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.compare-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   排行页 HERO
   ============================================= */
.ranking-hero {
  background: var(--c-black);
  padding: 60px 40px 40px;
  border-bottom: var(--c-border);
  border-left: 8px solid var(--c-green);
  position: relative;
}

.ranking-badge {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-green);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.ranking-title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-green);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.ranking-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ranking-stripe {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 6px;
  background: var(--c-blue);
}

/* =============================================
   评测页 HERO
   ============================================= */
.review-hero {
  background: var(--c-gray);
  padding: 60px 40px 40px;
  border-bottom: var(--c-border);
  border-top: 8px solid var(--c-green);
}

.review-tag {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white);
  border: 2px solid var(--c-white);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.review-title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.review-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   关于页 HERO
   ============================================= */
.about-hero {
  background: var(--c-black);
  padding: 60px 40px 40px;
  border-bottom: var(--c-border);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: var(--c-blue);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-tag {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-green);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-meta {
  position: relative;
  z-index: 1;
}

/* =============================================
   隐私页 HERO
   ============================================= */
.privacy-hero {
  background: var(--c-gray);
  padding: 60px 40px 40px;
  border-bottom: var(--c-border);
}

.privacy-tag {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-green);
  border: 2px solid var(--c-green);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.privacy-title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.privacy-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   HR 样式
   ============================================= */
hr {
  border: none;
  border-top: 3px solid var(--c-green);
  margin: 8px 0 20px;
}

h2 + hr, h3 + hr {
  margin-top: 6px;
}

/* =============================================
   页脚
   ============================================= */
footer {
  margin-left: var(--aside-w);
  background: var(--c-gray);
  border-top: var(--c-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
}

footer > section {
  padding: 32px 24px;
  border-right: var(--c-border-thin);
  border-bottom: var(--c-border-thin);
}

footer > section:last-child {
  border-right: none;
}

footer > section:nth-child(4) {
  border-right: none;
}

.footer-brand {
  grid-column: 1 / 2;
}

.footer-brand-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-logo:hover {
  color: var(--c-black);
  background: var(--c-green);
}

.footer-brand p {
  font-size: 0.85rem;
  color: #888888;
  line-height: 1.5;
}

footer h4 {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--c-green);
  padding-bottom: 6px;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer ul li a {
  font-size: 0.88rem;
  color: #cccccc;
  font-family: var(--font-cond);
  font-weight: 500;
  display: block;
  padding: 4px 0;
  min-height: 40px;
  display: flex;
  align-items: center;
}

footer ul li a:hover {
  color: var(--c-black);
  background: var(--c-green);
  padding-left: 8px;
}

/* 订阅表单 */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  background: var(--c-black);
  border: var(--c-border-thin);
  border-color: var(--c-white);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 0;
  outline: none;
  min-height: 44px;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--c-green);
}

.subscribe-form input::placeholder {
  color: #666;
}

.subscribe-form button {
  background: var(--c-green);
  color: var(--c-black);
  border: 3px solid var(--c-green);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  min-height: 44px;
  border-radius: 0;
}

.subscribe-form button:hover {
  background: var(--c-black);
  color: var(--c-green);
}

/* 底栏 */
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-right: none;
  border-bottom: none;
  border-top: var(--c-border-thin);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: #666666;
  font-family: var(--font-cond);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 0.82rem;
  color: #888888;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--c-black);
  background: var(--c-green);
  padding: 0 6px;
}

/* =============================================
   Scroll Reveal 动效
   ============================================= */
.reveal-section {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section {
    opacity: 1;
    transform: none;
  }
  .reveal-section.is-visible {
    transition: none;
  }
  * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}

/* =============================================
   首页特殊内容
   ============================================= */
.home-content {
  border: none;
  padding: 0;
}

/* =============================================
   响应式：平板
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --aside-w: 220px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  footer {
    grid-template-columns: repeat(2, 1fr);
  }

  footer > section:nth-child(2) {
    border-right: none;
  }

  footer > section:nth-child(4) {
    border-right: none;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* =============================================
   响应式：移动端 768px 以下
   ============================================= */
@media (max-width: 768px) {
  :root {
    --aside-w: 0px;
  }

  .site-aside {
    position: fixed;
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 0;
    z-index: 900;
    border-right: none;
    border-top: var(--c-border);
    flex-wrap: nowrap;
  }

  .brand-row {
    display: none;
  }

  .aside-related {
    display: none;
  }

  .site-aside nav {
    width: 100%;
    border-bottom: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }

  .site-aside nav ul {
    flex-direction: row;
    display: flex;
  }

  .site-aside nav ul li {
    border-bottom: none;
    border-right: 2px solid var(--c-gray2);
    flex-shrink: 0;
  }

  .site-aside nav ul li a {
    font-size: 0.78rem;
    padding: 12px 14px;
    white-space: nowrap;
    min-height: 48px;
  }

  .page-layout {
    margin-left: 0;
    margin-bottom: 56px;
  }

  footer {
    margin-left: 0;
    margin-bottom: 56px;
    grid-template-columns: 1fr;
  }

  footer > section {
    border-right: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-block {
    padding: 40px 20px 60px;
    min-height: 100vh;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .hero-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-desc {
    margin-left: 0;
  }

  .hero-index-label {
    display: none;
  }

  .hero-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 55%);
    height: 50%;
  }

  .compare-hero,
  .ranking-hero,
  .review-hero,
  .about-hero,
  .privacy-hero {
    padding: 40px 20px 30px;
  }

  main > div.wrap {
    padding: 24px 16px;
  }

  main > div.wrap > section > article {
    padding: 20px 16px;
  }

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

  .announce-bar {
    font-size: 0.75rem;
    padding: 6px 12px;
    position: static;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }
}

/* =============================================
   响应式：375px 极小屏
   ============================================= */
@media (max-width: 375px) {
  .hero-title {
    font-size: 2rem;
  }

  .compare-title,
  .ranking-title,
  .review-title,
  .about-title,
  .privacy-title {
    font-size: 1.5rem;
  }

  main > div.wrap > section > article {
    padding: 16px 12px;
  }

  .site-aside nav ul li a {
    font-size: 0.72rem;
    padding: 12px 10px;
  }
}
