/* Basic Page and Typography Styles */
body {
    background: #f1f1f1;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}
a {
    color: #0056b3;
    text-decoration: none;
}
img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* Main page container */
#body {
    background: #fff;
    box-shadow: 0 0 11px rgba(0,0,0,.25);
    margin: 0 auto;
    text-align: left;
    width: 100%;
    max-width: 1200px; /* Max width for desktop */
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s;
}
#body-content {
    background: #fff;
    padding: 0 15px;
    transition: background-color 0.3s;
}

/* New Header Styles */
#top-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}
#top-bar a { color: #fff; }
#top-social a { margin-left: 15px; }

#main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}
#logo a {
    background: url(https://hiiraan.com/hollogo/hollight.jpg) no-repeat;
    background-size: contain;
    width: 250px;
    height: 60px;
    display: block;
    text-indent: -9999px;
}
#header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
#main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
}
#main-nav a { color: #333; }

/* Search Box Styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#search-icon {
    background-color: #f39c12;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    cursor: pointer;
    z-index: 102;
    transition: background-color 0.3s;
}
#search-box {
    height: 40px;
    border: 2px solid #f39c12;
    border-radius: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-right: -40px; /* Pull it behind the icon */
}
.search-container.active #search-box {
    width: 250px;
    opacity: 1;
    visibility: visible;
    margin-right: 10px; /* Push it out from behind */
}
.search-container.active #search-icon {
    background-color: #0056b3;
}

/* Hamburger Menu */
#menu-toggle { display: none; }

/* Mobile Menu */
#mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}
#mobile-menu-header {
    text-align: right;
}
#close-mobile-menu {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
}
#mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
#mobile-menu-links li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
#mobile-menu-links a {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}
#mobile-menu-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
}
.mobile-footer-links {
    margin-bottom: 20px;
}
.mobile-footer-links a {
    margin: 0 10px;
    color: #333;
}
.mobile-social-links a {
    margin: 0 10px;
    font-size: 1.5em;
    color: #000;
}


/* --- Page Specific Styles --- */
#main-content {
    padding: 20px 0;
}
.main-layout {
    display: grid;
    /* Increased width for left column from 150px to 220px */
    grid-template-columns: 220px 1fr 300px; 
    gap: 20px;
}
.main-column {
    min-width: 0;
}
.sidebar-column {
    border-left: 1px solid #eee;
    padding-left: 20px;
}
.section-header {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2em;
    border-bottom: 3px solid #e56717;
    padding-bottom: 10px;
    margin: 40px 0 30px 0;
    color: #333;
    text-transform: uppercase;
}
.main-column .section-header:first-child,
.sidebar-column .section-header:first-child,
.left-sidebar-column .section-header { /* Applied to new header */
    margin-top: 0;
    font-size: 1.5em; /* Slightly smaller for sidebar context */
    margin-bottom: 20px;
}

