/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/


.bloghome {
    background: #f5f5f5;
    padding: 50px 100px;
    color: black;
    margin-top: 30px;
}

    .bloghome  img{
        height: auto;
    }

.bloghome  p{
    color: black;
}

.bloghome li{
    color: black;
}

.bloghome  a{
    color: #ffffff !important;
    font-weight: 900;
    text-decoration: underline;
}

.bloghome  a:hover{
    color: white !important;
    font-weight: bold;
    border-radius: 20px 0;
}

.bloghome  img{
    width:100%;
}

.blogheader{
        display: flex;
        justify-content: space-between;
    border-bottom: solid 1px;

}

.blogheader h2{
    color: black;

}

.voirplus{
        background: #5a3a7d;
    color: white !important;
    padding: 10px;
    height: 40px;
}


.blogheader a {
    background: #000000;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
}
        

.card-containerhome {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-bloghome {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.card-bloghome img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 25px;
}

.card-bloghome h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.card-bloghome p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 15px 15px;
    color: #555;
}

.card-bloghome a {
    margin: 15px 15px;
    color: black !important;
    text-decoration: none;
    padding: 15px;
    font-weight: bold;
}

.card-bloghome a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 900px) {

    .blogheader h2{
        font-size: medium
    }
    .bloghome{
        padding:10px;
    }
    .card-bloghome{
                max-width: 100% !important;
    }
    }