@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;700&display=swap');

.lp15-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Mukta', sans-serif;
    margin-bottom: 30px;
}

.lp15-main {
    flex: 2;
    position: relative;
    min-width: 300px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
}

.lp15-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp15-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
}

.lp15-overlay h2 {
    font-size: 25px; /* तपाईंले भन्नुभएको साइज */
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.lp15-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
}

.lp15-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    align-items: center;
}

.lp15-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.lp15-item h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

/* मोबाइल रेस्पोन्सिभ */
@media (max-width: 768px) {
    .lp15-container { flex-direction: column; }
    .lp15-main { height: 280px; }
    .lp15-overlay h2 { font-size: 20px; }
}
