/* Bannière fond */
/* .home-banner{
    position: absolute;
    z-index: 0;
    width: 100vw;
} */
.home-banner-wrapper{
    position: relative;
    background-image: url(../../../img/bloc-atelier.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: 8.75rem;
}

.home-banner-inner {
    position: relative;
    padding: 200px 0;
}

.home-illustration{
    position: absolute;
    top: 45%;
    left: -20px;
}

.home-text-grid{
    position: relative;
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 2.5rem;
}

/* Texte */
.home-text-block {
    margin-bottom: 20px;
}

.home-text-title {
    font-family: 'GoodBakwan';
    color: #FFFFFF;
    font-size: 5em;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.home-text-content {
    color: #FFFFFF;
    font-size: 1.1em;
    line-height: 1.6;
}

.home-text-content p {
    margin-bottom: 15px;
}

.home-text-content p:last-child {
    margin-bottom: 0;
}

.home-text-content h3 {
    color: #FFFFFF;
    font-size: 1.3em;
    margin-bottom: 10px;
    margin-top: 20px;
}

.home-text-content ul,
.home-text-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.home-text-content li {
    margin-bottom: 8px;
}


/* Thumbnails */
.home-text-pola{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pola-large {
    width: 75%;
    transform: rotate(10deg);
    z-index: 5;
}

.pola-small{
    width: 50%;
    transform: rotate(-8deg) translateY(-30px);
    z-index: 6;
}

/* Style responsive */
@media (max-width: 768px) {
    .home-text-block {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .home-text-title {
        font-size: 1.5em;
    }

    .home-text-content {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .home-text-container {
        margin: 15px 0;
    }

    .home-text-block {
        padding: 15px 10px;
    }

    .home-text-title {
        font-size: 1.3em;
        margin-bottom: 10px;
    }
}