#snapshot {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    border-top: solid 1px #000;
    position: relative;
}
#snapshot::before {
    content: "";
    display: block;
    width: 3.125rem;
    height: 0.3125rem;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}

#snapshot-header {
    padding-top: 2.125rem;
}
#snapshot-header-title {
    font-size: 2.5rem;
    line-height: 1.125;
    margin: 0;
}

#snapshot-article-list {
    margin: 0 auto;
}
.snapshot-article {
    position: relative;
    width: 100%;
    padding-bottom: 2.5rem;
}
.snapshot-article::before {
    content: "";
    display: block;
    width: 100%;
    border-bottom: dashed 1px #999;
    position: absolute;
    bottom: 0;
    right: 0;
}
.snapshot-article > a {
    position: relative;
    display: block;
    margin-top: 2.5rem;
}
.snapshot-article-image {
    background-color: #fff;
    margin-bottom: 0.8rem;
}
.snapshot-article-update {
    margin: 0;
}
.snapshot-article-title {
    margin: 0;
    font-weight: 700;
}
.snapshot-article-body {
    margin-bottom: -0.75rem;
}
.snapshot-article-body p {
    margin: 0;
}
.snapshot-article-body::after {
    content: "Continued";
    font-weight: 700;
}

@media screen and (max-width: 767px)
{
    .snapshot-article:last-of-type::before {
        display: none;
    }
}

@media screen and (min-width: 768px)
{
    #snapshot {
        margin: 0;
        padding: 0 0 6.25rem 0;
        width: 100%;
    }
    #snapshot::before {
        width: 6.25rem;
        height: 0.625rem;
        bottom: -0.625rem;
    }

    #snapshot-header {
        justify-content: flex-start;
        padding-top: 7.25rem;
        padding-bottom: 3.75rem;
        margin: 0;
    }
    #snapshot-header-title {
        font-size: 5rem;
    }

    #snapshot-article-list {
        width: calc(100% - 0.9375rem);
        padding-top: 1.875rem;
        -webkit-transform: translate(-0.78125rem, 0);
        transform: translate(-0.78125rem, 0);
    }
    .snapshot-article {
        width: calc(100% / 3);
        padding-left: 1.5625rem;
    }
    .snapshot-article::before {
        width: calc(100% - 1.5625rem);
    }
}

@media screen and (min-width: 768px) and (any-hover: hover)
{
    .snapshot-article > a::before {
        content: "";
        display: block;
        width: calc(100% + 1.5625rem);
        height: calc(100% + 0.875rem);
        background-color: rgba(0,0,0,0.05);
        position: absolute;
        top: -0.78125rem;
        left: -0.78125rem;
        z-index: -1;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: .2s;
        transition: .2s;
    }
    .snapshot-article > a:hover::before {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}