/* Teilen-Button (wie auf Kaufen, Unternehmen & Co.) — für Seiten mit .page-title-container */
.page-title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-title-container h1,
.page-title-container h2 {
    margin: 0;
    flex: 1;
}

.share-button {
    background-color: var(--accent-blue, #2563eb);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 500;
}

.share-button:hover {
    background-color: var(--accent-blue-dark, #1e40af);
    transform: translateY(-2px);
}

.share-button:active {
    transform: translateY(0);
}

.share-button svg {
    display: block;
}

@media (max-width: 768px) {
    .page-title-container {
        flex-wrap: wrap;
    }

    .share-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .share-button svg {
        width: 18px;
        height: 18px;
    }
}
