article
{
    width: 100%;
    margin-bottom: 50px;
}
article:last-of-type
{
    margin-bottom: 0;
}
article>h2
{
    width: 100%;
    display: flex;
    align-items: center;
    height: 65px;
    background-color: #272727;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}
.play-no
{
    font-family: "oswald", sans-serif;
    font-size: 30px;
    width: 70px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.play-no.no-01{background-color: #D73B2F;}
.play-no.no-02{background-color: #E2743F;}
.play-no.no-03{background-color: #E6BA3E;}
.play-no.no-04{background-color: #49A99F;}
.play-no.no-05{background-color: #4F68A7;}
.play-no.no-06{background-color: #1A94D3;}
.play-no.no-07{background-color: #D94431;}

.play-name
{
    font-size: 22px;
    padding-left: 20px;
    letter-spacing: 1px;
}
.game-content
{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
    .photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    max-width: 48%;
    margin: 0;
    }

    .photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    }
    
    .photo img:nth-child(1) {
    grid-column: 1 / 3;
    }
    .img-1
    {
        border-radius: 10px 10px 0 0;
    }
    .img-2
    {
        border-radius: 0 0 0 10px;
    }
    .img-3
    {
        border-radius: 0 0 10px 0 ;
    }
    .description 
    {
        width: 48%;
    }
    .description  p
    {
        font-size: 16px;
        line-height: 28px;
        font-weight: 400;
    }
    .game-content small
    {
        font-size: 13px;
        color: #909090;
        margin-top: 25px;
        display: flex;
        line-height: 20px;
        font-weight: 400;
    }
    /* .game-content small>span:first-child
    {
        white-space: nowrap;
    } */

    @media all and (max-width:767px) {
        .game-content
        {
            flex-direction: column;
            gap: 15px;
        }
        .photo
        {
            width: 100%;
            max-width: 100%;
        }
        .description
        {
            width: 100%;
        }
        .play-name
        {
            font-size: 18px;
            padding-left: 15px;
            padding-right: 10px;
            flex: 1;
        }
        article>h2
        {
            height: 60px;
            margin-bottom: 15px;
            position: relative;
        }
        .play-no
        {
            width: 48px;
            height: 100%;
            font-size: 24px;
            letter-spacing: 1px;
        }
        .game-content small
        {
            margin-top: 20px;
        }
    }