/* Kategoriesection mit Bild */
.gedichte-kategorie-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.gedichte-kategorie-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gedichte-kategorie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gedichte-kategorie-image img:hover {
    transform: scale(1.05);
}

.gedichte-kategorie-titel {
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
}

@media (max-width: 768px) {
    .gedichte-kategorie-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gedichte-kategorie-image {
        width: 100px;
        height: 100px;
    }
}
