/* aieo/brand-story — long-form copy. */

.aieo-brand-story {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aieo-brand-story__section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aieo-brand-story__heading {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 6px;
    color: #1f2937;
}

.aieo-brand-story__body {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.6;
}
.aieo-brand-story__body p:first-child { margin-top: 0; }
.aieo-brand-story__body p:last-child { margin-bottom: 0; }

.aieo-brand-story__footer {
    color: #6b7280;
    font-size: 13px;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 8px;
}

.aieo-brand-story__website-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid #F46767;
    border-radius: 6px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 150ms ease, color 150ms ease, transform 120ms ease;
}
.aieo-brand-story__website-link:hover {
    background: #F46767;
    color: #fff;
    transform: translateY(-1px);
}
