/* 🔹 Conteneur principal */
.funding-banner {
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    background: #FBF7F3;
    padding: 20px;
}
.funding-product{
	display: flex;
	flex-direction: row;
}

.collect{
	font-size: 26px !important;
	font-weight: 700;
}
.progress-content p{
	margin: 3px 0;
	text-align: left
	
}

.funding-product-title{
	width: 100%;
	text-align: center;
}

.funding-product-title h3{
	margin: 15px 0 0 0;
}

/* 🔹 Colonne Image (50%) */
.funding-product-image {
    flex: 1;
    max-width: 60%;
    overflow: hidden;
}

.funding-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.funding-product-image img:hover {
    transform: scale(1.05);
}

/* 🔹 Colonne Contenu (50%) */
.funding-product-content {
    flex: 1;
    max-width: 40%;
    padding: 20px;
    text-align: center;
}

.funding-product-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.funding-product-content p {
    font-size: 16px;
}

/* 🔹 Bouton */
.funding-button {
    display: inline-block;
	width: max-content;
    padding: 10px 20px;
    font-size: 16px;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    background: white;
    transition: all 0.3s ease-in-out;
}

.funding-button:hover {
    background: black;
    color: white;
}

/* 🔹 Badge Ulule */
.funding-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.funding-badge img {
    max-width: 120px;
    height: auto;
}

.funding-badge p {
    font-size: 14px;
    font-weight: bold;
    color: #484848;
    margin-top: 5px;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .funding-banner {
        flex-direction: column;
        text-align: center;
    }

    .funding-product-image,
    .funding-product-content {
        max-width: 100%;
    }

    .funding-product-content {
        padding: 10px;
    }
	
    .funding-product {
        display: flex;
        flex-direction: column;
    }
}

}
