/*====================================================
CATEGORY GRID
====================================================*/

.category-grid-section{
    width:100%;
    max-width:1332px;
    margin:80px auto;
    padding:0;
    display:block;
    clear:both;
    box-sizing:border-box;
}

.category-grid{
    width:max-content;
    max-width:100%;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,390px);
    column-gap:38px;
    row-gap:16px;
    justify-content:start;
    box-sizing:border-box;
}

.category-block{
    width:390px;
}

.category-inner{

    width:390px;

    background:#fff;

    padding:14px;

    border-radius:14px;

    overflow:hidden;

    box-sizing:border-box;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08),
        0 18px 40px rgba(0,0,0,.05),
        0 0 1px rgba(0,0,0,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.category-inner:hover{

    transform:translateY(-3px);

    box-shadow:
        0 14px 30px rgba(0,0,0,.12),
        0 24px 50px rgba(0,0,0,.08),
        0 0 1px rgba(0,0,0,.08);
}



.category-heading{

    width:390px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 4px;

    margin:0 0 12px;

    border-top:1px solid #111;

    border-bottom:1px solid #111;

    box-sizing:border-box;
}

.category-heading h2{
    margin:0;
    padding:0;

    display:flex;
    align-items:center;

    height:100%;

    color:#111;

    font-size:20px;
    font-weight:600;

    line-height:1;

    text-transform:uppercase;
}

.category-view{

    display:flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:#111;

    font-size:13px;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.25s;
}

.category-view span{

    line-height:1;
}

.category-view img{

    width:16px;

    height:16px;

    transition:.25s;
}

.category-view:hover{

    color:#dd111a;
}

.category-view:hover img{

    transform:translateX(4px);
}

.category-line{
    width:390px;
    height:1px;
    background:#111;
    margin:12px 0 16px;
}

.category-inner{
    width:390px;

    padding:0;

    box-sizing:border-box;
}


.category-featured-image,
.category-featured-image img{

    width:390px;

    height:219px;
}


.category-featured-image img{

    width:390px;

    height:185px;

    display:block;

    object-fit:cover;

    border-radius:8px;

    transition:.3s ease;
}

.category-featured-image:hover img{

    transform:scale(1.02);
}

.category-featured-title{

    width:100%;

    margin:14px 0 12px;

    padding:0 14px;

    box-sizing:border-box;
}


.category-featured-title a:hover{
    color:#dd111a;
}

.category-list{

    width:100%;

    padding:0 14px 14px;

    box-sizing:border-box;
}

.category-list li{

    position:relative;

    width:100%;

    display:flex;

    align-items:flex-start;

    padding:8px 0 8px 18px;

    border-top:1px solid #99a1af;

    box-sizing:border-box;
}

.category-list li::before{
    content:"";
    position:absolute;
    left:4px;
    top:50%;
    transform:translateY(-50%);
    width:5px;
    height:5px;
    border-radius:50%;
    background:#dd111a;
}

.category-list a{
    width:372px;

    height:auto;

    display:block;

    color:#111;

    text-decoration:none;

    font-size:16px;

    line-height:24px;

    word-break:break-word;
}

@media (max-width:1331px) and (min-width:769px){

    .category-grid-section{
        max-width:1300px;
        padding:0 16px;
    }

    .category-grid{
        width:100%;
        grid-template-columns:repeat(3,minmax(0,1fr));
        column-gap:28px;
        row-gap:36px;
        justify-content:normal;
    }

    .category-block,
    .category-inner,
    .category-heading,
    .category-line,
    .category-featured-image,
    .category-featured-image img,
    .category-list a{
        width:100%;
    }
}

@media (max-width:980px) and (min-width:769px){

    .category-grid-section{
        max-width:816px;
    }

    .category-grid{
        width:100%;
        grid-template-columns:repeat(2,minmax(0,1fr));
        column-gap:36px;
        row-gap:32px;
    }
}

.category-list a:hover{
    color:#dd111a;
}











