ul.bullets {
    clear: both;
    margin: 20px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
ul.bullets li {
    padding: 0 !important;
    border-bottom: 1px solid #e1e1e1;
    transition: all 0.3s ease;
    background: #fff;
}
ul.bullets li:last-child {
    border-bottom: none;
}
ul.bullets li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    font-weight: bold !important;
    font-size: 17px; /* Increased font size */
    line-height: 1.4;
}
ul.bullets li a:hover { 
    background-color: #f8f9fa;
    color: #e56717 !important;
    text-decoration: none;
}
ul.bullets li a .thumb {
    width: 100px;
    height: 80px;
    border-radius: 0;
    flex-shrink: 0;
    object-fit: cover;
}
ul.bullets li a .link-text { flex-grow: 1; }
ul.bullets li em {
    display: block;
    color: #c50000 !important;
    font-weight: normal !important;
    margin-top: 5px;
    font-size: 12px;
}
.news-date {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    font-style: italic;
    font-weight: normal;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 15px;
    gap: 5px;
    flex-wrap: wrap;
}
.pagination a, .pagination .ellipsis {
    color: #0056b3;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color .3s;
}
.pagination a.active {
    background-color: #0056b3;
    color: white;
    border-color: #0056b3;
}
.pagination a:hover:not(.active) {
    background-color: #ddd;
    text-decoration: none;
}
.pagination .ellipsis {
    border: none;
    padding: 8px 5px;
}
.pagination .page-btn {
    font-weight: bold;
}
.contact {
    border: 1px solid #e1e1e1;
    color: red;
    font-weight: bold;
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

/* Sidebar Styles */
.sidebar-widget {
    margin-bottom: 30px;
}
.jobs-widget-wrapper {
    display: flex;
    justify-content: center;
}

/* Wararka Maanta Section */
.wm-section .featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.wm-section .featured .image-container {
    position: relative;
    width: 100%;
    height: 300px;
}
.wm-section .featured .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wm-section .featured .description {
    padding: 20px;
    font: 16px/1.7 Georgia, "Times New Roman", Times, serif;
    color: #333;
}
.wm-section .featured .title {
    font: bold 24px/1.3 Georgia, "Times New Roman", Times, serif;
    margin: 0;
    color: #000;
}
.wm-section .featured .title a {
    color: #000;
    text-decoration: none;
}
.wm-section .featured .button {
    background: #c50000;
    border: 2px solid #fff;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    outline: 1px solid #ccc;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
}
.wm-section h3.date-header {
    font: bold 14px/1 Oswald, Arial, Helvetica, sans-serif;
    margin: 0 0 20px 0;
    color: #444;
}

/* Video Section */
.video-section {
    margin-bottom: 30px;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4em;
    margin: 10px 0 0 0;
}


/* --- START: Improved Left Sidebar --- */

/* Remove old styles to prevent conflicts */
.left-sidebar-column .sidebar-widget h4, 
.left-sidebar-column .sidebar-widget h5 {
    all: unset; /* Resets all properties */
}
.left-sidebar-column .sidebar-widget h4::after, 
.left-sidebar-column .sidebar-widget h5::after {
    display: none;
}
.left-sidebar-column .sidebar-widget ul {
    all: unset;
    list-style: none; /* Re-apply as unset removes it */
}
.left-sidebar-column .sidebar-widget li {
    all: unset;
}
.left-sidebar-column .sidebar-widget li a {
    all: unset;
}
/* New Accordion Styles */
.links-accordion {
    /* Removed top border for a cleaner look with background color */
}
.links-accordion .accordion-item {
    /* Removed border from the item container */
}
.links-accordion .accordion-header {
    background-color: #e56717; /* Orange background */
    color: #fff; /* White text */
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 15px; /* Adjusted padding */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease-in-out;
    font-size: 0.9em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* Lighter separator */
}
.links-accordion .accordion-item:last-child .accordion-header {
    border-bottom: none;
}
.links-accordion .accordion-header:hover {
    background-color: #d45f15; /* Darker orange on hover */
}
.links-accordion .accordion-header::after {
    content: '';
    display: inline-block;
    width: 7px; /* Adjusted size */
    height: 7px; /* Adjusted size */
    border-right: 2px solid #fff; /* White arrow */
    border-bottom: 2px solid #fff; /* White arrow */
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.2s ease-in-out;
    margin-right: 5px;
}
.links-accordion .accordion-item.active .accordion-header {
    background-color: #d45f15; /* Darker orange when active */
}
.links-accordion .accordion-item.active .accordion-header::after {
    transform: rotate(-135deg);
}
.links-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
    background-color: #fdfdfd;
    padding-left: 0; /* Let list items control padding */
    padding-right: 0;
    border-bottom: 1px solid #ddd;
}
.links-accordion .accordion-content ul {
    list-style: none;
    padding: 5px 0; /* Add some vertical padding */
    margin: 0;
}
.links-accordion .accordion-content li a {
    display: block;
    padding: 10px 15px; /* Consistent padding */
    font-size: 14px;
    color: #555;
    border-top: 1px solid #f0f0f0;
    transition: color 0.2s, background-color 0.2s, padding-left 0.2s;
    line-height: 1.4;
}
.links-accordion .accordion-content li:first-child a {
    border-top: none;
}
.links-accordion .accordion-content li a:hover {
    color: #e56717;
    text-decoration: none;
    background-color: #f5f5f5;
    padding-left: 20px; /* Indent on hover */
}
/* --- END: Improved Left Sidebar --- */


