/* News Newspaper-Style Layout CSS */
/* Traditional newspaper format for Pagadian City Council News */

.news-article-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #6366f1;
}

.news-article-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.2;
    border-bottom: 3px solid #e5e7eb;
    padding-bottom: 12px;
}

.news-article-card p {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 12px;
}

/* Two-column newspaper layout for content */
.news-article-card > div:last-of-type {
    columns: 2;
    column-gap: 30px;
    column-rule: 2px solid #e5e7eb;
}

/* Mobile responsive - single column */
@media (max-width: 768px) {
    .news-article-card > div:last-of-type {
        columns: 1;
    }

    .news-article-card h3 {
        font-size: 22px;
    }
}

/* Hide search result info when showing full articles */
.results-info {
    display: none !important;
}

/* Search container adjustments */
.enhanced-search-container {
    max-width: 100%;
}

.search-results {
    margin-top: 20px;
}

/* Yellow highlight for search matches */
mark, .search-highlight {
    background: yellow !important;
    color: #000 !important;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}
