.expero-ai-share {
    margin: 32px 0;
    padding: 28px;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    background: #fff;
}

.expero-ai-share__title {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.3;
}

.expero-ai-share__buttons {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.expero-ai-share__button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;

    min-width: 0;
    min-height: 64px;
    padding: 10px 14px;

    border: 1px solid #ddd;
    border-radius: 12px;

    background: #fff;
    color: #222;
    text-decoration: none;

    transition:
            transform .15s ease,
            border-color .15s ease,
            box-shadow .15s ease;
}

.expero-ai-share__button:hover,
.expero-ai-share__button:focus-visible {
    border-color:
            var(--stories-primary, #0c86e8);

    box-shadow:
            0 4px 14px
            rgba(0, 0, 0, .08);

    color: #111;
    text-decoration: none;

    transform: translateY(-1px);
}

.expero-ai-share__icon {
    display: block;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    object-fit: contain;
}

.expero-ai-share__button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;

    min-width: 0;
}

.expero-ai-share__button-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.expero-ai-share__badge {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
    color: #666;
}

.expero-ai-share__badge--auto {
    color:
            var(--stories-primary, #0c86e8);
}

.expero-ai-share__hint {
    margin: 16px 0 0;

    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.expero-ai-share__hint strong {
    color: #222;
    font-weight: 700;
}

.expero-ai-share__status {
    min-height: 20px;
    margin-top: 7px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;

    color:
            var(--stories-primary, #0c86e8);
}

@media (max-width: 1024px) {
    .expero-ai-share__buttons {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .expero-ai-share {
        margin: 24px 0;
        padding: 20px;
    }

    .expero-ai-share__title {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .expero-ai-share__buttons {
        grid-template-columns: 1fr;
    }
}