/*==================================================

MAHESA INSTAGRAM SECTION
Author : Bangkit x ChatGPT

==================================================*/

.mh-ig-section{

    width:100%;
    padding:110px 0;
    background:#fafafa;
    position:relative;
    overflow:hidden;

}

.mh-ig-container{

    width:100%;
    max-width:1450px;
    margin:0 auto;
    padding:0 35px;

}

.mh-ig-header{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;

}

.mh-ig-subtitle{

    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#c7a26a;
    font-weight:700;
    margin-bottom:18px;

}

.mh-ig-title{

    font-size:44px;
    font-weight:700;
    line-height:1.2;
    color:#202020;
    margin:0 0 20px;

}

.mh-ig-description{

    font-size:16px;
    line-height:1.9;
    color:#767676;
    margin:0;

}

.mh-ig-grid{

    display:grid;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:30px;

    align-items:start;

}

.mh-ig-item{

    width:100%;

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.mh-ig-item:hover{

    transform:translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.13);

}

.mh-ig-item blockquote{

    width:100% !important;

    max-width:100% !important;

    margin:0 !important;

    min-width:100% !important;

}

/* Instagram kadang kasih margin */

.mh-ig-item iframe{

    width:100% !important;

}

/*====================

TABLET

=====================*/

@media screen and (max-width:1200px){

.mh-ig-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*====================

MOBILE

=====================*/

@media screen and (max-width:768px){

.mh-ig-section{

padding:80px 0;

}

.mh-ig-container{

padding:0 20px;

}

.mh-ig-grid{

grid-template-columns:1fr;

gap:22px;

}

.mh-ig-title{

font-size:32px;

}

.mh-ig-description{

font-size:15px;

}

}