/*==================================
        INSTAGRAM REELS
==================================*/

.instagram{

    padding:120px 0;

    background:#faf9f5;

}

.reels-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:70px;

}

.reel-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

}

.reel-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.reel-video{

    width:100%;

    aspect-ratio:9/16;

    object-fit:cover;

    background:#000;

}

.reel-info{

    padding:25px;

}

.reel-info h3{

    font-size:22px;

    margin-bottom:10px;

}

.reel-info p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}

.watch-btn{

    display:inline-block;

    padding:12px 28px;

    background:#C88400;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.watch-btn:hover{

    background:#a96d00;

}