.mc-section {
    margin-bottom: 48px;
}

.mc-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.mc-description {
    margin: 10px 0 22px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.mc-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mc-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border: 1px solid #ddd;
    border-radius: 999px;

    background: #fff;

    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition: all .2s ease;
}

.mc-pill:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.mc-footer {
    margin-top: 22px;
}

.mc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}


@media (max-width:768px) {

    .mc-section {
        margin-bottom: 36px;
    }

    
    .mc-description {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .mc-group {
        gap: 10px;
    }

    .mc-pill {
        padding: 9px 16px;
        font-size: 14px;
    }

}
.mc-pill{

    transition:
        opacity .25s ease,
        transform .25s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease;

}

.mc-pill.mc-hidden{

    display:none !important;

    opacity:0;

    transform:translateY(-8px);

}

.mc-section.is-expanded .mc-pill.mc-hidden{

    display:inline-flex !important;

    animation:mcFade .25s ease forwards;

}

@keyframes mcFade{

    from{

        opacity:0;

        transform:translateY(-8px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.mc-footer {
    margin-top: 20px;
}

.mc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

    font-size: 15px;
    font-weight: 600;

    color: inherit;
}

.mc-view-all span{

    display:inline-block;

    margin-left:6px;

    font-size:18px;

    font-weight:700;

    transition:.25s;

}


.mc-view-all:hover {
    opacity: .8;
}
.mc-view-all{

    text-transform:none !important;

    font-weight:600;

    letter-spacing:0;

}