/* ============================================
   HOME PAGE — Glass Timeline + Hot Cards
   ============================================ */

.home-container { padding: 0; }

/* ── Hero ── */
.home-hero {
  padding: 20px 16px 8px;
}

.home-hero h1 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero .subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* 广告位流动光晕：低速旋转 + 漂移的模糊光斑（GSAP 驱动，仅 transform/opacity） */
.home-ad-aurora {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; border-radius: inherit; pointer-events: none;
  will-change: background-position, transform;
  background:
    radial-gradient(120% 130% at 20% 30%, rgba(255,80,160,.85), transparent 55%),
    radial-gradient(120% 130% at 80% 70%, rgba(80,220,255,.82), transparent 55%),
    radial-gradient(120% 130% at 50% 50%, rgba(180,120,255,.75), transparent 60%),
    linear-gradient(135deg, #1b2a4d, #0f1f2a);
  background-size: 220% 220%, 220% 220%, 220% 220%, 100% 100%;
  animation: auroraFlow 16s ease-in-out infinite alternate;
}
.home-ad-aurora::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.10));
  pointer-events: none;
}
@keyframes auroraFlow {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0; }
  50%  { background-position: 55% 35%, 35% 65%, 25% 80%, 0 0; }
  100% { background-position: 100% 0%, 0% 100%, 80% 20%, 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .home-ad-aurora { animation: none; }
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  will-change: transform;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.aurora-blob.a1 {
  width: 78%; height: 200%; left: -14%; top: -70%;
  background: conic-gradient(from 0deg, rgba(255,80,160,1), rgba(80,220,255,1), rgba(180,120,255,1), rgba(255,200,80,1), rgba(255,80,160,1));
  opacity: 1;
}
.aurora-blob.a2 {
  width: 58%; height: 150%; right: -18%; bottom: -65%;
  background: radial-gradient(closest-side, rgba(255,210,120,1), rgba(80,220,255,.7) 46%, transparent 74%);
  opacity: 1;
}
.aurora-blob.a3 {
  width: 46%; height: 120%; left: 30%; top: -45%;
  background: radial-gradient(closest-side, rgba(190,255,235,1), rgba(120,240,160,.65) 42%, transparent 72%);
  opacity: .95;
}
.aurora-blob.a4 {
  width: 40%; height: 130%; left: 8%; top: -55%;
  background: radial-gradient(closest-side, rgba(255,180,220,1), rgba(180,120,255,.6) 45%, transparent 72%);
  opacity: .9;
}
.aurora-hotspot {
  position: absolute; left: -32%; top: -10%; width: 36%; height: 130%;
  border-radius: 50%;
  filter: blur(28px);
  will-change: transform;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(closest-side, rgba(255,255,255,.95), rgba(255,210,120,.55) 46%, transparent 76%);
}
body:not(.cms-mode) .home-ad-track { position: relative; z-index: 1; }
body:not(.cms-mode) .home-ad-dots { position: relative; z-index: 1; }

/* ── Region Selector ── */
.region-selector {
  padding: 8px 0 12px;
  display: flex; gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.region-selector::-webkit-scrollbar { display: none; }

.region-chip {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  white-space: nowrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.region-chip.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

/* ── Main Split Layout ── */
.home-split {
  display: flex;
  position: relative;
}

/* ── TIMELINE ── iOS scroll-wheel focal effect ── */
.timeline {
  width: 56px;
  flex-shrink: 0;
  padding: 4px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s cubic-bezier(0.16,1,0.3,1), color 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* Today — tallest row, prominent */
.timeline-node.today {
  min-height: 210px;
}

/* Yesterday */
.timeline-node.yesterday {
  min-height: 150px;
}

/* Older — shortest */
.timeline-node.older {
  min-height: 110px;
}

.timeline-dot {
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  transition: background-color 0.45s cubic-bezier(0.16,1,0.3,1), border-color 0.45s cubic-bezier(0.16,1,0.3,1), color 0.45s cubic-bezier(0.16,1,0.3,1), transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.45s cubic-bezier(0.16,1,0.3,1);
}

.timeline-node.today .timeline-dot {
  width: 14px; height: 14px;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px var(--accent-soft);
}

.timeline-node.yesterday .timeline-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}

.timeline-node.older .timeline-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.1);
  border: 0.5px solid rgba(255,255,255,0.05);
}

.timeline-line {
  width: 1px;
  flex: 1;
  margin-top: 6px;
}

.timeline-node.today .timeline-line {
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

.timeline-node.yesterday .timeline-line {
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.timeline-node.older .timeline-line {
  background: rgba(255,255,255,0.02);
}

.timeline-label {
  margin-top: 4px;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  transition: background-color 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s cubic-bezier(0.16,1,0.3,1), color 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s cubic-bezier(0.16,1,0.3,1);
}

.timeline-node.today .timeline-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.timeline-node.yesterday .timeline-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
}

.timeline-node.older .timeline-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.18);
}

