:root {
  --primary: #111827;
  --primary-deep: #0B1020;
  --secondary: #C6A664;
  --secondary-deep: #A88B3D;
  --accent: #F9FAFB;
  --bg: #0F172A;
  --bg-alt: #111827;
  --surface: #1F2937;
  --surface-soft: #263244;
  --text: #F9FAFB;
  --text-muted: #D1D5DB;
  --border: #374151;
  --line: #4B5563;
  --gold-soft: #E5D3A1;
  --success: #34D399;
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 32px rgba(198, 166, 100, 0.18);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max-width: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.75;
}
img { display: block; max-width: 100%; }
a { color: var(--secondary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-soft); }
.container { width: min(calc(100% - 32px), var(--max-width)); margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198, 166, 100, 0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; }
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Noto Serif TC", "Times New Roman", serif;
  font-weight: 700; font-size: 1.15rem; color: var(--secondary);
  letter-spacing: 0.02em;
}
.brand::before {
  content: ""; width: 10px; height: 10px; border-radius: 2px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-soft) 100%);
  box-shadow: 0 0 0 4px rgba(198, 166, 100, 0.2);
}
.main-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.main-nav a { padding: 8px 14px; border-radius: 6px; color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
.main-nav a:hover, .main-nav a:focus-visible { background: rgba(198, 166, 100, 0.08); color: var(--secondary); }
.nav-cta, .button, .button-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 24px; border-radius: 6px; border: 1px solid transparent;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-cta, .button {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-deep) 100%);
  color: var(--primary-deep); box-shadow: var(--shadow-gold);
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(198, 166, 100, 0.28); }
.button-secondary { background: transparent; border-color: var(--border); color: var(--text-muted); }
.button-secondary:hover { border-color: var(--secondary); color: var(--secondary); }

/* ── Hero ── */
.hero { padding: 72px 0 48px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 32px; align-items: stretch; }
.hero-copy { padding: 16px 0; }
.hero-copy h1 {
  margin: 12px 0; font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.08;
  font-family: "Noto Serif TC", "Times New Roman", serif;
  color: var(--text); letter-spacing: -0.02em;
}
.hero-copy h1 em { font-style: normal; color: var(--secondary); }
.lede, .section-sub, .hero-copy p, .footer-meta, .faq-a, .meta-note { color: var(--text-muted); }
.hero-panel { min-width: 0; }
.three-step-flow {
  position: relative; overflow: hidden; padding: 20px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid rgba(198, 166, 100, 0.15); border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-image {
  position: relative; width: 100%; aspect-ratio: 1216 / 640; object-fit: cover;
  border-radius: 14px; border: 1px solid rgba(198, 166, 100, 0.1);
}
.step-flow { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.step-flow-card {
  position: relative; padding: 12px 12px 12px 44px; min-height: 76px;
  background: rgba(31, 41, 55, 0.92);
  border: 1px solid rgba(198, 166, 100, 0.12); border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.step-flow-card strong { color: var(--secondary); font-size: 0.95rem; }
.step-flow-card p { margin: 4px 0 0; color: var(--text-muted); font-size: 0.82rem; }
.step-flow-card::before {
  content: attr(data-step); position: absolute; left: 12px; top: 12px;
  width: 24px; height: 24px; border-radius: 50%; text-align: center; line-height: 24px;
  background: var(--secondary); color: var(--primary-deep); font-weight: 800; font-size: 0.78rem;
}

/* ── Sections ── */
.section { padding: 56px 0; }
.section-kicker {
  display: inline-block; margin-bottom: 8px; padding: 4px 14px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--secondary); border: 1px solid rgba(198, 166, 100, 0.25); border-radius: 4px;
  background: rgba(198, 166, 100, 0.06);
}
.section-title {
  font-family: "Noto Serif TC", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 28px;
  color: var(--text); letter-spacing: -0.02em;
}

/* ── Card Grid ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

/* ── step-guide-card (privilege dossier) ── */
.step-guide-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.step-guide-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); }
.step-guide-card a { display: block; padding: 0; color: var(--text); }
.step-guide-card h3 {
  font-family: "Noto Serif TC", "Times New Roman", serif;
  font-size: 1.15rem; margin: 0; padding: 16px 18px 6px; color: var(--text);
}
.step-guide-card p { margin: 0; padding: 0 18px 18px; color: var(--text-muted); font-size: 0.92rem; }

