/* Download-Bereich Stile */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.download-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.download-label {
    font-weight: bold;
    margin-bottom: 10px;
    color: #808080; /* Farbe war #e9932b orange */
    font-size: 16px;
}

.download-info {
    text-align: center;
    padding: 10px;
    background-color: rgba(233, 147, 43, 0.1);
    border-radius: 5px;
}

.download-info .download-label {
    margin-bottom: 0;
    margin-right: 5px;
}

/* Social-Icon Anpassungen für Download-Bereich */
.download-column .social-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #e9932b;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 35px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.download-column .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.download-text {
    font-size: 12px;
    margin-top: 5px;
    color: #555;
    max-width: 100px;
    word-break: break-word;
}

/* Spezifische Farben für verschiedene Dateitypen */
.download-column .social-icon.pdf-icon:hover {
    background-color: #F40F02; /* Rot für PDF */
}

.download-column .social-icon.zip-icon:hover {
    background-color: #F5B62B; /* Blau (#1684FF) für ZIP */
}

/* Responsive Design für Mobile */
@media (max-width: 1020px) { /* war 550 bei newsfeed-class */
    .download-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .download-column {
        flex-direction: column; /* geändert von row in column */
        justify-content: flex-start;
        text-align: left;
    }
    
    .download-label {
        min-width:100px;
        margin-bottom: 5;
        margin-right: 10px;
        text-align: center; /* geändert von right in center */
    }
    
    .download-column .social-icon {
        width: 60px;
        height: 60px;
        font-size: 35px;
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .download-text {
        margin-top: 0;
        margin-left: 15px;
        text-align: left;
        flex: 1;
    }
}