.grid-layout article{
    grid-template-columns: 100%;
}

.grid-layout.index article{
    grid-template-areas:
        "title"
        "intro"
        "figure"
        "firms"
        "list"
        "table";
}

.grid-layout.detail article{
    grid-template-areas:
        "header"
        "intro"
        "figure"
        "impacts";
}


h1, h2{
    font-size: 130%;
}

textarea{
    width: 95%;
}