/* Bloc Dispatch - Styles */

.bloc-dispatch {
    padding: 40px 0;
}

.bloc-dispatch__card {
    background-color: #f5f5f5;
    border-radius: 0 20px 0 0;
    padding: 20px;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloc-dispatch__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bloc-dispatch__icon {
    margin-bottom: 22px;
    flex-shrink: 0;
}

.bloc-dispatch__icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.bloc-dispatch__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 26px;
    color: #000;
    margin: 0 0 22px 0;
    text-align: center;
}

.bloc-dispatch__description {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    color: #000;
    margin: 0 0 30px 0;
    max-width: 415px;
}



.bloc-dispatch__button .btn {
    background-color: #be0000;
    color: #fff;
    border: none;
    border-radius: 0 20px 0 20px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.bloc-dispatch__button .btn:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* Éléments décoratifs */
.bloc-dispatch__decoration {
    position: absolute;
    width: 52px;
    height: 52px;
    background-image: url(../../images/icons/coin-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    @media (max-width: 992px){
        height: 20px!important;
        width: 20px!important;
    }
}

.bloc-dispatch__decoration--top-left {
    top: 30px;
    left: 30px;
}

.bloc-dispatch__decoration--bottom-right {
    bottom: 30px;
    right: 30px;
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .bloc-dispatch {
        padding: 20px 0;
    }
    
    .bloc-dispatch__card {
        min-height: 350px;
        margin-bottom: 30px;
        height: inherit;
    }
    
    .bloc-dispatch__title {
        font-size: 4vw;
        line-height: 1.2;
    }
    
    .bloc-dispatch__description {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
    }
    
    .bloc-dispatch__icon-img {
        width: 40px;
        height: 40px;
    }
    
    .bloc-dispatch__decoration {
        width: 40px;
        height: 40px;
    }
    
    .bloc-dispatch__decoration--top-left {
        top: 20px;
        left: 20px;
    }
    
    .bloc-dispatch__decoration--bottom-right {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .bloc-dispatch__title {
        font-size: 5vw;
    }
    
    .bloc-dispatch__card {
        min-height: 300px;
    }
}



