/* Specific to the home */

.pagecontent {
    display: grid;
}

.introlead {
    grid-area: introlead;
    font-size: 1.3rem;
    line-height: 1.8rem;
}

.introimage {
    grid-area: introimage;
}

.title4 {
    grid-area: title4;
    text-align: center;
}

.nutritional_benefits {
    grid-area: nutritional_benefits;
}

.trade_channels {
    grid-area: trade_channels;
}

.protect_environment {
    grid-area: protect_environment;
}

.food_waste {
    grid-area: food_waste;
}

.pagecontent {
    padding: 3.5vw;
    grid-template-columns: auto;
    grid-template-areas: 
    'introimage'
    'introlead'
    'title4'
    'nutritional_benefits'
    'trade_channels'
    'protect_environment'
    'food_waste'
}

h2 {
    font-size: 1.8rem;
    line-height: 2rem;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.6rem;
}

.trade_channels ol {
    padding: 0 20px;
}

/* Visual header */

.visual-header {
    background-repeat: no-repeat;
    background-image: url(../img/backgrounds/frutos_secos_1.svg), url(../img/backgrounds/frutos_secos_2.svg), url(../img/backgrounds/frutos_secos_3.svg), url(../img/backgrounds/frutos_secos_4.svg);
    background-position: top left, top right, bottom left, bottom right;
    background-size: calc(200px * 0.7) auto, calc(240px * 0.7) auto, calc(110px *0.7) auto, calc(200px *0.7) auto;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 580px) {
    .visual-header {
        height: 350px;
    }
    h2 {
        font-size: 1.8rem;
        line-height: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
        line-height: 1.9rem;
    }
}

@media screen and (min-width: 880px) {
    .visual-header {
        height: 420px;
        background-size: calc(200px * 1) auto, calc(240px * 1) auto, calc(110px * 1) auto, calc(200px * 1) auto;
    }
    h1 {
        max-width: 700px;
    }

    h2 {
        font-size: 2rem;
        line-height: 2.3rem;
    }
    
    h3 {
        font-size: 1.6rem;
        line-height: 1.9rem;
    }

    .pagecontent {
        grid-template-columns: 47vw 47vw;
        column-gap: 1.2vw;
        padding: 0.7vw;
        grid-template-areas: 
        'introlead introimage'
        'title4 title4'
        'nutritional_benefits trade_channels'
        'protect_environment food_waste'
    }

    .introlead {
        font-size: 1.9vw;
        line-height: 2.7vw;
        padding: 3vw;
    }

}

@media screen and (min-width: 1200px) {
    .visual-header {
        height: 420px;
        background-size: calc(290px * 1) auto, calc(290px * 1) auto, calc(150px * 1) auto, calc(250px * 1) auto;
    }
}

@media screen and (min-width: 1365px) {

    h1 {
        max-width: 840px;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 2.8rem;
    }

    .visual-header {
        background-size: calc(200px * 1.5) auto, calc(240px * 1.5) auto, calc(110px * 1.5) auto, calc(200px * 1.5) auto;
    }

    .pagecontent {
        grid-template-columns: 23.5vw 23.5vw 23.5vw 23.5vw;
        column-gap: 1.2vw;
        padding: 0.7vw;
        grid-template-areas: 
        'introlead introlead introimage introimage'
        'title4 title4 title4 title4'
        'nutritional_benefits trade_channels protect_environment food_waste'
    }

}

/* PRINT */

@media print {
    .visual-header {
        height: 200px;
    }
}