/* ── article-thumb ── */
.article-thumb {
  width: 100%; aspect-ratio: 1216 / 640; object-fit: cover;
  border-radius: var(--radius-md); background: var(--surface-soft);
}

/* ── callout-grid / callout-card ── */
.callout-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.callout-card {
  padding: 28px; background: var(--surface); border-left: 3px solid var(--secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.callout-card h3 {
  font-family: "Noto Serif TC", "Times New Roman", serif;
  color: var(--secondary); font-size: 1.1rem; margin: 0 0 10px;
}
.callout-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* ── panel-grid / starter-panel (VIP review panel) ── */
.panel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.starter-panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.starter-panel:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4); }
.panel-banner {
  padding: 10px 18px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--primary-deep); background: linear-gradient(90deg, var(--secondary) 0%, var(--gold-soft) 100%);
}
.panel-body { padding: 18px; }
.panel-body h3 { font-family: "Noto Serif TC", serif; margin: 12px 0 8px; font-size: 1.15rem; }
.panel-body h3 a { color: var(--text); }
.panel-body h3 a:hover { color: var(--secondary); }
.panel-body p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

/* ── card (generic article card) ── */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.2s;
}
.card:hover { transform: translateY(-3px); }
.card a { display: block; color: var(--text); }
.card h3 {
  font-family: "Noto Serif TC", serif; font-size: 1.05rem;
  margin: 0; padding: 14px 16px 6px;
}
.card p { margin: 0; padding: 0 16px 16px; color: var(--text-muted); font-size: 0.9rem; }

/* ── CTA Box ── */
.cta-box {
  padding: 40px; background: linear-gradient(135deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid rgba(198, 166, 100, 0.2); border-radius: var(--radius-xl); text-align: center;
}
.cta-box h3 {
  font-family: "Noto Serif TC", serif; font-size: 1.5rem; margin: 0 0 12px; color: var(--text);
}
.cta-box p { margin: 0 0 20px; color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  padding: 48px 0 24px; background: var(--primary-deep);
  border-top: 1px solid rgba(198, 166, 100, 0.12);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h3 {
  font-family: "Noto Serif TC", serif; font-size: 1rem; margin: 0 0 12px; color: var(--text);
}
.footer-grid p { margin: 0 0 6px; font-size: 0.88rem; }
.footer-grid a { color: var(--text-muted); }
.footer-grid a:hover { color: var(--secondary); }
.footer-meta { font-size: 0.82rem; }

/* ── article-hero ── */
.article-hero {
  position: relative; width: 100%; aspect-ratio: 1216 / 640; overflow: hidden;
  border-radius: var(--radius-lg); margin-bottom: 28px;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 16, 32, 0.85) 100%);
}

/* ── prose / article body ── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: "Noto Serif TC", serif; font-size: 1.5rem; margin: 36px 0 14px;
  color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 10px;
}
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--secondary); }
.prose p { margin: 0 0 16px; color: var(--text-muted); }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 24px; color: var(--text-muted); }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); }

/* ── score-table ── */
.score-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.92rem; }
.score-table th {
  text-align: left; padding: 10px 14px; background: var(--surface-soft);
  color: var(--secondary); font-weight: 700; border-bottom: 2px solid var(--secondary);
}
.score-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.score-table tr:hover td { background: rgba(198, 166, 100, 0.04); }

/* ── pros-cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.pros-cons div { padding: 18px; border-radius: var(--radius-md); }
.pros-cons .pros { background: rgba(52, 211, 153, 0.06); border: 1px solid rgba(52, 211, 153, 0.18); }
.pros-cons .cons { background: rgba(239, 68, 68, 0.06); border: 1px solid rgba(239, 68, 68, 0.18); }
.pros-cons h4 { margin: 0 0 10px; font-size: 0.95rem; }
.pros-cons .pros h4 { color: #34D399; }
.pros-cons .cons h4 { color: #EF4444; }
.pros-cons ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 0.9rem; }
.pros-cons li { margin-bottom: 4px; }

/* ── faq-q / faq-a ── */
.faq-q {
  font-family: "Noto Serif TC", serif; font-size: 1.05rem; font-weight: 700;
  margin: 24px 0 8px; color: var(--text); padding-left: 16px;
  border-left: 3px solid var(--secondary);
}
.faq-a { margin: 0 0 18px; padding-left: 16px; font-size: 0.94rem; }

