html, body {
    font-family: sans-serif;
    background-color: #efefef;
}

/* Hero section */
.hero {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%),
      linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25));
    backdrop-filter: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 4px 14px rgba(0,0,0,0.6);
}

/* News Container Layout */
.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 100px 0px auto;
}

/* Featured News - Left Side */
.featured-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 10px 30px 10px;
    border-radius:  18px;
    background-color: #FCFAFA;
}

.featured-news img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-category {
    background-color: #98CE00;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    text-transform: uppercase;
}

.featured-content h2 {
    font-size: 32px;
    margin: 0;
    color: #333;
    line-height: 1.3;
}

.featured-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.see-more {
    text-align: center; 
    margin-top: 10px; 
}

.see-more a {
    /* background-color: #008148; */
    border-radius: 3px;
    border: 2px solid #98CE00;
    padding: 5px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    text-decoration: none; 
    /* color: #afed02;  */
    font-weight: bold; 
    transition: color 0.3s ease; 
}

.see-more a:hover {
    color: #a3de03; 
}

/* News Sidebar - Right Side */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-sidebar h3 {
    font-size: 20px;
    margin: 0;
    color: #333;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eee;
    background-color: #FCFAFA;
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-content h4 {
    font-size: 14px;
    margin: 0;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.news-item-content time {
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
        margin: 0 0 0 auto;;
    }

    .featured-news img {
        height: 300px;
    }

    .featured-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero { height: 200px; }
    .hero-content h1 { font-size: 44px; }
    .featured-news img { height: 200px; }
    .news-sidebar h3 { text-align: center; }
}