/* AI Info Page - CreatorFlow (Wynter-style layout)
   Minimal, fast-to-parse CSS with strong typographic hierarchy */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Stack Sans Headline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #000000;
    background: #ffffff;
}

.ai-info-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6rem 1.5rem 5rem;
}

.ai-info-article {
    width: 100%;
    max-width: 900px;
    margin: 0;
}

.ai-info-hero {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
}

.ai-info-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.ai-info-hero h1 {
    font-size: clamp(2.3rem, 4.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
}

.ai-info-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
}

.ai-info-updated-text {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

.ai-info-note {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.ai-info-note a {
    color: #000000;
    text-decoration: underline;
}

.ai-info-section {
    margin-bottom: 2.5rem;
}

.ai-info-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.ai-info-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
}

.ai-info-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.ai-info-list li {
    margin-bottom: 0.65rem;
    color: #000000;
}

.ai-info-section--guidelines {
    border: none;
    padding: 0;
}

.ai-info-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
}

footer.ai-info-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.footer-note {
    font-size: 0.95rem;
    color: #4b5563;
}

.footer-note a {
    color: #000000;
    text-decoration: underline;
}

p,
.ai-info-list li,
.ai-info-note-bottom,
.footer-note {
    font-family: 'Stack Sans Headline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.ai-info-hero,
.ai-info-section,
.ai-info-note-bottom {
    text-align: left;
}

.ai-info-note-bottom {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.ai-info-section h2,
.ai-info-section h3 {
    font-family: 'Stack Sans Headline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-align: left;
    margin-left: 0;
}

a {
    color: #2563eb;
    text-decoration: underline;
}

a:hover {
    color: #1d4ed8;
}

@media (max-width: 640px) {
    .ai-info-wrapper {
        padding: 2.5rem 1rem 3.5rem;
    }

    .ai-info-hero {
        padding: 2rem 1.5rem;
    }

    .ai-info-section h2 {
        font-size: 1.35rem;
    }
}