/* --- START: Improved Right Sidebar Widgets --- */
.sidebar-article-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.sidebar-article-card {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #fdfdfd;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.sidebar-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}
.sidebar-article-card .card-image-link {
    flex-shrink: 0;
    width: 90px;
    height: 65px;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}
.sidebar-article-card .card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.sidebar-article-card:hover .card-image-link img {
    transform: scale(1.1);
}
.sidebar-article-card .card-content {
    flex-grow: 1;
}
.sidebar-article-card .card-title {
    margin: 0 0 4px 0;
    font-size: 1.05em;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.sidebar-article-card .card-title a {
    color: #333;
    transition: color 0.2s;
}
.sidebar-article-card:hover .card-title a {
    color: #e56717;
}
.sidebar-article-card .card-date {
    font-size: 0.8em;
    color: #888;
    text-transform: uppercase;
}
/* Remove default list styles from sidebar widgets */
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-widget li {
    border-bottom: 1px solid #eee;
}
 .sidebar-widget li:last-child {
    border-bottom: none;
}
.sidebar-widget li a {
    display: block;
    padding: 10px 0;
    color: #333;
}
/* --- Social Follow Widget --- */
.social-follow-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.social-follow-widget .social-icon {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
}
.social-follow-widget .social-icon:hover {
    opacity: 0.85;
    color: #fff;
}
.social-follow-widget .social-icon i {
    font-size: 1.2em;
    width: 30px;
    text-align: center;
}
.social-follow-widget .social-icon.facebook { background-color: #1877F2; }
.social-follow-widget .social-icon.twitter { background-color: #1DA1F2; }
.social-follow-widget .social-icon.youtube { background-color: #FF0000; }
.social-follow-widget .social-icon.instagram { background-color: #C13584; }
.social-follow-widget .social-icon.rss { background-color: #FFA500; }
/* --- END: Improved Right Sidebar Widgets --- */


/* More News Link */
.more-news-container {
    text-align: center;
    margin-top: 20px;
}
.more-news-link {
    display: inline-block;
    background-color: #e56717;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-decoration: none;
}
.more-news-link:hover {
    background-color: #d45f15;
    color: #fff;
    text-decoration: none;
}


/* --- Dark Mode Styles --- */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}
body.dark-mode #logo a {
    background-image: url(https://hiiraan.com/hollogo/holdark.jpg);
}
#dark-mode-text {
    font-size: 0.9em;
}
body.dark-mode #body,
body.dark-mode #body-content {
    background-color: #1e1e1e;
}
body.dark-mode a {
    color: #8ab4f8;
}
body.dark-mode .section-header {
    color: #e0e0e0;
    border-bottom-color: #555;
}
body.dark-mode ul.bullets li {
    background-color: #2a2a2a;
    border-bottom-color: #444;
}
body.dark-mode ul.bullets li a:hover {
    background-color: #333;
}
body.dark-mode #main-nav a {
    color: #e0e0e0;
}
body.dark-mode .sidebar-column {
    border-left-color: #444;
}
body.dark-mode .sidebar-widget li {
    border-bottom-color: #444;
}
body.dark-mode .sidebar-widget li a {
    color: #e0e0e0;
}
body.dark-mode .wm-section .featured {
    background-color: #2a2a2a;
    border: 1px solid #444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
body.dark-mode .wm-section .featured .title a,
body.dark-mode .wm-section .featured .description {
    color: #e0e0e0;
}
body.dark-mode .wm-section .featured .button {
    background: transparent;
    border: 2px solid #e56717;
    color: #e56717;
    outline: none;
}
body.dark-mode .wm-section .featured .button:hover {
    background: #e56717;
    color: #fff;
}
body.dark-mode .wm-section h3.date-header {
    color: #bbb;
}
body.dark-mode .news-article-container {
    background-color: #2a2a2a;
    border-color: #444;
}
body.dark-mode .article-header h1,
body.dark-mode .article-content {
    color: #e0e0e0;
}
body.dark-mode .more-news-section {
    border-top-color: #555;
}
body.dark-mode .more-news-item {
    border-bottom-color: #444;
}
body.dark-mode .share-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
}
body.dark-mode .share-btn.facebook { color: #1877f2; border-color: #1877f2; }
body.dark-mode .share-btn.messenger { color: #0084ff; border-color: #0084ff; }
body.dark-mode .share-btn.twitter { color: #1da1f2; border-color: #1da1f2; }
body.dark-mode .share-btn.whatsapp { color: #25d366; border-color: #25d366; }
body.dark-mode .share-btn.linkedin { color: #0a66c2; border-color: #0a66c2; }
body.dark-mode .share-btn.telegram { color: #0088cc; border-color: #0088cc; }
body.dark-mode .share-btn.email { color: #e0e0e0; border-color: #e0e0e0; }

body.dark-mode .share-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .share-count {
    color: #e0e0e0;
    background-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .corkboard {
    background-color: #3a2e20;
    border-color: #1e1e1e;
}
body.dark-mode .corkboard-title {
    color: #e0e0e0;
    text-shadow: none;
}
body.dark-mode .job-card {
    background-color: #2a2a2a !important;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    color: #e0e0e0;
}
body.dark-mode .job-card:nth-child(even) {
    background-color: #333 !important;
}
body.dark-mode .job-card.light {
    background-color: #444 !important;
    color: #e0e0e0;
}
body.dark-mode .more-news-link {
    background-color: transparent;
    border: 2px solid #e56717;
    color: #e56717;
}
body.dark-mode .more-news-link:hover {
    background-color: #e56717;
    color: #fff;
}

/* Dark Mode for Accordion */
body.dark-mode .links-accordion {
    border-top-color: #444;
}
body.dark-mode .links-accordion .accordion-header {
    background-color: #333; /* Dark background for dark mode */
    color: #e0e0e0;
    border-bottom-color: #444;
}
body.dark-mode .links-accordion .accordion-header:hover {
    background-color: #444;
    color: #e56717;
}
body.dark-mode .links-accordion .accordion-header::after {
    border-color: #e0e0e0;
}
body.dark-mode .links-accordion .accordion-item {
    border-bottom-color: #444;
}
body.dark-mode .links-accordion .accordion-content {
    background-color: #222;
    border-bottom-color: #444;
}
body.dark-mode .links-accordion .accordion-content li a {
    color: #ccc;
    border-top-color: #333;
}
body.dark-mode .links-accordion .accordion-content li a:hover {
    color: #e56717;
    background-color: #333;
}

/* Dark Mode for Top News */
body.dark-mode .top-news-v2-header {
    border-bottom-color: #444;
}
body.dark-mode .top-news-v2-header .top-news-heading {
    color: #e0e0e0;
}
body.dark-mode .top-news-v2-header a {
    color: #bbb;
}
body.dark-mode .top-news-v2-header a.active {
    background-color: #1e1e1e;
    color: #e56717;
    border-color: #444;
    border-bottom-color: #1e1e1e;
}
body.dark-mode .top-news-v2-card {
    background-color: #2a2a2a;
    border-color: #444;
    transition: background-color 0.3s;
}
body.dark-mode .top-news-v2-card:hover {
    background-color: #333;
}
body.dark-mode .top-news-v2-card-content h3 a {
    color: #8ab4f8;
    transition: color 0.3s;
}
body.dark-mode .top-news-v2-card:hover .top-news-v2-card-content h3 a {
    color: #e56717;
}
body.dark-mode .top-news-v2-card-content .date {
    color: #aaa;
}

/* Dark Mode for Improved Sidebar */
body.dark-mode .sidebar-article-card {
    background-color: #2a2a2a;
    border-color: #444;
}
body.dark-mode .sidebar-article-card:hover {
    background-color: #333;
    border-color: #555;
    box-shadow: none;
}
body.dark-mode .sidebar-article-card .card-title a {
    color: #e0e0e0;
}
body.dark-mode .sidebar-article-card:hover .card-title a {
    color: #e56717;
}
body.dark-mode .sidebar-article-card .card-date {
    color: #aaa;
}


/* Responsive Styles */
@media (max-width: 992px) {
    #main-header { flex-wrap: wrap; }
    #main-nav { display: none; }
    #logo { flex-basis: 100%; margin-bottom: 15px; text-align: center; }
    #logo a { margin: 0 auto; }
    #header-right { flex-basis: 100%; justify-content: space-between; }
    #menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5em;
    }
    .main-layout {
        display: flex;
        flex-direction: column;
    }
    .main-column {
        order: 1;
    }
    .sidebar-column {
        order: 2;
        border-left: none;
        padding-left: 0;
    }
    .left-sidebar-column {
        order: 3;
    }
}
@media (min-width: 993px) {
    #search-box {
        position: absolute;
        top: 50px; /* Position below the icon */
        right: 0;
        width: 250px; /* Fixed width */
        margin-right: 0;
        transform: translateY(-10px) scaleY(0.8);
        transform-origin: top;
        padding: 0 15px; /* Reset padding */
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .search-container.active #search-box {
        width: 250px; /* Keep width fixed */
        transform: translateY(0) scaleY(1);
        padding-right: 15px; /* Reset padding */
    }
}
@media (max-width: 767px) {
    .wm-grid { grid-template-columns: 1fr; }
}

/* --- Top News V2 Section --- */
.top-news-v2 {
    margin-bottom: 30px;
}

.top-news-v2-header {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    align-items: center;
}

.top-news-v2-header .top-news-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-right: 15px;
}

.top-news-v2-header a {
    padding: 10px 15px;
    font-weight: bold;
    color: #555;
    text-decoration: none;
    border-radius: 4px 4px 0 0;
    font-size: 0.9em;
    border: 1px solid transparent;
    border-bottom: none;
}

.top-news-v2-header a.active {
    background-color: #fff;
    color: #e56717;
    border-color: #eee;
    border-bottom-color: #fff;
    position: relative;
    top: 1px;
}

.top-news-v2-grid {
    display: none; /* Hidden by default */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.top-news-v2-grid.active {
    display: grid; /* Show the active grid */
}

.top-news-v2-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.top-news-v2-card:hover .top-news-v2-card-content h3 a {
    color: #e56717;
}

.top-news-v2-card img {
    width: 100%;
    display: block;
}

.top-news-v2-card .category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f39c12;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: capitalize;
}

.top-news-v2-card-content {
    padding: 15px;
}

.top-news-v2-card-content .date {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 10px;
}

.top-news-v2-card-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2em;
    margin: 0;
}

.top-news-v2-card-content h3 a {
    color: #333;
}

@media (max-width: 767px) {
    .top-news-v2-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
#footer {
    background: #222; /* Darker background */
    color: #aaa; /* Lighter text for better contrast */
    padding: 40px 20px;
    text-align: left;
    margin-top: 15px;
    border-top: 4px solid #e56717; /* Orange accent border */
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}
.footer-column {
    flex: 1;
    min-width: 200px;
}
.footer-column h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #e56717;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s;
}
.footer-social a:hover {
    color: #e56717;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9em
}
