/* Social sharing */

.share-banner {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #fff;
    padding: 1.25rem 0;
    margin-bottom: 0;
}

.share-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.share-banner-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-banner-title {
    margin: 0;
    font-size: 1.25rem;
}

.share-modal-card {
    max-width: 420px;
}

.share-preview {
    margin: 0 0 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.share-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.share-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.share-btn {
    min-width: 3rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.12s, background 0.12s;
}

.share-btn:hover {
    border-color: var(--color-primary);
    background: #eef5fc;
}

.share-btn-native {
    min-width: 5rem;
}

.share-status {
    margin: 0 0 0.75rem;
    min-height: 1.25rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    text-align: center;
}

.share-status.is-success {
    color: #2e7d32;
}

.share-complete-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.75rem;
}
