.aeo-hero { padding-bottom: 2rem; }
.aeo-ai-summary {
    background: #e3f2fd;
    border-left: 4px solid var(--sot-blue, #0d47a1);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}
.aeo-section { margin-bottom: 2.5rem; }
.aeo-section h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: .75rem; color: var(--sot-blue-dark, #002171); }
.aeo-list { padding-left: 1.25rem; }
.aeo-list li { margin-bottom: .35rem; }
.aeo-steps { padding-left: 0; list-style: none; counter-reset: aeo-step; }
.aeo-steps li {
    counter-increment: aeo-step;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.aeo-steps li::before {
    content: counter(aeo-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--sot-blue, #0d47a1);
    color: #fff;
    border-radius: 50%;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aeo-cta-block {
    background: #f8f9fa;
    border-top: 1px solid var(--sot-border, #dee2e6);
    padding: 2rem 0 2.5rem;
}
.aeo-related-list li { margin-bottom: .35rem; }
.aeo-card {
    border: 1px solid var(--sot-border, #dee2e6);
    transition: box-shadow .2s, border-color .2s;
}
.aeo-card:hover {
    border-color: var(--sot-blue-light, #1565c0);
    box-shadow: 0 4px 12px rgba(13, 71, 161, .12);
}
.aeo-breadcrumb a { text-decoration: none; }
.aeo-breadcrumb a:hover { text-decoration: underline; }
