.ai_share_row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 20px 0;
    padding-bottom: 15px;
    gap: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.ai_share_buttons {
    line-height: 1;
    flex: 1;
}

.ai_share_buttons_description {
    color: #222;
    font-size: 12px;
}

.ai_share_buttons_list {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.ai_share_buttons_item {
    position: relative;
    display: inline-flex;
}

.ai_share_buttons_tooltip {
    align-items: flex-start;
    background: #222;
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 12px;
    line-height: 1.3;
    left: 0;
    opacity: 0;
    padding: 4px 8px;
    position: absolute;
    top: 30px;
    transition: opacity .3s ease-in-out;
    white-space: nowrap;
    will-change: opacity;
}

.ai_share_buttons_item:hover .ai_share_buttons_tooltip {
    opacity: 1;
}

@media screen and (min-width: 480px) {
    .ai_share_buttons_list {
        gap: 16px;
    }
}

.google_preferred {
    padding: 6px 8px;
    max-width: 160px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.google_preferred:hover {
    color: var(--link-color);
}

.google_preferred img {
    width: 28px;
    flex-shrink: 0;
}
