/**
 * Single Expert Styles
 * Performance-optimized external stylesheet
 *
 * @package LebeBewusst
 */

/* === SINGLE EXPERT STYLES - Konsistent mit Webseiten-Design === */
body {
    background: #FCF4E6;
}

.lb-single-expert-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
h1.lb-expert-name {
    font-size: 32px !important;
}

/* === BREADCRUMB === */
.lb-expert-breadcrumb {
    margin-bottom: 16px;
    font-size: 13px;
    color: #666;
}
.lb-expert-breadcrumb a {
    color: #191970;
    text-decoration: underline;
}

/* === MAIN LAYOUT === */
.lb-expert-main-layout {
    margin-bottom: 32px;
}

/* Header Section: Full Width */
.lb-expert-left-column {
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

/* Two Columns Section */
.lb-expert-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.lb-expert-content-left,
.lb-expert-content-right {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: auto;
    min-height: auto;
}

/* === LEFT COLUMN (now full width header) === */
.lb-expert-header-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.lb-expert-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lb-expert-favorite-wrapper {
    align-self: flex-end;
    margin-top: 10px;
}

.lb-expert-profile-pic {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #191970;
    margin: 12px 0 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.lb-expert-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lb-expert-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191970;
    font-size: 42px;
    opacity: 0.5;
}

/* === CONTACT INFO === */
.lb-expert-contact-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}
.lb-expert-contact-info h3 {
    font-size: 17px;
    color: #191970;
    margin: 0 0 12px 0;
    font-weight: 600;
}
.lb-contact-details p {
    margin: 8px 0;
    font-size: 16px;
    color: #333;
}
.lb-contact-details a {
    color: #191970;
    text-decoration: none;
}
.lb-contact-details a:hover {
    text-decoration: underline;
}

/* === EXPERT CONTACT ADDRESS (Kompakte Zeilenabstände) === */
.lb-expert-contact-address {
    line-height: 1.4;
}
.lb-expert-contact-address .lb-expert-contact-post-title {
    margin: 2px 0;
    font-size: 16px;
    color: #333;
}
.lb-expert-contact-address .lb-expert-contact-title-name {
    margin: 2px 0;
    font-size: 16px;
    color: #333;
}
.lb-expert-contact-address .lb-expert-contact-title-name .lb-expert-contact-title,
.lb-expert-contact-address .lb-expert-contact-title-name .lb-expert-contact-name {
    display: inline;
}
.lb-expert-contact-address .lb-expert-contact-title-name .lb-expert-contact-separator {
    display: inline;
}
.lb-expert-contact-address-lines {
    margin-top: 4px;
}
.lb-expert-contact-address-lines .lb-address-line1,
.lb-expert-contact-address-lines .lb-address-line2 {
    margin: 2px 0;
    font-size: 16px;
    color: #333;
}

/* === CONTACT DETAILS WRAPPER (Logo + Adresse) === */
.lb-contact-details-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.lb-expert-logo {
    flex-shrink: 0;
    max-width: 150px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
    background: #fff;
    padding: 8px;
}

.lb-expert-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* === PRODUCTS SECTION === */
.lb-products-section,
.lb-seminarraeume-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #E0E0E0;
}

.lb-subsection-title {
    font-size: 18px;
    color: #191970;
    margin: 0 0 20px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-subsection-title i {
    color: #4B0082;
}

.lb-products-grid,
.lb-seminarraeume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.lb-product-card,
.lb-seminarraum-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E0E0E0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lb-product-card:hover,
.lb-seminarraum-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.lb-product-image,
.lb-seminarraum-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.lb-product-image img,
.lb-seminarraum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-product-placeholder,
.lb-seminarraum-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 32px;
}

.lb-product-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4B0082;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.lb-product-content,
.lb-seminarraum-content {
    padding: 15px;
}

