.bee-wissen-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.bee-wissen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    border: 1px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.article-preview {
    padding: 1.5rem;
    cursor: pointer;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.article-preview h2 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-content {
    display: none;
    padding: 1rem 0;
    color: #fff;
}

.article-content.active {
    display: block;
}

.article-text {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-text p {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1rem;
}

.article-preview h2::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 1rem;
    opacity: 0.8;
}

.article-card.active {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
}

.article-card.active .article-image {
    height: 300px;
}

.article-card.active .article-preview h2::after {
    transform: translateY(-50%) rotate(180deg);
}

.article-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.article-content.active {
    max-height: 2000px;
    opacity: 1;
    padding: 1rem 1.5rem 1.5rem;
}

.article-text {
    color: #fff;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
}

.article-text p {
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.article-text p:last-child {
    margin-bottom: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
}

.page-btn {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-btn:hover:not(:disabled) {
    background: var(--gold);
    color: black;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: var(--gold);
    font-size: 0.9rem;
}

.article-text h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin: 1.5rem 0 1rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-text h4 {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin: 1rem 0 0.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .bee-wissen-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .bee-wissen-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .article-preview {
        padding: 0.75rem;
    }

    .article-text {
        padding: 0.75rem;
    }

    .article-content.active {
        padding: 0.5rem 0.75rem 0.75rem;
    }

    .article-card.active {
        margin: 0;
        border-radius: 10px;
        width: 100%;
    }

    .article-card h2 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .article-text p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .pagination {
        margin: 1rem 0;
        padding: 0.5rem;
    }

    .page-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .page-info {
        font-size: 0.8rem;
    }

    .article-text h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem;
    }

    .article-text h4 {
        font-size: 1rem;
        margin: 0.8rem 0 0.4rem;
    }
}

@media (max-width: 768px) {
    .bee-wissen-grid {
        grid-template-columns: 1fr;
    }

    .article-preview h2 {
        font-size: 1.3rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 1rem;
}

.pagination-button {
    background: var(--gradient-gold);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
