/* Styles pour la section d'hébergement d'images - GLASS DESIGN */

.image-hosting-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hosting-label {
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.hosting-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.hosting-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-color: rgba(118, 75, 162, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hosting-link svg {
    flex-shrink: 0;
    stroke: white;
}

/* Responsive pour petits écrans */
@media (max-width: 768px) {
    .image-hosting-section {
        flex-wrap: wrap;
    }
    
    .hosting-label {
        width: 100%;
        margin-bottom: 8px;
    }
}