/* ── alert-box ── */
.alert-box {
  padding: 18px 22px; border-radius: var(--radius-sm); margin: 20px 0;
  background: rgba(198, 166, 100, 0.08); border: 1px solid rgba(198, 166, 100, 0.2);
  color: var(--text-muted); font-size: 0.92rem;
}
.alert-box strong { color: var(--secondary); }

/* ── breadcrumb ── */
.breadcrumb { margin: 0 0 20px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--secondary); }

/* ── resource-card ── */
.resource-card {
  display: block; padding: 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 12px; transition: border-color 0.2s;
}
.resource-card:hover { border-color: var(--secondary); }
.resource-card h3 { font-family: "Noto Serif TC", serif; font-size: 1.05rem; margin: 0 0 6px; color: var(--text); }
.resource-card p { margin: 0; color: var(--text-muted); font-size: 0.88rem; }

/* ── tl-item (timeline) ── */
.tl-item {
  position: relative; padding: 14px 14px 14px 42px; margin-bottom: 14px;
  background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.tl-item::before {
  content: ""; position: absolute; left: 14px; top: 18px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 4px rgba(198, 166, 100, 0.2);
}
.tl-item strong { color: var(--text); }
.tl-item p { margin: 4px 0 0; color: var(--text-muted); font-size: 0.9rem; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-flow { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .main-nav { gap: 4px; }
  .main-nav a { padding: 6px 10px; font-size: 0.82rem; }
}
/* ── listing page header ── */
.listing-header {
  padding: 56px 0 28px; text-align: center;
}
.listing-header h1 {
  font-family: "Noto Serif TC", serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 12px; color: var(--text);
}
.listing-header p { margin: 0 auto; max-width: 560px; color: var(--text-muted); }

/* ── guide-intro ── */
.guide-intro {
  padding: 20px 24px; margin-bottom: 28px;
  background: var(--surface); border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.guide-intro p { margin: 0; color: var(--text-muted); font-size: 0.94rem; }

/* ── review-header ── */
.review-header {
  display: flex; gap: 28px; align-items: flex-start; margin-bottom: 28px;
}
.review-score-badge {
  flex-shrink: 0; width: 80px; height: 80px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-deep) 100%);
  color: var(--primary-deep); border-radius: var(--radius-md); font-weight: 800;
}
.review-score-badge .score-num { font-size: 1.8rem; line-height: 1; }
.review-score-badge .score-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── review-meta ── */
.review-meta { flex: 1; }
.review-meta h1 {
  font-family: "Noto Serif TC", serif; font-size: 1.6rem;
  margin: 0 0 8px; color: var(--text);
}
.review-meta p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* ── inline-cta ── */
.inline-cta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  padding: 18px 22px; margin: 24px 0;
  background: rgba(198, 166, 100, 0.06); border: 1px solid rgba(198, 166, 100, 0.18);
  border-radius: var(--radius-md);
}
.inline-cta p { margin: 0; color: var(--text-muted); font-size: 0.9rem; flex: 1; min-width: 200px; }
.inline-cta .button { flex-shrink: 0; }

/* ── divider ── */
.divider {
  border: none; border-top: 1px solid var(--border); margin: 36px 0;
}

