.blog-card-container
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.blog-card
{
    position: relative;
    min-height: 512px;
    cursor: pointer;
}
.blog-img
{
    width: 100%;
    height: 296px;
    object-fit: cover;
}
.blog-card:hover > .arrow-001
{
    background-color: var(--theme-color-2);
}
.blog-card:hover > .arrow-001 > img
{
    transform: rotate(45deg);
}
@media (max-width: 1024px)
{
    .blog-card-container
    {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-title
    {
        font-size: 32px;
    }
}
@media (max-width: 720px)
{
    .blog-card-container
    {
        grid-template-columns: repeat(1, 1fr);
    }
}