.history {
    padding-left: 64px;
    padding-right: 64px;
}

.history h2, .history p{
    padding: 0;
}

.history-grid{
    display: grid;
    gap: 80px;
    margin-top: 40px;
    padding: 0;
}

.history-row{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.history-img {
    position: relative;
    border-radius: var(--radius);
    border: var(--border);
    border-top: 2px solid var(--accent);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.history-img::before {
    content: none;
}

.history-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2), 0 0 24px rgba(127, 168, 160, 0.20);
}

.history-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 400ms ease;
}

.img-chut {
    object-position: center 10%;
}

.history-img:hover img {
    transform: scale(1.04);
}

.history-content{
    order: 2;
}

.history-content em{
    color: var(--accent2);
    font-weight: bold;
}

.history-content p{
    margin: 0;
    padding: 0;
    line-height: 2;
    text-align: justify;
}

.history-row:nth-child(2) .history-img{ 
    order: 2; 
}
.history-row:nth-child(2) .history-content{
    order: 1;
}

.history-row:nth-child(2){
    grid-template-columns: 2fr 1fr;
}

/* Focus images (history) */
.history-img img.img-coffee{
    object-position: center 15%;
}

.history-img img.img-arbre{
    object-position: center 20%;
}


