/* Feature SEO landing pages */

.feature-seo-hero-actions {
    margin-top: 1.1rem;
}

.feature-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.feature-seo-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.1rem 1.15rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(230, 221, 211, 0.95);
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 22px rgba(28, 20, 16, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-seo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(28, 20, 16, 0.09);
}

.feature-seo-card-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c2410c;
}

.feature-seo-card h2 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.25;
}

.feature-seo-card p {
    margin: 0;
    color: var(--text-muted, #6b7280);
    font-size: 0.92rem;
    line-height: 1.45;
    flex: 1;
}

.feature-seo-card-go {
    margin-top: 0.35rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: #ea580c;
}

.feature-seo-faq details {
    border: 1px solid rgba(230, 221, 211, 0.95);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.55rem;
    background: #fff;
}

.feature-seo-faq summary {
    cursor: pointer;
    font-weight: 700;
}

.feature-seo-faq p {
    margin: 0.55rem 0 0;
    color: var(--text-muted, #6b7280);
}

.feature-seo-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.feature-seo-related a {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #fed7aa;
    background: #fff7ed;
    color: #c2410c;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
}

.feature-seo-related a:hover {
    background: #ffedd5;
}
