
.main-nav a {
    color: inherit;
}
    .section {
    margin-bottom: 40px;
}

.top-stories {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.feature-story {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

.feature-story img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.feature-story-content {
    padding: 15px;
}

.feature-story h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-story p {
    font-size: 1rem;
    color: #666;
}

.side-stories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* .side-story {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
} */

.side-story img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    border-radius: 5px;
}

.side-story h4 {
    font-size: 1rem;
    margin-top: 10px;
    color: #333;
}

.side-story p {
    font-size: 0.85rem;
    color: #666;
}

.stories-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    
}

.story img {
    width: 120px;
    height: 80px;
    border-radius: 8px;
}

.story-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.story-content p {
    font-size: 0.9rem;
    color: #666;
}

.ent-head{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.ent-sub{
    margin-bottom: 30px;     
}

@media (max-width: 768px) {
    .top-stories {
        grid-template-columns: 1fr;
    }

    .side-stories {
        grid-template-columns: 1fr;
    }

    .story {
        flex-direction: column;
        align-items: center;
    }

    .story img {
        width: 100%;
    }

    .feature-story img, .side-story img, .story img {
    height: 250px !important;
    }
    .side-story h4{
        line-height: 20px !important;
        font-size: 1.2rem !important;
        margin-bottom: 10px;
    }
}

a:hover {
    text-decoration: none;
}

.side-stories a {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.side-stories, .stories-grid a:hover {
    text-decoration: none;
}



@media only screen and (max-width: 600px) {
    .feature-story img {
        width: 100%;
        height: 460px;
        object-fit: fill;
        border-radius: 5px;
    }
  }


  
.ent-sub{
    margin-bottom: 30px !important;     
}
