/* News & Events Sidebar */
.news-sidebar {
    position: relative;
    top: 70px; /* Below navbar */
    right: 0;
    width: 350px;  /*2025-09-28 - To add back the width*/
    /*height: calc(100vh - 160px);*/
    /*height: calc(100vh - 96px);*/
    height: calc(900px - 76px);   /*2025-09-28  - Using footprint Png pixel */
    /*background: white; original*/
    /*background: #CC9A69;*/
    background: transparent;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    /*box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); original*/
    /*opacity: 0.5;*/ /* 50% transparent */
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px; /* This rounds all four corners */
    /*border-left: 3px solid var(--accent);*/
    
    /*background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;*/
}

/* 2026-02-25 - news-sidebar1 used for All news and events*/
.news-sidebar1 {
    position: relative;
    top: 70px; /* Below navbar */
    right: 0;
    /*width: 350px;*/  /*2025-09-28 - To add back the width*/
    /*height: calc(100vh - 160px);*/
    /*height: calc(100vh - 96px);*/
    height: calc(900px - 76px);   /*2025-09-28  - Using footprint Png pixel */
    /*background: white; original*/
    /*background: transparent;*/
    background: rgba(0, 0, 0, 0.5);  /*semi-transparent*/
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    /*box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); original*/
    /*opacity: 0.5;*/ /* 50% transparent */
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px; /* This rounds all four corners */
    /*border-left: 3px solid var(--accent);*/
    
}

/* 2026-02-25 - news-sidebar1 H3 used for All news and events*/
.news-sidebar1 h3 {
    /*color: var(--secondary);*/
    color: white;
    margin-bottom: 10px;
    padding-bottom: 10px;
    /*border-bottom: 2px solid var(--primary);*/
    border-bottom: 2px solid #602F03;
}


.news-sidebar h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    padding-bottom: 10px;
    /*border-bottom: 2px solid var(--primary);*/
    border-bottom: 2px solid #602F03;
}

.news-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s;
}

.news-item:hover {
    /*background-color: #f8f9fa;*/
    background-color:#A0DFD9;   /* 2025-09-28 Tiffany Blue*/
    /*background-color:#0BB3B1;/*     /* 2025-10-10 Tiffany Blue*/
    border-radius: 5px;
    padding: 15px;
}
        
.news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
        
.news-item h4 {
    /*color: var(--secondary); original*/
    color: white;
    margin-bottom: 8px;
    font-size: 18px;
}
        
.news-date {
    /*color: #7f8c8d; original*/
    color: #1371AF;
    /*font-size: 14px;  2025-09-28*/
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.news-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    display: none; /* 2025-09-28 Hidden by default */
}

.news-item.active p {
    display: block; /* 2025-09-28 Show when active */
}

/* 2025-10-10 Read-more arrow by rotating 180deg*/
.news-item.active .read-more i {
    transform: rotate(180deg);
}

/* 2025-10-04 Add image inside the news & events*/
.news-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


/* 2025-10-04 Add image1 inside the news & events - used for All news and events*/
.news-img1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2025-10-04 Hidden by default for image*/
/*#more {display: none;}*/

/*.news-item.active p, h5 {
    display: block; */   /* Show when active */
/*    max-height: 500px;
    opacity: 1;
} */

.read-more {
    display: inline-block;
    color: #1371AF;
    /*color: var(--primary);*/ /*2025-09-28*/
    /*color: #602F03;*/
    font-weight: 500;
    font-size: 16px;  /* 2025-10-13 Enlarge the font from 12px to 16px */
    text-decoration: none;
    margin-top: 8px;
}

/* 2025-10-10 Add transition*/
.read-more i {
    transition: transform 0.3s ease;
}

        
.read-more:hover {
    text-decoration: underline;
}

/*        .news-item.active p {
            display: block; */  /* Show when active */
/*            max-height: 500px;
            opacity: 1;
        }   */
        
