.nagarikpana-hero-section {
    padding: 30px 0;
    background-color: #fff;

}

/* Headline */
.hero-headline-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #000;
}

.hero-main-title a:hover {
    color: var(--primary-color);
}

.hero-meta {
    font-size: 14px;
    color: #666;
}

.hero-meta span {
    margin: 0 10px;
}

/* Ad */
.hero-ad-space {
    margin-bottom: 30px;
    padding: 20px 0;
    background: #f9f9f9;
    text-align: center;
}

.ad-placeholder-long {
    height: 90px;
    background: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
}

/* Split Content */
.hero-content-split {
    display: flex;
    flex-wrap: wrap;
}

.hero-left-image {
    width: 65%;
    padding-right: 30px;
    box-sizing: border-box;
}

.hero-left-image .main-thumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.hero-left-image .image-caption {
    margin-top: 15px;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.hero-right-list {
    width: 35%;
    box-sizing: border-box;
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.hero-list-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.hero-list-item:last-child {
    border-bottom: none;
}

.hero-list-title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 5px;
    font-weight: 600;
}

.hero-list-date {
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .hero-content-split {
        flex-direction: column;
    }

    .hero-left-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-right-list {
        width: 100%;
        border-left: none;
        padding-left: 0;
    }
}