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

.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Mukta', sans-serif;
    max-width: 1100px;
    margin: 20px auto;
}

/* मुख्य समाचार */
.main-story {
    flex: 2;
    position: relative;
    min-width: 300px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}

.main-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-story:hover img {
    transform: scale(1.05);
}

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

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

/* साइडबार */
.side-stories {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 300px;
}

.side-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.side-item img {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

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

.time-text {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
    display: block;
}

/* अपडेट बटन */
.update-btn {
    background: #FF9F55;
    color: white !important;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* मोबाइल रेस्पोन्सिभ */
@media (max-width: 768px) {
    .news-container { flex-direction: column; padding: 10px; }
    .main-story { height: 300px; }
    .main-overlay h2 { font-size: 22px; }
    .side-item img { width: 90px; height: 65px; }
}
