/* ==============================================
   GUIDE DETAILS PAGE
   ============================================== */

/* Back Link - Wiederverwendbar */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

/* Guide Detail Card */
.guide-detail-card {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-header h1 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
}


.guide-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
}



/* Map Consent Notice (für tipps.php) */
.map-consent-notice {
    max-width: 500px;
    margin: 1rem auto;
}

.map-consent-buttons {
    display: flex;
    gap: 0.5rem;

    justify-content: center;
    margin-top: 0.75rem;
}

.guides-filter-row {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.guides-filter-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guides-create-btn-wrapper {
    margin-top: 1.5rem;
}

.guide-teaser-text {
    /* Excerpt teaser mapping */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}