/* 糖心Vlog视频推荐平台 - PC & 移动端响应式 */
:root {
  --primary: #ff6b35;
  --primary-dark: #e85a2a;
  --accent: #ff2d75;
  --accent-light: #ff6b9d;
  --bg-dark: #0d0d0f;
  --bg-card: #1a1a1f;
  --bg-card-hover: #222228;
  --text-primary: #f5f5f7;
  --text-secondary: #a0a0a8;
  --text-muted: #6b6b75;
  --border: #2a2a32;
  --gradient: linear-gradient(135deg, #ffb347 0%, #ff6b35 40%, #ff2d75 100%);
  --shadow: 0 4px 24px rgba(255, 45, 117, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 64px;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo img { width: 40px; height: 40px; border-radius: 10px; }

.logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-desktop { display: flex; gap: 28px; list-style: none; }
.nav-desktop a { color: var(--text-secondary); font-size: 0.95rem; font-weight: 500; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--text-primary); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile li { border-bottom: 1px solid var(--border); }
.nav-mobile a { display: block; padding: 14px 0; color: var(--text-secondary); font-size: 1rem; }
.nav-mobile a:hover { color: var(--text-primary); }

.hero {
  padding: 60px 0 80px;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(255, 45, 117, 0.1) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 45, 117, 0.15);
  border: 1px solid rgba(255, 45, 117, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--gradient); color: #fff; }
.btn-outline { background: transparent; color: var(--text-primary); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone {
  max-width: 280px;
  border-radius: 24px;
  box-shadow: var(--shadow), 0 20px 60px rgba(0,0,0,0.5);
  border: 3px solid var(--border);
}

.hero-float {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 140px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

.section { padding: 72px 0; }
.section-alt { background: var(--bg-card); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2rem; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.feature-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

.category-showcase { margin-bottom: 32px; }

.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.cat-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: default;
}
.cat-tab.active { background: var(--gradient); color: #fff; border-color: transparent; }

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.2s;
}
.screenshot-item:hover { transform: scale(1.02); }

.screenshot-item img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }
.screenshot-item figcaption {
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.content-article { max-width: 900px; margin: 0 auto; }
.content-article h2 { font-size: 1.6rem; margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.content-article h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--accent-light); }
.content-article p { margin-bottom: 16px; color: var(--text-secondary); text-align: justify; }
.content-article ul, .content-article ol { margin: 0 0 16px 24px; color: var(--text-secondary); }
.content-article li { margin-bottom: 8px; }
.content-article a { text-decoration: underline; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--gradient);
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 14px;
  color: #fff;
}
.step-card h4 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: "+"; font-size: 1.2rem; color: var(--accent); }
.faq-item.open .faq-q::after { content: "−"; }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.faq-item.open .faq-a { display: block; }

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.internal-links a {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
}
.internal-links a:hover { border-color: var(--accent); color: var(--text-primary); }

.page-hero {
  padding: 48px 0 32px;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 2rem; margin-bottom: 8px; }
.page-hero p { color: var(--text-secondary); }

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--text-secondary); }

.legal-content { padding: 48px 0 72px; }
.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--accent-light); }
.legal-content p, .legal-content li { color: var(--text-secondary); margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin-left: 24px; margin-bottom: 16px; }

.error-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: 6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.error-page h1 { font-size: 1.5rem; margin: 16px 0 12px; }
.error-page p { color: var(--text-secondary); margin-bottom: 24px; }

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 12px; max-width: 300px; }

.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-primary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }

  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero h1 { font-size: 1.85rem; }
  .hero-desc { margin: 0 auto 28px; font-size: 1rem; }
  .hero-actions { justify-content: center; }
  .hero-float { display: none; }
  .hero-phone { max-width: 240px; margin: 0 auto; }

  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .screenshot-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .error-code { font-size: 4rem; }
}

@media (max-width: 480px) {
  .screenshot-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
}

/* ========== 首页专属样式 ========== */
.page-home .home-main { overflow-x: hidden; }

.home-hero {
  position: relative;
  padding: 56px 0 40px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 107, 53, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(255, 45, 117, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, #121218 0%, var(--bg-dark) 100%);
  pointer-events: none;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 30%, transparent);
}

.home-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.home-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 45, 117, 0.35);
  border-radius: 6px;
  background: rgba(255, 45, 117, 0.08);
}

.home-hero-text h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
}

.home-hero-text h1 span {
  display: block;
  margin-top: 6px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.home-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.home-tags li {
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.phone-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  min-height: 400px;
}

.phone-main {
  position: relative;
  z-index: 2;
  width: 58%;
  margin: 0 auto;
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 107, 53, 0.2);
}

.phone-side {
  position: absolute;
  width: 32%;
  border-radius: 18px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0.92;
}

.phone-side:not(.phone-side-left) {
  right: 0;
  bottom: 8%;
  transform: rotate(6deg);
  z-index: 3;
}

.phone-side-left {
  left: 0;
  top: 12%;
  transform: rotate(-8deg);
  z-index: 1;
}

.home-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 28px 0;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.home-section {
  padding: 72px 0;
}

.home-section-alt {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.home-section-dark {
  background: #111116;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.home-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.home-section-head h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.home-section-head p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.home-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.home-filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.home-filter-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.home-filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

.home-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.25s, opacity 0.3s, box-shadow 0.25s;
}

.bento-card.is-hidden {
  display: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 45, 117, 0.2);
  border-color: rgba(255, 45, 117, 0.35);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bento-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 14px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.bento-meta h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.bento-meta p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-split-text h2 {
  font-size: 1.85rem;
  margin-bottom: 28px;
}

.home-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-benefits li {
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.home-benefits strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.home-benefits p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.home-split-visual {
  position: relative;
  min-height: 380px;
}

.split-img-main {
  width: 68%;
  margin: 0 auto;
  border-radius: 22px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.split-img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.home-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: tl;
  position: relative;
}

.home-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.4;
}

.home-timeline li {
  position: relative;
  padding: 0 16px;
  text-align: center;
  counter-increment: tl;
}

.home-timeline li::before {
  content: counter(tl);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.home-timeline h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.home-timeline p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.home-article .content-article h2:first-of-type {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .home-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .home-lead { margin-left: auto; margin-right: auto; }
  .home-hero-cta { justify-content: center; }
  .home-tags { justify-content: center; }
  .home-bento { grid-template-columns: repeat(3, 1fr); }
  .bento-wide { grid-column: span 2; }
  .home-split { grid-template-columns: 1fr; }
  .home-split-visual { max-width: 400px; margin: 0 auto; }
  .home-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .home-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .home-hero { padding: 36px 0 28px; min-height: auto; }
  .home-hero-text h1 { font-size: 2rem; }
  .phone-side-left { display: none; }
  .phone-main { width: 72%; }
  .phone-side:not(.phone-side-left) { width: 38%; right: 4%; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .home-section { padding: 48px 0; }
  .home-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .bento-wide { grid-column: span 2; grid-row: span 1; }
  .bento-tall { grid-row: span 1; }
  .home-timeline { grid-template-columns: 1fr; }
  .home-timeline li { text-align: left; padding-left: 60px; padding-right: 0; }
  .home-timeline li::before { position: absolute; left: 0; top: 0; margin: 0; width: 40px; height: 40px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .home-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento-wide, .bento-tall { grid-column: span 1; }
  .home-filter-btn { padding: 7px 14px; font-size: 0.82rem; }
}
