/**
 * AI Article Summary - heading + a row of bare brand logos (44x44), the same
 * logos the site footer uses. Rendered after the author, before the hero.
 */
.nm-ai-summary {
    display: block;
    margin: 24px 0 40px; /* 40px clear space under the logos */
}

.nm-ai-summary__heading {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.nm-ai-summary__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px; /* 8px between each logo */
}

.nm-ai-summary__tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    transition: transform .1s ease, opacity .15s ease;
}

.nm-ai-summary__tool:hover {
    transform: translateY(-1px);
    opacity: .85;
}

.nm-ai-summary__icon {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
}
