/* =====================================
   PAGE BANNER (Match Existing Theme)
===================================== */

.page-banner {
    background: #f8fbff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e3eaf2;
}

.page-banner h1 {
    font-size: 36px;
    color: #0b2c4d;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 14px;
    color: #555;
}

.page-banner a {
    color: #0d6efd;
    text-decoration: none;
    transition: 0.3s;
}

.page-banner a:hover {
    color: #d4af37; /* golden hover */
}

/* =====================================
   CATEGORY FILTER
===================================== */

.category-filter {
    padding: 30px 0;
    background: #ffffff;
}

.category-filter select {
    padding: 10px 15px;
    border: 1px solid #e3eaf2;
    border-radius: 6px;
    font-size: 14px;
    color: #0b2c4d;
    outline: none;
    cursor: pointer;
}

/* =====================================
   MARKET NEWS FEED
===================================== */

.market-news-section {
    padding: 50px 0;
    background: #ffffff;
}

.news-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #e3eaf2;
    transition: 0.3s ease;
}

.news-item:hover {
    background: #f8fbff;
}

.news-image img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

.news-content h2 {
    font-size: 20px;
    color: #0b2c4d;
    margin-bottom: 10px;
}

.news-content h2 a {
    color: #0b2c4d;
    text-decoration: none;
    transition: 0.3s;
}

.news-content h2 a:hover {
    color: #0d6efd;
}

.news-summary {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-meta {
    font-size: 13px;
    color: #777;
}

/* =====================================
   PAGINATION
===================================== */

.pagination-section {
    padding: 40px 0;
    background: #ffffff;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    border: 1px solid #e3eaf2;
    color: #0b2c4d;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.pagination a:hover {
    background: #0d6efd;
    color: #ffffff;
}

.pagination a.active {
    background: #0b2c4d;
    color: #ffffff;
    border-color: #0b2c4d;
}

/* =====================================
   RESPONSIVE DESIGN
===================================== */

@media (max-width: 992px) {
    .news-item {
        flex-direction: column;
    }

    .news-image img {
        width: 100%;
        height: auto;
    }
}
/* =====================================
   NEWS DETAIL PAGE
===================================== */

.news-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

.news-detail h1 {
    font-size: 32px;
    color: #0b2c4d;
    margin-bottom: 15px;
}

.news-detail .news-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.news-detail-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.back-link a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.back-link a:hover {
    color: #d4af37;
}
.news-feed{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.news-card{
    display:flex;
    background:#ffffff;
    border:1px solid #e3eaf2;
    border-radius:8px;
    overflow:hidden;
    transition:0.3s;
}

.news-card:hover{
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.news-image img{
    width:220px;
    height:160px;
    object-fit:cover;
}

.news-body{
    padding:18px 22px;
    flex:1;
}

.news-title{
    font-size:22px;
    margin:8px 0;
}

.news-title a{
    color:#0b2c4d;
    text-decoration:none;
}

.news-title a:hover{
    color:#0d6efd;
}

.news-summary{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
}

.news-meta{
    font-size:13px;
    color:#777;
}

.read-more{
    display:inline-block;
    margin-top:10px;
    font-size:14px;
    color:#0d6efd;
    text-decoration:none;
}

.read-more:hover{
    text-decoration:underline;
}

/* CATEGORY BADGES */

.category-badge{
    font-size:11px;
    font-weight:600;
    padding:4px 8px;
    border-radius:4px;
    color:white;
}

.equity{
    background:#1e88e5;
}

.commodity{
    background:#43a047;
}

.currency{
    background:#fb8c00;
}

.global{
    background:#8e24aa;
}
.article-wrapper{
    display:flex;
    gap:40px;
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.article-main{
    flex:3;
}

.article-sidebar{
    flex:1;
    border-left:1px solid #e3eaf2;
    padding-left:20px;
}

.article-sidebar h3{
    margin-bottom:15px;
}

.latest-item{
    margin-bottom:15px;
}

.latest-item a{
    font-weight:600;
    color:#0b2c4d;
    text-decoration:none;
}

.latest-item a:hover{
    color:#0d6efd;
}

.latest-item span{
    display:block;
    font-size:12px;
    color:#777;
}