.mw-category-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mw-category-container>h2 {
    display: flex;
    gap: 12px;
    font-size: 30px;
    text-transform: lowercase;
    font-family: 'Poppins-ExtraBold';
    margin: 20px 0;
    color: #D51C17;
    text-transform: capitalize;
}

.mw-area {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: minmax(90px, auto);
    gap: 20px;
    margin-bottom: 24px;
}

/* category column header info */
.mw-category-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin: 25px 0;
}

.mw-category-info-header {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
}
.mw-category-info-header > h2 {
    display: flex;
    flex-direction: row;
    font-family: 'Poppins-ExtraBold';
    align-items: center;
    gap: 15px
}

.img-placeholder {
    /* width: 7.6923vw;
    height: 7.6923vw; */
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.mw-category-info-header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mw-category-info-header-text > span:first-child {
    font-size: 40px;
    margin-bottom: 10px;
}

.mw-category-info-header-text > span:last-child {
    font-size: 16px;
}

.mw-category-info-description {
    max-width: 46%;
    height: auto;
    font-family: 'Poppins-Medium';
    font-size: 15px;
    line-height: 20px;
    margin-top: 20px;
    color: #6E6E6E;
    font-weight: lighter;
}

.mw-page-header-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0;
    background-color: #E5E5E5;
}
/* end category column header info */

@media (max-width: 1024px){
    .mw-area{
        grid-template-columns: repeat(9, 1fr);
    }
}

@media (max-width:640px) {
    .mw-category-container {
        width: 100%;
    }

    .mw-area {
        display: grid;
        grid-auto-rows: minmax(90px, auto);
        grid-auto-flow: row;
        gap: 20px;
        margin: 20px 0;
        overflow: hidden;
    }
}
