Grid Float para elemento figure

Photo by Roberto Nickson
Photo by Roberto Nickson
Photo by Scott Webb
Photo by Scott Webb
Photo by Oleg Chursin
Photo by Oleg Chursin
Photo by Alan Haverty
Photo by Alan Haverty
Photo by Dorothy Lin
Photo by Dorothy Lin
Photo by Luke Chesser
Photo by Luke Chesser
Photo by Sonja Langford
Photo by Sonja Langford
Photo by Kamil Lehmann
Photo by Kamil Lehmann
Photo by Alexander Shustov
Photo by Alexander Shustov
Photo by Forrest Cavale
Photo by Forrest Cavale
<div class="floatbox_figure">
    <figure class="col_50">
        <img src="<?php picsum('photo/?id=1011&w=640&h=450') ?>" alt="">
        <figcaption class="cite">Photo by Roberto Nickson</figcaption>
    </figure>
    <figure class="col_50">
        <img src="<?php picsum('photo/?id=1012&w=640&h=450') ?>" alt="">
        <figcaption class="cite">Photo by Scott Webb</figcaption>
    </figure>

    <figure class="col_33">
        <img src="<?php picsum('photo/?id=43&w=400&h=280') ?>" alt="">
        <figcaption class="cite">Photo by Oleg Chursin</figcaption>
    </figure>
    <figure class="col_33">
        <img src="<?php picsum('photo/?id=45&w=400&h=280') ?>" alt="">
        <figcaption class="cite">Photo by Alan Haverty</figcaption>
    </figure>
    <figure class="col_33">
        <img src="<?php picsum('photo/?id=70&w=400&h=280') ?>" alt="">
        <figcaption class="cite">Photo by Dorothy Lin</figcaption>
    </figure>

    <figure class="col_60">
        <img src="<?php picsum('photo/?id=42&w=740&h=550') ?>" alt="">
        <figcaption class="cite">Photo by Luke Chesser</figcaption>
    </figure>
    <figure class="col_40">
        <img src="<?php picsum('photo/?id=324&w=640&h=450') ?>" alt="">
        <figcaption class="cite">Photo by Sonja Langford</figcaption>
    </figure>

    <figure class="col_30">
        <img src="<?php picsum('photo/?id=379&w=400&h=280') ?>" alt="">
        <figcaption class="cite">Photo by Kamil Lehmann</figcaption>
    </figure>
    <figure class="col_40">
        <img src="<?php picsum('photo/?id=65&w=640&h=450/') ?>" alt="">
        <figcaption class="cite">Photo by Alexander Shustov</figcaption>
    </figure>
    <figure class="col_30">
        <img src="<?php picsum('photo/?id=350&w=400&h=280') ?>" alt="">
        <figcaption class="cite">Photo by Forrest Cavale</figcaption>
    </figure>
</div>
.floatbox_figure {
    position: relative;
    display: block;
}
.floatbox_figure::before, .floatbox_figure::after {
    display: table !important;
    content: '' !important;
    clear: both !important;
}
figure[class^="col_"], figure[class*=" col_"] {
    margin: 0.313rem;
    padding: 0.45rem 0.45rem;
    width: calc(100% - 0.626rem);
    float: left;
}
@media(min-width: 480px) {
    figure[class^="col_"], figure[class*=" col_"] { 
        width: calc(50% - 0.626rem) 
    }
    figure.col_100 {
        width: calc(100% - 0.626rem)
    }
}
@media(min-width: 640px) {
    figure.col_20 { width: calc(20% - 0.626rem) }
    figure.col_25 { width: calc(25% - 0.626rem) }
    figure.col_30 { width: calc(30% - 0.626rem) }
    figure.col_33 { width: calc(33.333333% - 0.626rem) }
    figure.col_40 { width: calc(40% - 0.626rem) }
    figure.col_50 { width: calc(50% - 0.626rem) }
    figure.col_60 { width: calc(60% - 0.626rem) }
    figure.col_67 { width: calc(66.666667% - 0.626rem) }
    figure.col_70 { width: calc(70% - 0.626rem) }
    figure.col_75 { width: calc(75% - 0.626rem) }
    figure.col_80 { width: calc(80% - 0.626rem) }
}