#blog_index{
    background:#ffffff;
    padding:0;
}

.blog_index .__100{
    width:100%;
    max-width:none;
    background:#ffffff;
    border-top:0;
    border-left:0;
}

.blog_index__section{
    display:block;
    width:100%;
}

.blog_index__grid{
    display:grid;
    grid-template-columns:1fr;
    align-items:stretch;
    width:100%;
    min-width:0;
}

.blog_index__grid .blog_card_large{
    grid-column:1 / -1;
}

.blog_index__more{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    grid-column:1 / -1;
    width:100%;
    min-height:72px;
    padding:0 24px;
    background:#ffffff;
    border-right:0;
    border-bottom:1px solid #e2e2e2;
    color:#111111;
    font-size:18px;
    font-weight:650;
    line-height:1;
    text-decoration:none;
    transition:background .16s ease, color .16s ease;
}

.blog_index__more:hover,
.blog_index__more:focus{
    background:#f3f3f3;
    color:#ed5e30;
    text-decoration:none;
}

.blog_index__more:focus{
    outline:none;
}

.blog_index__more:focus-visible{
    outline:2px solid rgba(237,94,48,.32);
    outline-offset:-4px;
}

.blog_index__more_text{
    display:block;
}

.blog_index__more_icon{
    display:block;
    width:1.1em;
    height:1.1em;
    background:currentColor;
    flex:0 0 1.1em;
    -webkit-mask-repeat:no-repeat;
    -webkit-mask-position:center;
    -webkit-mask-size:1.1em 1.1em;
    mask-repeat:no-repeat;
    mask-position:center;
    mask-size:1.1em 1.1em;
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 12h14 M13 6l6 6-6 6'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 12h14 M13 6l6 6-6 6'/%3E%3C/svg%3E");
}

.blog_index__empty{
    grid-column:1 / -1;
    width:100%;
    min-height:220px;
    background:#ffffff;
}

@media (min-width:641px){
    #blog_index{
        background:#eeeeee;
        padding:0;
    }

    .blog_index .__100{
        width:95%;
        max-width:1300px;
        background:#ffffff;
        border-top:1px solid #e2e2e2;
        border-left:1px solid #e2e2e2;
    }

    .blog_index__grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .blog_index__grid .blog_card{
        border-right:1px solid #e2e2e2;
    }

    .blog_index__grid .blog_card_large{
        grid-column:1 / -1;
    }

    .blog_index__more{
        min-height:86px;
        border-right:1px solid #e2e2e2;
        font-size:20px;
    }
}

@media (min-width:1024px){
    .blog_index__grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }

    .blog_index__grid .blog_card_large{
        grid-column:span 2;
    }
}

@media (prefers-reduced-motion:reduce){
    .blog_index__more{
        transition:none;
    }
}