:root {
    --primary-color: #1a4b8c;
    --secondary-color: #c9a96e;
    /* --secondary-color: #ffde37; */
    --light-color: #f8f9fa;
    --dark-color: #1c3f60;
}

/* Hero Section */
.page-header {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Specific backgrounds */
.research-header {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../images/research.jpeg");
}

.news-header {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../images/news.jpeg");
}

.page-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.article-header h1{
    color: var(--primary-color);
}

#article-excerpt {
    font-size: 1.1rem;
    background-color: #f9f9f9;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.news-layout {
    display: flex;
    gap: 10px;
}

.article-display {
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 70%;
}

.news-list {
    width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: calc(100vh - 200px);
    position: sticky;
    top: 20px;
}

.news-list-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-list-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.news-items {
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    padding: 0;
}

.news-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
}

.news-item:hover {
    background: #f5f7fa;
}

.news-item.active {
    background: #e3f2fd;
    border-left: 4px solid var(--secondary-color);
}

.news-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.news-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.featured-badge {
    background: var(--accent-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
}

.article-header {
    padding: 5px;
    border-bottom: 1px solid var(--border-color);
}

.article-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.article-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.article-excerpt {
    background: #f5f7fa;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
    color: #555;
}

.article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.article-content {
    padding: 3px;
    line-height: 1.7;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.article-tags {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    background: #f5f7fa;
}

.tag {
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 8px;
    display: inline-block;
    margin-bottom: 5px;
}

.search-box {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ccc;
}
    .news-list{
        width: 30%;
    }
.news-layout {
    display: flex;
    align-items: flex-start;
}

.news-list {
    max-height: 80vh;
    overflow-y: auto;
}

.news-container {
    padding-bottom: 30px; /* small gap from footer */
}

@media (max-width: 992px) {
    .article-display {
        width: 100%;
    }
    .news-layout {
        flex-direction: column;
    }

    .news-list {
        width: 100%;
        max-height: none;
        position: static;
    }

    .news-items {
        max-height: 400px;
    }
    .news-list{
        width: 100%;
    }
}

/* Default: no special alignment */
img {
    max-width: 100%;
    height: auto;
}

/* Float left with text wrapping */
.alignleft {
    float: left;
    margin: 0 !important;
    padding-right: 15px;
}

/* Float right with text wrapping */
.alignright {
    float: right;
    margin: 0 !important;
    padding-left: 15px;
}

/* Center the image */
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

@media (max-width: 768px) {  /* adjust breakpoint as needed */
    .alignleft,
    .alignright,
    .aligncenter {
        float: none !important;    /* cancel float */
        display: block !important;  /* make block */
        margin: 0 auto 15px auto;  /* center with spacing */
        width: 100% !important;    /* full width */
    }
}