.lb-product-title,
.lb-seminarraum-title {
    font-size: 15px;
    font-weight: 600;
    color: #191970;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.lb-product-title a,
.lb-seminarraum-title a {
    color: #191970;
    text-decoration: none;
}

.lb-product-title a:hover,
.lb-seminarraum-title a:hover {
    color: #4B0082;
}

.lb-product-excerpt,
.lb-seminarraum-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lb-seminarraum-location {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lb-seminarraum-details {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.lb-detail-item {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
}

.lb-detail-item i {
    font-size: 10px;
    color: #4B0082;
}

.lb-product-footer,
.lb-seminarraum-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.lb-product-price,
.lb-seminarraum-price {
    font-weight: 600;
    color: #4B0082;
    font-size: 15px;
}

.lb-product-btn,
.lb-seminarraum-btn {
    background: #191970;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lb-product-btn:hover,
.lb-seminarraum-btn:hover {
    background: #4B0082;
    color: white;
    text-decoration: none;
}

/* === COMPACT LIST STYLES === */
.lb-offerings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lb-compact-section {
    padding: 0;
}

.lb-compact-title {
    font-size: 15px;
    color: #191970;
    margin: 0 0 12px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-compact-title i {
    font-size: 14px;
    color: #4B0082;
}

.lb-compact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lb-compact-item {
    margin: 0;
    padding: 0;
}

.lb-compact-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.lb-compact-link:hover {
    background: #191970;
    color: white;
    text-decoration: none;
    border-color: #191970;
}

.lb-compact-link:hover .lb-compact-date,
.lb-compact-link:hover .lb-compact-desc,
.lb-compact-link:hover .lb-compact-location,
.lb-compact-link:hover .lb-compact-capacity,
.lb-compact-link:hover .lb-compact-price {
    color: rgba(255, 255, 255, 0.8);
}

.lb-compact-link:hover .lb-compact-thumb {
    border-color: rgba(255, 255, 255, 0.3);
}

.lb-compact-link:hover .lb-compact-thumb i {
    color: rgba(255, 255, 255, 0.7);
}

.lb-compact-link:hover .lb-compact-info i {
    color: rgba(255, 255, 255, 0.7);
}

/* Thumbnail Styles */
.lb-compact-thumb {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.lb-compact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-compact-thumb i {
    font-size: 20px;
    color: #4B0082;
}

/* Content Styles */
.lb-compact-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lb-compact-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.lb-compact-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Info Row (Date, Location) */
.lb-compact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.lb-compact-date,
.lb-compact-location,
.lb-compact-capacity {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lb-compact-date i,
.lb-compact-location i,
.lb-compact-capacity i {
    font-size: 10px;
    color: #4B0082;
}

.lb-compact-price {
    font-size: 13px;
    font-weight: 600;
    color: #4B0082;
    margin-top: 2px;
}

/* Responsive for compact lists */
@media (max-width: 600px) {
    .lb-compact-link {
        gap: 10px;
        padding: 10px;
    }

    .lb-compact-thumb {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .lb-compact-thumb i {
        font-size: 18px;
    }

    .lb-compact-name {
        font-size: 13px;
    }

    .lb-compact-desc {
        font-size: 11px;
    }

    .lb-compact-info {
        gap: 8px;
    }
}

/* === KEYWORDS SECTION === */
.lb-expert-keywords-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}
.lb-expert-keywords-section h3 {
    font-size: 17px;
    color: #191970;
    margin: 0 0 10px 0;
    font-weight: 600;
}
.lb-keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
}
.lb-keyword-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

/* === OLD HERO SECTION (kept for lower areas) === */
.lb-expert-hero {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.lb-expert-hero-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.lb-expert-profile-pic {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.lb-expert-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-expert-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 48px;
}

.lb-expert-info {
    flex: 1;
}

.lb-expert-header {
    margin-bottom: 20px;
}

.lb-expert-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px !important;
}
.lb-expert-name {
    font-size: 32px;
    font-weight: 700;
    color: #191970;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
    text-transform: none !important;
}

.lb-expert-title {
    font-size: 38px;
    font-weight: 700;
    color: #191970;
    font-style: italic;
}

.lb-expert-name-meta {
    font-size: 32px;
    font-weight: 500;
    color: #191970;
    font-style: normal;
}
#message-btn{
    display: none;
}

.lb-expert-verified {
    color: #007cba;
    font-size: 20px;
}

.lb-expert-profession {
    font-size: 18px;
    color: #4B0082;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.lb-expert-specializations {
    font-size: 16px;
    color: #666;
    margin: 0 0 12px 0;
    font-weight: 400;
    font-style: italic;
}

.lb-expert-location {
    font-size: 16px !important;
    color: #666;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lb-address-link {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.lb-address-link:hover {
    color: #191970;
    text-decoration: none;
}

.lb-address-link i {
    font-size: 12px;
    opacity: 0.7;
}

.lb-address-link:hover i {
    opacity: 1;
}

.lb-expert-rating {
    margin-bottom: 20px;
}

.lb-rating-stars {
    font-size: 24px;
    color: #FFD700;
    font-weight: 600;
}

.lb-review-count {
    font-size: 14px;
    color: #999;
    margin-left: 8px;
}

.lb-expert-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.lb-expert-long-description {
    margin-bottom: 25px;
}

.lb-expert-long-description p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.lb-expert-long-description p:last-child {
    margin-bottom: 0;
}

.lb-read-more-btn {
    background: none;
    border: none;
    color: #191970;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.lb-read-more-btn:hover {
    color: #4B0082;
    text-decoration: none;
}

.lb-read-more-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lb-read-more-icon.lb-rotated {
    transform: rotate(180deg);
}

.lb-expert-schwerpunkte h3,
.lb-expert-services h3 {
    font-size: 18px;
    color: #191970;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.lb-schwerpunkt-tags,
.lb-service-tags,
.lb-specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
}

/* Override tag styles for calmer palette */
.lb-schwerpunkt-tag,
.lb-service-tag,
.lb-specialization-tag,
.lb-top-specialty-tag,
.lb-keyword-tag {
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    background: #eef1f7;
    color: #2c3e50;
    border: 1px solid #e2e6ed;
}

.lb-schwerpunkt-tag:hover {
    background: #6A0DAD;
    transform: translateY(-1px);
}

.lb-service-tag:hover {
    background: #4169E1;
    transform: translateY(-1px);
}

.lb-specialization-tag:hover {
    background: #FF7F50;
    transform: translateY(-1px);
}

/* Expand/Collapse Button for Tags */
.lb-expand-btn {
    background: none;
    border: 2px dashed #cccccc;
    color: #666666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    align-self: flex-start;
    width: 100%;
    text-align: center;
    margin-left: 0;
}

.lb-expand-btn:hover {
    border-color: #4B0082;
    color: #4B0082;
    background: rgba(75, 0, 130, 0.05);
}

.lb-expert-contact {
    margin-bottom: 30px;
}

.lb-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.lb-contact-item i {
    color: #ce93d8;
    width: 16px;
}

.lb-expert-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.lb-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.lb-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.lb-btn-email {
    background: #a8d8ea;
    color: #2c3e50;
}

.lb-btn-email:hover {
    background: #85c5db;
    color: #2c3e50;
    text-decoration: none;
}

.lb-btn-phone {
    background: #c8e6c9;
    color: #2c3e50;
}

.lb-btn-phone:hover {
    background: #a5d6a7;
    color: #2c3e50;
    text-decoration: none;
}

.lb-btn-website {
    background: #d1c4e9;
    color: #2c3e50;
}

.lb-btn-website:hover {
    background: #b39ddb;
    color: #2c3e50;
    text-decoration: none;
}

/* Einheitliche Contact Button Styles */
.lb-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #191970;
    margin: 0;
    padding: 12px 24px;
    text-align: center;
    text-transform: none;
    transition: all 0.3s ease;
    color: #fff !important;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    justify-content: center;
}

.lb-contact-btn:hover {
    background: #4B0082;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.lb-contact-btn:active {
    transform: translateY(0);
}

.lb-contact-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.lb-contact-btn:hover i {
    transform: translateX(2px);
}

.lb-phone-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    color: #fff;
    stroke: currentColor;
}

.lb-contact-btn:hover .lb-phone-icon {
    transform: translateX(2px);
}

.lb-opening-hours {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    color: #6c757d;
}

.lb-btn-primary {
    background: #191970;
    color: #fff;
    border: 2px solid #191970;
}

.lb-btn-primary:hover {
    background: #4B0082;
    color: #fff;
    border: 2px solid #4B0082;
    text-decoration: none;
    transform: translateY(-1px);
}

.lb-btn-secondary {
    background: #191970;
    color: #fff;
    border: 2px solid #191970;
}

.lb-btn-secondary:hover {
    background: #4B0082;
    color: #fff;
    border: 2px solid #4B0082;
    text-decoration: none;
    transform: translateY(-1px);
}

/* === MAIN CONTENT === */
.lb-expert-main-content {
    margin-bottom: 40px;
}

.lb-expert-columns {
    display: block;
    gap: 40px;
}

.lb-expertise-section,
.lb-events-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.lb-section-title {
    font-size: 20px;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.lb-expertise-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lb-metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lb-metric-item:last-child {
    border-bottom: none;
}

.lb-metric-label {
    color: #666;
    font-size: 14px;
}

.lb-metric-value {
    color: #191970;
    font-weight: 600;
    font-size: 14px;
}

.lb-verified {
    color: #007cba;
}

/* === EVENTS GRID === */
.lb-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.lb-event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lb-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.lb-event-image {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.lb-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-event-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 32px;
}

.lb-event-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4B0082;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.lb-event-content {
    padding: 20px;
}

.lb-event-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.lb-event-title {
    font-size: 16px;
    font-weight: 600;
    color: #191970;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.lb-event-title a {
    color: #191970;
    text-decoration: none;
}

.lb-event-title a:hover {
    color: #4B0082;
}

.lb-event-location {
    font-size: 16px;
    color: #666;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lb-event-description {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lb-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lb-event-participants {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lb-event-price {
    font-weight: 600;
    color: #4B0082;
    font-size: 16px;
}

.lb-event-price.lb-free {
    color: #4B0082;
}

.lb-event-btn {
    display: block;
    width: 100%;
    background: #28a745;
    color: white;
    text-align: center;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lb-event-btn:hover {
    background: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.lb-no-events {
    text-align: center;
    color: #666;
    padding: 40px;
}

/* === MEDIA SECTION === */
.lb-expert-media-section {
    margin-bottom: 40px;
    width: 100%;
}

.lb-videos-section,
.lb-gallery-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
}

/* === VIDEO CAROUSEL === */
.lb-video-carousel {
    margin-top: 20px;
}

.lb-video-swiper {
    position: relative;
    padding-bottom: 50px;
}

.lb-video-slide {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lb-video-slide:hover {
    transform: scale(1.05);
}

.lb-video-thumbnail {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.lb-video-thumbnail img,
.lb-video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lb-video-overlay i {
    font-size: 48px;
    color: white;
    opacity: 0.8;
}

.lb-video-slide:hover .lb-video-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.lb-video-slide:hover .lb-video-overlay i {
    opacity: 1;
    transform: scale(1.1);
}

.lb-video-platform {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.lb-video-prev,
.lb-video-next {
    color: #191970;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lb-video-pagination {
    bottom: 0 !important;
}

.lb-video-pagination .swiper-pagination-bullet {
    background: #191970;
}

/* === VIDEO POPUP === */
.lb-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lb-video-popup.lb-active {
    display: flex;
}

.lb-video-container {
    width: 100%;
    max-width: 800px;
    background: black;
    border-radius: 8px;
    overflow: hidden;
}

#video-player {
    width: 100%;
    height: 400px;
    background: black;
}

#video-player iframe,
#video-player video {
    width: 100%;
    height: 100%;
    border: none;
}

.lb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.lb-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.lb-gallery-item:hover {
    transform: scale(1.02);
}

.lb-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* === CONTENT TABS === */
.lb-content-tabs {
    display: none;
}
.lb-tab-content {
    display: block !important;
}

/* === TIPS GRID === */
.lb-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.lb-tip-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.lb-tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lb-tip-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.lb-tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-tip-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 32px;
}

.lb-tip-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4B0082;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.lb-tip-content {
    padding: 20px;
}

.lb-tip-title {
    font-size: 16px;
    font-weight: 600;
    color: #191970;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.lb-tip-title a {
    color: #191970;
    text-decoration: none;
}

.lb-tip-title a:hover {
    color: #4B0082;
}

.lb-tip-description {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.lb-tip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lb-tip-difficulty {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.lb-tip-difficulty.lb-einfach {
    background: #e8f5e8;
    color: #2d5a2d;
}

.lb-tip-difficulty.lb-mittel {
    background: #fff3cd;
    color: #856404;
}

.lb-tip-difficulty.lb-schwer {
    background: #f8d7da;
    color: #721c24;
}

.lb-tip-btn {
    background: #191970;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lb-tip-btn:hover {
    background: #4B0082;
    color: white;
    text-decoration: none;
}

/* === ARTICLES GRID === */
.lb-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.lb-article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lb-article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.lb-article-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.lb-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-article-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 32px;
}

.lb-article-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4B0082;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.lb-article-content {
    padding: 20px;
}

.lb-article-title {
    font-size: 16px;
    font-weight: 600;
    color: #191970;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.lb-article-title a {
    color: #191970;
    text-decoration: none;
}

.lb-article-title a:hover {
    color: #4B0082;
}

.lb-article-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.lb-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lb-article-date {
    font-size: 12px;
    color: #666;
}

.lb-article-btn {
    background: #191970;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lb-article-btn:hover {
    background: #4B0082;
    color: white;
    text-decoration: none;
}

.lb-no-tips,
.lb-no-articles {
    text-align: center;
    color: #666;
    padding: 40px;
}

/* === GALLERY CAROUSEL === */
.lb-gallery-carousel {
    margin-top: 20px;
    width: 100%;
}

.lb-gallery-swiper {
    position: relative;
    padding-bottom: 30px;
}

.lb-gallery-slide {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.lb-gallery-slide:hover {
    transform: scale(1.02);
}

.lb-gallery-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Full width for single items */
.lb-gallery-swiper.swiper-container-horizontal .swiper-slide:only-child {
    width: 100% !important;
}

.lb-video-swiper.swiper-container-horizontal .swiper-slide:only-child {
    width: 100% !important;
}

.lb-gallery-prev,
.lb-gallery-next {
    color: #191970;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lb-gallery-pagination {
    bottom: 0 !important;
}

.lb-gallery-pagination .swiper-pagination-bullet {
    background: #191970;
}

/* === GALLERY POPUP === */
.lb-gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lb-gallery-popup.lb-active {
    display: flex;
}

.lb-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lb-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.lb-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.lb-popup-swiper {
    width: 100%;
    height: 500px;
}

.lb-popup-swiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lb-popup-prev,
.lb-popup-next {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* === MODALS === */
.lb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lb-modal.lb-active {
    display: flex;
}

.lb-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.lb-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    max-height: 90%;
    overflow-y: auto;
}

.lb-modal-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lb-modal-header h3 {
    margin: 0;
    color: #191970;
}

.lb-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.lb-modal-body {
    padding: 20px;
}

.lb-modal-body input,
.lb-modal-body textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.lb-modal-body textarea {
    resize: vertical;
    min-height: 100px;
}

/* === RATING STARS === */
.lb-rating-stars-input {
    text-align: center;
    margin-bottom: 20px;
}

.lb-star {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.lb-star:hover,
.lb-star.lb-active {
    color: #FFD700;
}

/* === BUTTON STYLES === */
.lb-btn-rating {
    background: #FFD700;
    color: #333;
}

.lb-btn-rating:hover {
    background: #FFC700;
    color: #333;
}

/* === BODY MODAL OPEN === */
body.lb-modal-open {
    overflow: hidden;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .lb-expert-two-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lb-expert-content-left,
    .lb-expert-content-right {
        width: 100%;
    }

    .lb-expert-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .lb-expert-profile-pic {
        margin: 0 auto;
    }

    .lb-events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lb-single-expert-wrapper {
        padding: 14px;
    }

    .lb-expert-left-column,
    .lb-expert-right-column {
        padding: 22px;
    }

    .lb-expert-hero {
        padding: 22px;
    }

    .lb-expert-name {
        font-size: 24px;
    }

    .lb-expert-actions {
        flex-direction: column;
    }

    .lb-events-grid {
        grid-template-columns: 1fr;
    }

    .lb-expertise-section,
    .lb-events-section {
        padding: 18px;
    }
}

/* === NEUE STYLES FÜR ANGEPASSTE BEREICHE === */
.lb-expert-top-specialties .lb-top-specialty-tag {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    color: #191970;
    padding: 6px 12px;
    font-size: 13px;
    margin: 4px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    border: 1px solid rgba(25, 25, 112, 0.1);
}

.lb-expert-top-specialties {
    margin-bottom: 1em;
}

.lb-expert-keywords .lb-keyword-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    margin: 3px;
    border-radius: 15px;
    display: inline-block;
    font-size: 13px;
    border: 1px solid #dee2e6;
}

.lb-expert-slogan {
    background: #f8f9fa;
    border-left: 4px solid #191970;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.lb-expert-full-description .lb-description-content {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 20px;
}