/* ── CARDS AREA ── */
.cards-area {
  flex: 1;
  padding: 4px 0 0 10px;
  overflow: hidden;
}

.cards-row {
  margin-bottom: 10px;
  min-height: 0;
  transition: opacity 0.4s;
}

/* 日期行标识：胶囊标签 + 日期圆点 + 数量徽标，当前天高亮 */
.cards-row-label {
  display: flex; align-items: center; gap: 7px;
  width: fit-content;
  padding: 5px 11px;
  margin: 2px 0 8px;
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 750;
  letter-spacing: .02em;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.cards-row-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35); flex: none;
}
.cards-row-label .day-name { white-space: nowrap; }
.cards-row-label .cards-row-count {
  margin-left: auto; padding: 1px 7px; border-radius: 999px;
  font-size: .58rem; font-weight: 700; color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}
.cards-row-label.hot::before { background: #ffb26b; box-shadow: 0 0 8px rgba(255,178,107,.8); }
.cards-row.active-day .cards-row-label {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,122,51,.2), rgba(255,190,96,.1));
  border-color: rgba(255,160,90,.32);
}
.cards-row.active-day .cards-row-label::before { background: #ffb26b; box-shadow: 0 0 10px rgba(255,178,107,.9); }
.cards-row.active-day .cards-row-label .cards-row-count { color: #ffd9b3; background: rgba(255,160,90,.16); }

/* 前后对比扫动预览（CapCut 风格：左→右扫开 → 停 1.5s → 右→左扫回 → 停 1.5s → 循环） */
.ba-preview { position: absolute; inset: 0; overflow: hidden; }
.ba-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ba-preview .ba-after { clip-path: inset(0 100% 0 0); animation: baReveal 5s ease-in-out infinite; }
.ba-preview .ba-line {
  position: absolute; top: 0; bottom: 0; left: 0; width: 2px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 10px rgba(255,255,255,.85), 0 0 22px rgba(255,255,255,.5);
  animation: baLine 5s ease-in-out infinite;
}
@keyframes baReveal {
  0% { clip-path: inset(0 100% 0 0); }
  20% { clip-path: inset(0 0 0 0); }
  50% { clip-path: inset(0 0 0 0); }
  70% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}
@keyframes baLine {
  0% { left: 0; }
  20% { left: calc(100% - 2px); }
  50% { left: calc(100% - 2px); }
  70% { left: 0; }
  100% { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ba-preview .ba-after { animation: none; clip-path: none; }
  .ba-preview .ba-line { display: none; }
}

.cards-row-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  /* 左右滑动自由定位，不吸附到固定卡片位置 */
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 4px;
  scrollbar-width: none;
  touch-action: pan-x pan-y; /* 横向滚动本行，纵向滚动卡片区（原生） */
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.cards-row-scroll::-webkit-scrollbar { display: none; }

/* ── GLASS CARD — compact, 3 visible ── */
.glass-card {
  flex-shrink: 0;
  width: 118px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s,
              box-shadow 0.3s;
}

.glass-card:active { transform: scale(0.95); }

.glass-card.glass-rank-1 {
  border-color: rgba(255,215,0,0.22);
  box-shadow: 0 0 24px rgba(255,215,0,0.05), 0 4px 16px rgba(0,0,0,0.4);
}

.glass-card.glass-rank-2 {
  border-color: rgba(192,192,192,0.13);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.glass-card-cover {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.glass-card-cover .card-gradient {
  position: absolute; inset: 0; opacity: 0.8;
}

.glass-card-cover .card-emoji {
  position: relative; z-index: 1;
  font-size: 2.5rem;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
}

.glass-card-cover .card-rank-num {
  position: absolute; top: 6px; left: 7px; z-index: 3;
  font-size: 0.6rem; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.7);
}

.glass-card-cover .card-rank-num.r1 { color: #ffd700; font-size: 0.68rem; }
.glass-card-cover .card-rank-num.r2 { color: #c0c0c0; }
.glass-card-cover .card-rank-num.r3 { color: #cd7f32; }

.glass-card-cover .card-trend {
  position: absolute; top: 6px; right: 6px; z-index: 3;
  font-size: 0.5rem; font-weight: 800; letter-spacing: .03em;
  line-height: 1; color: #8fd0ff;
  text-shadow: 0 1px 4px rgba(0,0,0,.75);
}

.card-trend.trend-hot {
  color: #ffb26b;
}

.card-trend.trend-up {
  color: #8fd0ff;
}

.glass-card-body { padding: 6px 8px 2px; }

.glass-card-name {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.2;
  margin-bottom: 1px; color: rgba(255,255,255,0.88);
}

.glass-card-stats {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.58rem; color: rgba(255,255,255,0.3);
}

.glass-card-footer {
  display: none; /* Hide creator footer — cleaner look */
}

/* ── TEMPLATE DETAIL (glass) ── */
.detail-glass {
  padding: 0 16px;
}

.detail-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.detail-cover .detail-emoji {
  font-size: 6rem;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.4));
}

.detail-meta { margin-bottom: 24px; }

.detail-meta h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.detail-meta .meta-row {
  display: flex; gap: 14px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.detail-meta .meta-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.detail-cta {
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.detail-cta:active {
  background: rgba(255,255,255,0.14);
  transform: scale(0.98);
}

.detail-share-btn {
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  margin-bottom: 32px;
}

.detail-share-btn .brand-svg-icon {
  width: 20px;
  height: 20px;
}

.detail-cta .brand-svg-icon {
  display: inline;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: -2px;
}

/* Viral history */
.viral-section { margin-top: 8px; }

.viral-section .viral-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
}

.viral-scroll {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.viral-scroll::-webkit-scrollbar { display: none; }

.viral-card {
  flex-shrink: 0; width: 120px;
  border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.2s;
}

.viral-card:active { transform: scale(0.95); }

.viral-thumb {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  position: relative;
  overflow: hidden;
}
.viral-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 40%);
  pointer-events: none;
}
.viral-thumb-name {
  position: absolute; bottom: 14px; left: 6px; right: 6px;
  font-size: 0.6rem; font-weight: 600; color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  z-index: 2;
}
.viral-thumb-uses {
  position: absolute; bottom: 3px; left: 6px;
  font-size: 0.5rem; font-weight: 500; color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  z-index: 2;
}

.viral-name {
  padding: 7px 10px; font-size: 0.68rem;
  font-weight: 600; line-height: 1.2;
  color: rgba(255,255,255,0.8);
}

.viral-uses {
  padding: 0 10px 10px; font-size: 0.6rem;
  color: var(--text-muted);
}

/* Category chips (in templates view) */
.category-chips {
  display: flex; gap: 6px; overflow-x: auto;
  padding: 8px 0; margin-bottom: 12px;
  scrollbar-width: none;
}

.category-chips::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 500;
  white-space: nowrap;
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.chip.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.chip:active { transform: scale(0.96); }

/* 仅真实模版：某日无模版时的空态 */
.cards-row-empty {
  width: 84px; min-width: 84px; height: 112px; box-sizing: border-box;
  padding: 8px 6px; text-align: center;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .56rem; line-height: 1.35; color: rgba(228,246,255,.35);
  border: 1px dashed rgba(158,223,255,.16); border-radius: 0;
}

/* ===== AdSense 内容区与页脚 ===== */
.home-info {
  max-width: 720px;
  margin: 34px auto 10px;
  padding: 0 18px;
}
.home-info h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.home-info p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.home-site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0 10px;
  padding: 14px 18px;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.home-site-footer a {
  color: var(--text-muted);
  text-decoration: underline;
}
.home-site-footer a:hover { color: var(--accent); }

/* 一句话介绍入口 + 弹窗 */
.home-about-teaser {
  display: block;
  margin: 22px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(140, 150, 150, 0.45);
  font-size: 0.58rem;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.6;
  text-align: center;
  transition: color .2s;
}
.home-about-teaser:hover {
  color: rgba(140, 150, 150, 0.7);
}
.home-about-modal .home-about-card {
  max-width: 460px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px 22px;
}
.home-about-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.home-about-card p {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* 首页站点介绍（SEO/AdSense 常驻正文保留，视觉上收敛为页尾轻量信息，不抢首屏） */
.home-seo-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 14px 18px 4px;
  color: var(--text-secondary);
}
.home-seo-content h2 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  text-align: center;
}
.home-seo-content h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 14px 0 4px;
  color: var(--text-primary);
  text-align: center;
}
.home-seo-content p {
  font-size: 0.76rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-align: center;
}
.home-seo-content details {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  padding: 6px 2px;
  margin: 0;
  background: transparent;
}
.home-seo-content summary {
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.home-seo-content summary::-webkit-details-marker {
  display: none;
}
.home-seo-content summary::after {
  content: '＋';
  font-size: 0.7rem;
  line-height: 1;
  color: var(--text-secondary);
}
.home-seo-content details[open] summary::after {
  content: '－';
}
.home-seo-content details p {
  margin: 7px 0 0;
  text-align: left;
  font-size: 0.74rem;
  line-height: 1.75;
}
