/* === LEBE BEWUSST ARTICLES CAROUSEL - BLOG POSTS DESIGN === */
.lb-articles-carousel-wrapper {
    margin: 20px 0;
    padding: 0 30px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.lb-articles-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #191970; /* Dunkelblau wie experts */
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.lb-articles-carousel-container {
    position: relative;
    margin-bottom: 30px;
}

/* FLEX GRID LAYOUT STYLES */
.lb-articles-flex-container {
    position: relative;
    margin-bottom: 30px;
}

.lb-articles-flex-grid {
    display: grid;
    grid-template-columns: repeat(var(--lb-articles-columns-desktop, 4), 1fr);
    gap: var(--lb-articles-flex-gap, 20px);
    align-items: stretch;
}

.lb-articles-swiper {
    overflow: hidden;
    padding: 0 10px 60px 10px; /* Space for pagination */
}

/* Verstecke Standard Swiper Navigation ::after */
.lb-articles-carousel-container .swiper-button-prev::after,
.lb-articles-carousel-container .swiper-button-next::after {
    display: none !important;
}

.lb-article-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    height: 400px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.lb-article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lb-article-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: 0;
    padding: 0;
}

/* Favoriten-Button Positionierung */
.lb-favorite-button-container {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 10;
}

/* Favoriten-Button Styling - Stern Icon */
.lb-favorite-button-container .lb-favorite-btn {
    background: rgba(255, 215, 0, 0.95) !important;
    color: #191970 !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.lb-favorite-button-container .lb-favorite-btn:hover {
    background: rgba(255, 215, 0, 1) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.lb-favorite-button-container .lb-favorite-btn i {
    font-size: 18px !important;
    color: #191970 !important;
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    font-family: 'eicons' !important;
    text-align: center !important;
}

.lb-favorite-button-container .lb-favorite-btn.lb-favorited {
    background: rgba(25, 25, 112, 0.95) !important;
    color: #FFD700 !important;
}

.lb-favorite-button-container .lb-favorite-btn.lb-favorited i {
    color: #FFD700 !important;
}

.lb-article-image img, .lb-article-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
}

.lb-article-card:hover .lb-article-image img,
.lb-article-card:hover .lb-article-image svg {
    transform: scale(1.02);
}

/* Category Badge oben links */
.lb-article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lb-article-category:hover {
    transform: scale(1.05);
    color: #333;
    text-decoration: none;
}

.lb-article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.lb-article-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.lb-article-title a:hover {
    color: #4B0082; /* Dunkelviolett wie experts */
}

.lb-article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.lb-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.lb-article-reading-time {
    font-weight: 500;
}

.lb-article-read-more {
    color: #4B0082; /* Dunkelviolett wie experts */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lb-article-read-more:hover {
    color: #191970; /* Dunkelblau beim Hover */
    text-decoration: none;
}

/* Navigation Arrows - Orange Gradient wie bei Events */
.lb-articles-prev,
.lb-articles-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(to right, #EDDE5D 0%, #F09819 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    box-shadow: 0 2px 8px rgba(92, 122, 89, 0.3);
}

.lb-articles-prev {
    left: -22px;
}

.lb-articles-next {
    right: -22px;
}

.lb-articles-prev:hover,
.lb-articles-next:hover {
    background: linear-gradient(to right, #F09819 0%, #EDDE5D 100%);
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 3px 10px rgba(92, 122, 89, 0.3);
}

.lb-articles-prev.swiper-button-disabled,
.lb-articles-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pagination */
.lb-articles-pagination {
    bottom: 20px !important;
    text-align: center;
    height: 15px;
}

.lb-articles-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.lb-articles-pagination .swiper-pagination-bullet-active {
    background: #F09819;
    transform: scale(1);
}

/* Alle Artikel Button */
.lb-all-articles-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.lb-all-articles-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #191970; /* Dunkelblau wie experts */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.lb-all-articles-btn:hover {
    background: #4B0082; /* Dunkelviolett beim Hover wie experts */
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(25, 118, 210, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lb-articles-flex-grid {
        grid-template-columns: repeat(var(--lb-articles-columns-tablet, 3), 1fr);
    }
}

@media (max-width: 768px) {
    .lb-articles-flex-grid {
        grid-template-columns: repeat(var(--lb-articles-columns-mobile, 2), 1fr);
    }
    
    .lb-articles-prev,
    .lb-articles-next {
        width: 36px;
        height: 36px;
    }
    
    .lb-articles-prev {
        left: -18px;
    }
    
    .lb-articles-next {
        right: -18px;
    }
    
    .lb-article-card {
        height: 360px;
    }
    
    .lb-article-content {
        padding: 16px;
    }
    
    .lb-article-title {
        font-size: 15px;
    }
    
    .lb-articles-section-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lb-articles-flex-grid {
        grid-template-columns: repeat(var(--lb-articles-columns-mobile-small, 1), 1fr);
    }
    
    .lb-articles-swiper {
        padding: 0 5px 60px 5px;
    }
    
    .lb-articles-prev,
    .lb-articles-next {
        display: none; /* Hide on very small screens, use swipe */
    }
    
    .lb-article-card {
        height: 340px;
    }
    
    .lb-article-image {
        height: 160px;
    }
    
    .lb-article-content {
        padding: 14px;
    }
    
    .lb-article-title {
        font-size: 14px;
    }
    
    .lb-article-excerpt {
        font-size: 13px;
    }
    
    .lb-articles-section-title {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

