
    .containerblog {
      display: flex;
      width: 100% !important;
      margin: auto !important;
    }

    .left-column {
      width: 100%;
      padding-right: 45px;
    }

    .right-column {
      width: 25%;
    }
    
     .containerarticles {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Grille en masonry */
            gap: 30px;
            margin:5px;
        }

        .card {
            background-color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .card h3 {
            font-size: 22px;
            margin: 10px 0;
            color: #333;
        }

        .card .category {
            font-size: 16px;
            color: #777;
        }

        .card p {
            font-size: 16px;
            color: #555;
            margin: 10px 0;
            line-height: 1.4;
        }

        .card .line {
            width: 50px;
            height: 5px;
            background-color: #B1981C;
            margin: 10px 0;
            border-radius: 5px; /* Arrondir les coins du filet */
        }

        .card .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-top: 10px;
        }

        .card .footer .date {
            font-size: 14px;
            color: #aaa;
        }

        .card .footer .read-more {
            font-weight: bold;
            display: flex;
            align-items: center;
            cursor: pointer;
            background: none;
            border: none;
        }

        .card .footer .read-more .text {
            margin-right: 0px; 
            color: #555;
            font-weight: bold;
            font-size: 16px;
        }

        .card .footer .read-more .icon {
            padding: 8px;
            background-color: #B1981C;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card .footer .read-more .icon:hover {
            background-color: #9E8720;
        }

        .card .footer .read-more .icon::after {
            font-size: 18px;
        }
                

       .paginate {
            padding: 0;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            margin: 0px auto;
            margin-top: 40px;
            width: 100%;
        }
        .paginate a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            transition: background 0.3s;
            text-align: center;
        }
        .paginate a:hover {
            background: #B1981C !important;
            color: white !important;
        }
        .paginate .active  {
            background: #B1981C !important;
            color: white !important;
        }
        @media (max-width: 600px) {
            .paginate a {
                display: none;
            }
            .paginate a:first-child, .paginate a:last-child, .paginate .active {
                display: block;
            }

            .container1 {
                display: block !important;
            }

            .containerblog {
                display: block !important;
            }

            .left-column {
                width: 100% !important;
              }
          
              .right-column {
                width: 100% !important;
              }
        }
        .category {
            font-size: 16px;
           	color: #777;
       	}

        .read-more { 
        display: inline-block !important; 
        padding: 5px 15px !important; 
        background: #B1981C !important; 
        
        text-decoration: none !important; 
        border-radius: 25px !important; 
        }

        .read-more a{ 
        color: white !important; 
        }

        .read-more a:hover{ 
        color: white !important; 
        }

        .category {
            font-size: 16px;
           color: #777;
            }

            .container1 {
                display: flex;
              }
          
              .left-column {
                width: 100%;
                padding-right: 45px;
              }
          
              .right-column {
                width: 25%;
              }
          
              .wp-block-pullquote{
              padding:0px !important;
              }

              
        .LB-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .LB-card {
            display: flex;
            flex-direction: column;
            text-align: center;
            border: 0px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
            min-height: 450px;
            height: 450px;
            justify-content: space-between;
        }

        .LB-card img {
            width: 150px;
            max-height: 227px;
            object-fit: cover;
            border-radius: 10px;
            display: block;
            margin: 0 auto;
        }

        .LB-card p {
            margin: 15px 0;
            font-size: 15px;
        }

        .LB-btn {
            display: inline-block;
            padding: 10px 15px;
            border-radius: 30px;
            background-color: black;
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: background-color 0.3s;
            line-height: 1.2;
        }

        .LB-btn:hover {
            background-color: #B1981C;
            color: white;
        }


        .conteneur-form {
            width: 90%;
            max-width: 800px;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        .small {
  		font-weight: 300 !important;
  		color: white;
  		text-align: center;
  		font-size: 18px !important;
  		width: 100%;
        background: #B1981C;
        padding: 10px;
        margin: 0px;
        border-radius: 10px;
		}

        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .header h2 {
            margin: 0;
            font-size: 24px;
            color: #333;
            flex: 1;
        }

        .header img {
            width: 150px; /* Ajuste la taille de l'image selon besoin */
            height: auto;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        label {
            font-weight: bold;
            color: #000;
            display: block;
            margin-top: 5px;
        }

        input {
            width: 100%; /* S'étend sur toute la largeur disponible */
            padding: 10px;
            margin-top: 5px;
            background: #efefef;
            border: none;
            border-radius: 5px;
            box-sizing: border-box;
            margin-bottom: 15px; /* Ajout d'espace entre les champs */
        }

        .name-fields {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
            margin-bottom: 10px;
        }

        .name-fields div {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .rgpd {
            display: flex;
            align-items: flex-start;
            margin-top: 30px;
            width: 100%; /* S'étend sur toute la largeur */
        	gap: 10px;
        }

        .rgpd input {
            width: auto;
            
        }

        .bt-envoyer {
            background-color: #b1981C !important;
            color: #ffffff !important;
            border-radius: 50px;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
            margin-top: 15px;
            width: auto;
            max-width: 460px;
            font-size: 16px;
        }

        .bt-envoyer:hover {
            background-color: #000000 !important;
            color: #ffffff !important;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .header img {
                margin-top: 10px;
                width: 100px; /* Réduction de la taille de l'image sur mobile */
            }

            .name-fields {
                flex-direction: column;
                align-items: stretch;
            }

            .name-fields div {
                margin-bottom: 10px;
            }
        }

        #formlb{
            margin-top: 30px;
        }


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

        .news-item {
            border: 0px solid #ddd;
            overflow: hidden;
            width: 100%;
            max-width: 400px;
        }

        .news-image {
            position: relative;
            width: 100%;
            height: 200px !important;
            background: #ccc;
            object-fit: cover;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-image img {
            width: 100%;
            height: 200px !important;
            object-fit: cover;
            border-radius: 5px !important;
            margin-bottom: 10px;
        }

        .news-date {
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 50%;
            background: black;
            color: white;
            font-size: 12px;
            font-weight: 300;
            text-align: center;
            padding: 8px 0;
            margin-bottom: 6px;
        }

        .news-content {
            background: white;
            padding: 20px;
        }

        .news-title {
            font-size: 18px;
            line-height: 21px;
            font-weight: bold;
            color: black;
            margin-top: 15px;
        }
        
        .news-title a {
            font-size: 18px;
            line-height: 21px;
            font-weight: bold;
            color: black;
            margin-top: 15px;
        }

        .cattext {
            margin-top: 15px;
            font-size: 12px;
        }

        .cattext a {
            text-decoration: none;
            color: #B1981C;
        }

        .cattext a:hover {
            text-decoration: underline;
            color: #B1981C;
        }

        @media (min-width: 768px) {
            .news-container {
                justify-content: space-around;
            }
        }

        @media (min-width: 1024px) {
            .news-container {
                flex-wrap: nowrap;
            }
        }


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

        .LBindex-item {
            border: 0px solid #ddd;
            overflow: hidden;
            width: 100%;
            max-width: 400px;
        }

        .LBindex-image {
            position: relative;
            width: 100%;
            height: 250px !important;
            background: #ccc;
        }

        .LBindex-image img {
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        .LBindex-date {
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 50%;
            background: black;
            color: white;
            font-size: 12px;
            font-weight: 300;
            text-align: center;
            padding: 8px 0;
            margin-bottom: 6px;
        }

        .LBindex-content {
            background: white;
            padding: 20px;
        }

        .LBindex-title {
            font-size: 18px;
            line-height: 21px;
            font-weight: bold;
            color: black;
            margin-top: 15px;
        }
        
        .LBindex-title a {
            font-size: 18px;
            line-height: 21px;
            font-weight: bold;
            color: black;
            margin-top: 15px;
        }

        .cattext {
            margin-top: 15px;
            font-size: 12px;
        }

        .cattext a {
            text-decoration: none;
            color: #B1981C;
        }

        .cattext a:hover {
            text-decoration: underline;
            color: #B1981C;
        }

        .LB-special {
            border: 3px solid #B1981C;
            background: transparent;
            padding: 30px;
            width: 100%;
            max-width: 400px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .LB-special-title {
            font-size: 22px;
            font-weight: 300;
            color: black;
            margin-bottom: 10px;
            padding-bottom: 25px;
            position: relative;
        }

        /* Limiter la largeur de la ligne sous le titre à 50px */
        .LB-special-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 1px;
            background-color: #B1981C;
        }

        .LB-special-text {
            font-size: 14px;
            color: black;
            margin-top: 20px;
            margin-bottom: 10px;
            line-height: 25px;
        }

        .LB-special-link {
        	margin-top: 30px;
            font-size: 12px;
            font-weight: bold;
            color: black;
            text-decoration: none;
        }

        .LB-special-link::after {
            content: " ➜";
            color: #B1981C;
        }

        @media (min-width: 768px) {
            .LBindex-container {
                justify-content: space-around;
            }
        }

        @media (min-width: 1024px) {
            .LBindex-container {
                flex-wrap: nowrap;
            }
        }

	.check {
		margin-top: 30px;
	}
	.labelcheck {
		font-weight: normal;
		margin-top: 0px;
	}
	.form-ancre {
		padding-top: 250px;
	}
	.small {
  		font-weight: 600;
	}