/* ══════════════════════════════════════════════════════════════
   Factive — seo_landing.css
   카테고리별 SEO 랜딩 페이지
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.seo-hero {
    padding: 80px 20px 40px; text-align: center;
    background: linear-gradient(180deg, #F0F7F4 0%, #fff 100%);
}
.seo-hero__icon { font-size: 40px; margin-bottom: 12px; }
.seo-hero__title { font-size: 28px; font-weight: 700; line-height: 1.3; color: var(--color-ink); }
.seo-hero__desc { font-size: 14px; color: var(--color-ink-light); margin-top: 8px; line-height: 1.6; }
.seo-hero__stats {
    display: flex; gap: 24px; justify-content: center; margin-top: 20px;
}
.seo-hero__stat { text-align: center; }
.seo-hero__stat-value { font-size: 24px; font-weight: 800; color: var(--color-green-deep); }
.seo-hero__stat-label { font-size: 11px; color: var(--color-ink-muted); margin-top: 2px; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.seo-breadcrumb {
    padding: 12px 20px; background: #FAFAFA; border-bottom: 1px solid #F0F0F0;
}
.seo-breadcrumb a {
    color: var(--color-ink-muted); text-decoration: none; font-size: 12px;
}
.seo-breadcrumb a:hover { color: var(--color-green-deep); }
.seo-breadcrumb span { color: #D1D5DB; font-size: 12px; margin: 0 6px; }
.seo-breadcrumb span:last-child { color: var(--color-ink-light); font-weight: 600; margin: 0; }

/* ── Section ───────────────────────────────────────────────── */
.seo-section { padding: 40px 20px; }
.seo-section--alt { background: #FAFAFA; }
.seo-section__title { font-size: 20px; font-weight: 700; color: var(--color-ink); margin-bottom: 6px; }
.seo-section__desc { font-size: 13px; color: var(--color-ink-muted); margin-bottom: 24px; }

/* ── Product Grid ──────────────────────────────────────────── */
.seo-product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px; max-width: 960px;
}
@media (max-width: 640px) {
    .seo-product-grid { grid-template-columns: 1fr; }
}

.seo-product-card {
    display: flex; gap: 14px; padding: 16px; border-radius: var(--radius-md);
    background: #fff; border: 1.5px solid var(--color-border); cursor: pointer;
    text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.seo-product-card:hover { border-color: var(--color-green-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.seo-product-card__rank {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: var(--radius-sm);
    background: var(--color-bg-alt); font-size: 13px; font-weight: 800; color: var(--color-ink-muted);
    flex-shrink: 0;
}
.seo-product-card__rank--top3 { background-color: var(--color-green-deep); color: #fff; }
.seo-product-card__img {
    width: 56px; height: 56px; border-radius: 10px; background: #FAFAFA;
    flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.seo-product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.seo-product-card__info { flex: 1; min-width: 0; }
.seo-product-card__name {
    font-size: 14px; font-weight: 600; color: var(--color-ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.seo-product-card__maker { font-size: 11px; color: var(--color-ink-muted); margin-top: 2px; }
.seo-product-card__meta { display: flex; gap: 8px; align-items: center; margin-top: 6px; }
.seo-product-card__score { font-size: 16px; font-weight: 800; }
.seo-product-card__grade {
    font-size: 11px; font-weight: 700; color: #fff; padding: 2px 8px; border-radius: 6px;
}

/* ── Category Grid ─────────────────────────────────────────── */
.seo-cat-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px; max-width: 960px;
}
.seo-cat-card {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: var(--radius-md);
    background: #fff; border: 1.5px solid var(--color-border);
    text-decoration: none; transition: all 0.2s;
}
.seo-cat-card:hover { border-color: var(--color-green-deep); background: #F0F7F4; }
.seo-cat-card__icon { font-size: 22px; }
.seo-cat-card__name { font-size: 14px; font-weight: 600; color: var(--color-ink); }
.seo-cat-card__count { font-size: 11px; color: var(--color-ink-muted); margin-top: 1px; }
.seo-cat-card__arrow { color: var(--color-ink-muted); margin-left: auto; }

/* ── Pagination ────────────────────────────────────────────── */
.seo-pagination {
    display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.seo-pagination__btn {
    padding: 8px 14px; border-radius: var(--radius-sm); border: 1px solid var(--color-border);
    background: #fff; font-size: 13px; color: var(--color-ink-light); cursor: pointer;
    transition: all 0.15s;
}
.seo-pagination__btn:hover { border-color: var(--color-green-deep); color: var(--color-green-deep); }
.seo-pagination__btn--active { background-color: var(--color-green-deep); color: #fff; border-color: var(--color-green-deep); }
.seo-pagination__btn:disabled { opacity: 0.4; cursor: not-allowed; }
