/* SEO landings - extends public-shell */

.seo-content {
    max-width: var(--ps-max);
    margin: 0 auto;
    padding: 108px 24px 64px;
    color: var(--text-primary);
}

.seo-hero {
    background: rgba(11, 14, 20, 0.55);
    border: 1px solid var(--ps-line);
    border-radius: 0;
    padding: 32px;
    margin-bottom: 1px;
}

.seo-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.seo-hero p,
.seo-section p,
.faq-item p {
    color: var(--text-secondary);
    line-height: 1.72;
}

.seo-section {
    background: rgba(11, 14, 20, 0.55);
    border: 1px solid var(--ps-line);
    border-radius: 0;
    padding: 28px;
    margin-bottom: 1px;
}

.seo-section h2,
.faq h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.seo-section h3,
.faq-item h3 {
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.seo-related-list {
    margin-top: 10px;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ps-line);
}

.seo-related-list li {
    list-style: none;
    border-bottom: 1px solid var(--ps-line);
}

.seo-related-list a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.seo-related-list a:hover {
    color: var(--ps-accent-glow);
}

.seo-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq {
    margin-top: 0;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ps-line);
    border-radius: 0;
    padding: 16px 0;
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .seo-content {
        padding-top: 96px;
    }

    .seo-hero,
    .seo-section {
        padding: 20px;
    }
}
