/* "Bu içeriği bir yapay zeka aracında özetle" çubuğu */

.ba-ai-ozet {
    position: relative;
    border: 1px solid #e3e6ec;
    border-radius: 14px;
    padding: 18px 20px 16px;
    background: #fff;
    margin: 0 0 26px;
}

.ba-ai-ozet__baslik {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: #5b6472;
}

.ba-ai-ozet__butonlar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ba-ai-ozet__buton {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 1px solid #dfe3ea;
    /* Kit'te buton yuvarlaklığı 100px — hap biçim marka dilinin parçası. */
    border-radius: 100px;
    background: #fff;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.2;
    color: #2f3742;
    text-decoration: none;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.ba-ai-ozet__buton:hover,
.ba-ai-ozet__buton:focus-visible {
    border-color: #4877bd;
    box-shadow: 0 2px 10px rgba(72, 119, 189, .16);
    transform: translateY(-1px);
    color: #2f3742;
    text-decoration: none;
}

.ba-ai-ozet__buton:focus-visible {
    outline: 2px solid #4877bd;
    outline-offset: 2px;
}

.ba-ai-ozet__ikon {
    flex: none;
    color: #4877bd;
}

/* Pano moduna geçen butonlarda kısa geri bildirim */
.ba-ai-ozet__bildirim {
    display: block;
    max-height: 0;
    overflow: hidden;
    font-size: 13px;
    color: #2f7a4d;
    opacity: 0;
    transition: opacity .18s ease, max-height .18s ease, margin-top .18s ease;
}

.ba-ai-ozet.is-kopyalandi .ba-ai-ozet__bildirim {
    max-height: 40px;
    margin-top: 10px;
    opacity: 1;
}

@media (max-width: 767px) {
    .ba-ai-ozet {
        padding: 16px 15px 14px;
        border-radius: 12px;
    }

    .ba-ai-ozet__buton {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ba-ai-ozet__buton,
    .ba-ai-ozet__bildirim {
        transition: none;
    }

    .ba-ai-ozet__buton:hover {
        transform: none;
    }
}