/* ── tag-list ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.tag-list span {
  padding: 4px 12px; font-size: 0.78rem; font-weight: 600;
  border: 1px solid var(--border); border-radius: 4px; color: var(--text-muted);
  background: var(--surface);
}

/* ── trust-section ── */
.trust-section { padding: 56px 0; }
.trust-section h2 {
  font-family: "Noto Serif TC", serif; font-size: 1.4rem; margin: 0 0 20px;
  color: var(--text);
}
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.trust-card {
  padding: 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.trust-card h3 {
  font-family: "Noto Serif TC", serif; font-size: 1rem; margin: 0 0 8px;
  color: var(--secondary);
}
.trust-card p { margin: 0; color: var(--text-muted); font-size: 0.88rem; }

/* ── article-listing ── */
.article-listing { list-style: none; padding: 0; margin: 0; }
.article-listing li { margin-bottom: 12px; }
.article-listing a {
  display: flex; gap: 16px; align-items: center;
  padding: 16px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); transition: border-color 0.2s;
}
.article-listing a:hover { border-color: var(--secondary); }
.article-listing .thumb { flex-shrink: 0; width: 120px; aspect-ratio: 1216 / 640; border-radius: var(--radius-sm); object-fit: cover; background: var(--surface-soft); }
.article-listing .info { flex: 1; }
.article-listing .info h3 { font-family: "Noto Serif TC", serif; font-size: 1rem; margin: 0 0 4px; color: var(--text); }
.article-listing .info p { margin: 0; color: var(--text-muted); font-size: 0.85rem; }

/* ── stat-row ── */
.stat-row { display: flex; gap: 24px; flex-wrap: wrap; margin: 20px 0; }
.stat-item { flex: 1; min-width: 120px; text-align: center; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); }
.stat-item .num { font-family: "Noto Serif TC", serif; font-size: 1.8rem; font-weight: 800; color: var(--secondary); }
.stat-item .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ── related-articles ── */
.related-articles { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.related-articles h3 { font-family: "Noto Serif TC", serif; font-size: 1.1rem; margin: 0 0 16px; color: var(--text); }
.related-articles ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.related-articles a { color: var(--text-muted); font-size: 0.92rem; }
.related-articles a:hover { color: var(--secondary); }

/* ── footnote ── */
.footnote {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted);
}
.footnote p { margin: 0 0 8px; }

/* ── comparison-bar ── */
.comparison-bar {
  display: flex; align-items: center; gap: 12px; margin: 8px 0;
}
.comparison-bar .bar-track {
  flex: 1; height: 8px; background: var(--surface-soft); border-radius: 4px; overflow: hidden;
}
.comparison-bar .bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--secondary) 0%, var(--gold-soft) 100%); border-radius: 4px;
}
.comparison-bar .bar-label { font-size: 0.82rem; color: var(--text-muted); min-width: 80px; }
.comparison-bar .bar-value { font-size: 0.82rem; font-weight: 700; color: var(--secondary); min-width: 36px; text-align: right; }

/* ── tier-badge ── */
.tier-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; font-size: 0.75rem; font-weight: 700;
  border-radius: 4px; letter-spacing: 0.06em;
}
.tier-badge.gold { background: rgba(198, 166, 100, 0.15); color: var(--secondary); border: 1px solid rgba(198, 166, 100, 0.3); }
.tier-badge.silver { background: rgba(156, 163, 175, 0.12); color: #9CA3AF; border: 1px solid rgba(156, 163, 175, 0.25); }
.tier-badge.black { background: rgba(255, 255, 255, 0.06); color: var(--text); border: 1px solid rgba(255, 255, 255, 0.15); }

/* ── method-step ── */
.method-step {
  counter-increment: method;
  position: relative; padding: 20px 20px 20px 56px; margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.method-step::before {
  content: counter(method); position: absolute; left: 18px; top: 18px;
  width: 28px; height: 28px; border-radius: 50%; text-align: center; line-height: 28px;
  background: var(--secondary); color: var(--primary-deep); font-weight: 800; font-size: 0.85rem;
}
.method-step h3 { font-family: "Noto Serif TC", serif; font-size: 1.05rem; margin: 0 0 6px; color: var(--text); }
.method-step p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

/* ── Mobile nav toggle ── */
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--primary-deep); padding: 16px; border-bottom: 1px solid var(--border); z-index: 49; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 14px; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-flow { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .main-nav { gap: 4px; }
  .main-nav a { padding: 6px 10px; font-size: 0.82rem; }
  .review-header { flex-direction: column; }
}
@media (max-width: 540px) {
  .hero { padding: 40px 0 28px; }
  .hero-copy h1 { font-size: 1.8rem; }
  .card-grid { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .callout-grid { grid-template-columns: 1fr; }
  .nav-cta, .button { padding: 10px 18px; font-size: 0.88rem; }
  .stat-row { flex-direction: column; }
  .article-listing a { flex-direction: column; }
  .article-listing .thumb { width: 100%; }
}