/* ==============================================
   EXPERT*INNEN PAGE
   ============================================== */

/* --- HERO TEASER SECTION --- */
/* Now handled globally via .hero-teaser in page-layout.css */


/* --- EXISTING STYLES BELOW --- */
.expert-card-front {
    cursor: pointer;
    padding: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
}

.expert-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    width: 100%;
}


.expert-info {
    overflow: hidden;
    flex: 1;
}

.expert-title {
    margin: 0;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

.expert-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.expert-description {
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert-tags-container {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.expert-tag {
    background: var(--bg-body);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
}



.expert-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.expert-details-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Cleanup Classes */
.expert-page-header {
    padding: 2rem 0;
}


/* Ensure centering happens only in Hero if needed */
.expert-hero .header-actions-row {
    justify-content: center;
}

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

.expert-filter-row .btn {
    border-radius: var(--brutal-radius);
}

/* Cleanup Classes */
.expert-intro-text {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}