.BlogList {
    width: 100%;
    padding: .375rem 0 9.375rem;
}

.BlogList .center {
    display: flex;
    flex-wrap: wrap;
}

.BlogList .center .BlogBox {
    width: 24.1%;
    margin-right: 1.2%;
    position: relative;
    border-top: 1px solid #c7c7c7;
    margin-bottom: 3.125rem;
    transition: all 0.3s ease-in-out;
}

.BlogList .center .BlogBox:hover {
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
}

.BlogList .center .BlogBox::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #1b4176;
    position: absolute;
    left: 50%;
    top: -1px;
    transition: all 0.5s ease-in-out;
}

.BlogList .center .BlogBox:hover:before {
    width: 100%;
    left: 0;
}

.BlogList .center .BlogBox:nth-child(4n) {
    margin-right: 0;
}

.BlogBox a .com {
    width: 7.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
    border-radius: 2rem;
    font-size: .75rem;
    font-family: "Poppins_Regular";
    color: #0b0500;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: 1.25rem;
}

.BlogBox a .com::before {
    content: "";
    display: block;
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: #1b4176;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}


.BlogBox:hover a .com:before {
    left: 0;
}

.BlogBox:hover a .com {
    color: #ffffff;
}

.BlogBox a .title {
    font-size: 1.5rem;
    line-height: 1.875rem;
    color: #0b0500;
    font-family: "Poppins_Bold";
    margin-top: 2.25rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.BlogBox a .time {
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: "Poppins_Regular";
    color: #0b0500;
    margin-top: 3rem;
}

.BlogBox a .prc {
    margin-top: 3.375rem;
    aspect-ratio: 395/220;
    overflow: hidden;
}

.BlogBox a .prc img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 100%;
    transition: all 0.3s ease-in-out;

}

.BlogBox:hover a .prc img {
    transform: scale(1.1);
}

@media (max-width: 1400px) {
    .BlogBox a .com {
        margin-top: 1rem;
    }

    .BlogBox a .title {
        font-size: 1.375rem;
        margin-top: 2rem;
    }

    .BlogBox a .time {
        margin-top: 2.5rem;
    }

    .BlogBox a .prc {
        margin-top: 3rem;
    }

    .BlogList .center .BlogBox {
        margin-bottom: 3rem;
    }

    .BlogList {
        padding: .375rem 0 7.375rem;
    }
}

@media (max-width: 1200px) {
    .BlogList {
        padding: .375rem 0 4.375rem;
    }

    .BlogBox a .title {
        font-size: 1.25rem;
        margin-top: 1.75rem;
    }

    .BlogBox a .time {
        margin-top: 2rem;
    }

    .BlogBox a .prc {
        margin-top: 2rem;
    }

    .BlogList .center .BlogBox {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1099px) {
    .BlogList .center .BlogBox {
        width: 32%;
    }

    .BlogList .center .BlogBox:nth-child(n) {
        margin-right: 2%;
    }

    .BlogList .center .BlogBox:nth-child(3n) {
        margin-right: 0;

    }

    .BlogList {
        padding: .375rem 0 3.375rem;
    }

    .BlogBox a .title {
        margin-top: 1.5rem;
    }

    .BlogBox a .time {
        margin-top: 1.5rem;
    }

    .BlogList .center .BlogBox {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 850px) {
    .BlogList .center .BlogBox:nth-child(n) {
        width: 49%;
        margin-right: 0;
    }

    .BlogList .center {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .BlogBox a .com {
        margin-top: .75rem;
    }

    .BlogBox a .title {
        margin-top: 1rem;
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .BlogBox a .time {
        margin-top: 1rem;
        font-size: .875rem;
    }

    .BlogBox a .prc {
        margin-top: 1rem;

    }

    .BlogList {
        padding: .375rem 0 2.375rem;
    }
}

@media (max-width: 520px) {
    .BlogList .center .BlogBox:nth-child(n) {
        width: 100%;
    }

    .BlogList {
        padding: .375rem 0 1.375rem;
    }
}