article {
    width: 100%;
  }
  main {
    width: 100%;
}
    
section {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

aside {
    width: 100%;
}
.main-white{
    background: #Ffffff;
}
.main-white-2{
    background: #F2EEE2;
}
#main-global {
    background: #F2EEE2;
}
#main-search-filter {
padding-left: 0px;
padding-right: 0px;
padding-top: 40px;
margin-bottom: 40px;
}
.main-content {
max-width: 980px;
margin-left: auto;
margin-right: auto;
background-color: rgb(255, 255, 255);
padding: 60px 40px 60px 40px;
margin-bottom: 80px;
border-radius: 3px;
}
.main-content-filter {
max-width: 980px;
margin-left: auto;
margin-right: auto;
}
.main-content-post {
margin-top: -40px;
position: relative;
z-index: 5;
}
.main-content-home {
    margin-top: 0px;
    position: relative;
    margin-bottom: 0px;
}
.main-titre {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    height: 120px;
    border-top: 1px solid #282D57;
    padding-left: 40px;
    padding-right: 40px;
}
.main-titre h2 {
text-align: center;
font-size: 22px;
font-weight: 400;
letter-spacing: 1.5px;
color: rgb(40, 45, 87);
line-height: 25px;
}
.main-accroche {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    height: 60svh;
    height: 60dvh;
    text-align: center;
    width: 100%;
}
.main-accroche h1 {
    font-family: "Inknut Antiqua", serif;
    font-weight: 100;
    font-style: italic;
    font-size: 30px;
    letter-spacing: 0px;
    margin-bottom: 0; /* Tu peux supprimer ou ajuster selon le contexte */
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 40px;
    padding-right: 20px;
    padding-left: 20px;
    color: #fff;
    z-index: 99;
}
.main-bt {
    display: flex;
    flex-direction: column; /* ou row si tu veux aligner horizontalement */
    align-items: center; /* centre horizontalement */
    justify-content: center; /* centre verticalement */
    height: 220px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
}
.bt-plus {
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #282D57;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #282D57;
    max-width: 900px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: fit-content;
    display: inline-block;
    align-items: center;
    gap: 10px;
}
.bt-plus:hover {
    background-color: #282D57;
    border: 1px solid #282D57;
    color: #fff;
}
.bt-img {
    display: inline;
    margin-right: 5px;
}
.bt-img img {
width: 13px;
height: auto;
mix-blend-mode: difference;
}
.loader-content {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;

}
.loader {
    width: 40px;
    height: 40px;
    border: 5px solid #282D57;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 