/* ====== GLOBAL ====== */
.mel-layout{
    display:grid;
    grid-template-columns:2.2fr 1fr;
    gap:32px;
    max-width:1300px;
    margin:40px auto;
    padding:0 20px;
}
@media(max-width:992px){
    .mel-layout{grid-template-columns:1fr}
}

/* ====== LEFT SIDE ====== */
.mel-cover {
    width: 100%;
    height: 420px;              /* desktop default */
    background-size: contain;   /* FULL IMAGE VISIBLE */
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    background-color: #f5f5f5;  /* empty space ke liye clean bg */
}

/* Mobile view */
@media (max-width: 768px) {
    .mel-cover {
        height: 260px;          /* mobile ke liye better ratio */
        border-radius: 14px;
    }
}

.mel-interest-wrap{
    margin-top:15px;
}
.mel-interest{
    background:#ffecec;
    border:1px solid #ffb3b3;
    padding:10px 20px;
    border-radius:30px;
    font-size:15px;
    cursor:pointer;
}
.mel-about{
    margin-top:35px;
}
.mel-about h2{
    font-size:22px;
    margin-bottom:10px;
}
.mel-description{
    font-size:15px;
    line-height:1.7;
    color:#333;
}

/* ===== TAGS ===== */
.mel-tags{
    margin-top:30px;
}
.mel-tag-group{
    margin-bottom:12px;
}
.mel-tag{
    display:inline-block;
    background:#f1f3f6;
    color:#333;
    padding:6px 14px;
    border-radius:20px;
    margin:5px;
    font-size:13px;
    text-decoration:none;
}
.mel-tag:hover{
    background:#012c6d;
    color:#fff;
}

/* ====== RIGHT SIDE ====== */
.mel-right{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
}
.mel-sticky{
    position:sticky;
    top:90px;
}
.mel-title{
    font-size:24px;
    margin-bottom:15px;
}
.mel-info-list{
    list-style:none;
    padding:0;
    margin:0 0 20px 0;
}
.mel-info-list li{
    margin-bottom:10px;
    font-size:15px;
}
.mel-book-btn{
    display:block;
    background:#e64545;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:12px;
    font-size:16px;
    text-decoration:none;
    margin-bottom:10px;
}
.mel-share-btn{
    display:block;
    text-align:center;
    background:#25D366;
    color:#fff;
    padding:12px;
    border-radius:12px;
    text-decoration:none;
}

/* ===== EVENT LIST GRID ===== */
.mel-events{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}
.mel-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.3s;
}
.mel-card:hover{
    transform:translateY(-6px);
}
.mel-card-img{
    height:180px;
    background-size:cover;
    background-position:center;
}
.mel-card-body{
    padding:15px;
}
.mel-card h3{
    font-size:17px;
    margin:0 0 8px;
}
.mel-card-meta{
    font-size:13px;
    color:#666;
    margin-bottom:10px;
}
.mel-card a{
    text-decoration:none;
    color:#012c6d;
    font-weight:600;
}

/* ===== LATEST EVENTS ===== */
.mel-latest-wrap{
    max-width:1300px;
    margin:60px auto;
    padding:0 20px;
}
.mel-latest-wrap h2{
    font-size:26px;
    margin-bottom:20px;
}
