main article section{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
main article section h2{
    text-align: center;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
main article section h2::before{
    content: "";
    background-image: url(../images/h2_bg.svg);
    width: 45px;
    height: 28px;
    background-size: cover;
    margin: 0 auto;
}
@media (max-width: 960px) {
    main article section h2{
        font-size: 1.3rem;
    }
    main article section h2::before{
        width: 30px;
        height: 18px;
    }
}

main article section > div{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}
main article section > div table{
    border-collapse: collapse;
}
main article section > div table caption{
    text-align: left;
    margin-bottom: .5em;
}
main article section > div table th{
    text-align: left;
    font-weight: normal;
}
main article section > div table span{
    font-size: .8rem;
}

main article section > div table:first-of-type{
    margin-bottom: 2rem;
    width: 100%;
}
main article section > div table:first-of-type th,
main article section > div table:first-of-type td{
    border: 1px solid rgba(30,58,76,1);
    padding: 1rem;
}
main article section > div table:first-of-type th{
    background: rgba(251,249,240,1);
}

main article section > div table:last-of-type td{
    text-align: right;
}
main article section > div table:last-of-type th,
main article section > div table:last-of-type td{
    padding: .5rem 2rem .5rem 0 ;
}
main article section > div table br{
    display: none;
}
@media (max-width: 960px) {
    main article section > div{
        grid-template-columns: 1fr;
    }
    main article section > div figure{
        grid-row: 2;
    }
    main article section > div > div{
        grid-row: 1;
    }
    main article section > div table br{
        display: block;
    }
    main article section > div table:last-of-type{
        width: 100%;
    }
    main article section > div table:last-of-type th,
    main article section > div table:last-of-type td{
        width: 100%;
        display: block;
    }
}