/* ── AI Summary Block ─────────────────────────────────── */
.ai-summary {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    width: fit-content;
    margin: 15px auto 0;
}

.ai-summary h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    margin: 0 !important;
    line-height: 1.3;
}

/* ── Icons row ────────────────────────────────────────── */
.ai-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-icons img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.ai-icons img:hover {
    transform: scale(1.15);
}

@media (min-width: 768px) {
    .ai-summary {
        align-items: flex-start;
        margin-left: 0;
    }
}