/* Main CSS for SAJBI Journal Website - Executive Design */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&family=Montserrat:wght@400;600;700&display=swap');

:root {
    /* Brand Colors - Vibrant & Academic */
    --primary-color: #121340;
    /* Royal Navy Blue - Authority & Modernity */
    --secondary-color: #dab03c;
    /* Vibrant Warm Gold */
    --accent-color: #5eb3de;
    /* Sky Blue Accent */

    /* Neutral Tones */
    --bg-body: #f8fafc;
    /* Clean Slate Light */
    --bg-light: #ffffff;
    --text-main: #0f172a;
    /* Deep Slate */
    --text-muted: #475569;
    /* Slate Muted */
    --border-subtle: #e2e8f0;
    /* Slate Border */

    /* Gradients */

    /* Shadows & Effects */
    --shadow-card: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    /* Clean, Readable Sans-Serif */
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.8;
    font-size: 17px;
    /* Increased Base Font Size */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Classic, Roman-inspired Serif */
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* --- Top Infobar --- */
.top-infobar {
    background-color: #03043d;
    /* Darker navy for top bar to create structure */
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-infobar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-infobar a {
    color: rgba(255, 255, 255, 0.85);
}

.top-infobar a:hover {
    color: var(--secondary-color);
}

.issn-info {
    margin-right: 20px;
    font-weight: 600;
}

.issn-info i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.infobar-right span i {
    color: var(--secondary-color);
    margin-right: 6px;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
    /* Premium gold line at bottom */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.branding {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-img {
    height: 70px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-titles {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #8b8787;
    line-height: 1.25;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    /* Center items vertically */
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    /* White font color for navbar */
    padding: 1.2rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color);
}

/* Navbar CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: #03043d !important;
    /* Dark blue text on gold */
    font-weight: 700;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-cta-btn:hover {
    background-color: #ffffff;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-light);
    min-width: 240px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 999;
    border-top: 3px solid var(--secondary-color);
    border-radius: 0 0 4px 4px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 14px 20px;
    color: var(--text-main);
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition-smooth);
}

.dropdown-link:hover {
    background-color: #f9f9f9;
    color: var(--secondary-color);
    padding-left: 25px;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, #121340 0%, #121340 50%, #172d6e 100%);

    .hero-right {
        flex: 1;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    border-bottom: 4px solid var(--secondary-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 180%;
    background: radial-gradient(circle, rgba(218, 176, 60, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 290px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(255, 193, 7, 0.25);
    border: 3px solid var(--secondary-color);
    transform: rotateY(-12deg) rotateX(6deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s ease;
}

.hero-image:hover {
    transform: rotateY(-2deg) rotateX(2deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(255, 193, 7, 0.45);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--secondary-color);
    padding-left: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    text-align: center;
}

.btn-hero {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    border-radius: 2px;
}

.btn-hero:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 1.2rem 2.8rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-left: 1rem;
    border-radius: 2px;
}

.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #dab03c;
    transform: scale(1.4);
}

/* Slideshow classes removed since static side-image layout is used */

/* --- Stats Bar --- */
.stats-bar {
    background-color: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-top: -2rem;
    /* Overlap hero */
    position: relative;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Center Stats Bar Content as well */
.stats-bar .container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin: 0;
    font-family: 'Cinzel', serif;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Section Styling --- */
.section {
    padding: 6rem 0;
}

.section-grey {
    background-color: #f4f4f4;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.4rem;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px auto 0;
}

/* --- About Page Specifics --- */
.page-hero {
    background: linear-gradient(rgba(13, 44, 84, 0.85), rgba(13, 44, 84, 0.7)), url('https://images.unsplash.com/photo-1541339907198-e021fc2d97f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-bottom: 4rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    border-radius: 4px;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* --- Related Posts / Info Cards --- */
.related-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.info-card {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.info-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.info-card-header {
    background-color: var(--primary-color);
    padding: 1.2rem;
    color: white;
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-body {
    padding: 1.8rem;
}

.info-card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
}

.info-card-link:hover {
    text-decoration: underline;
}

/* --- Article Cards (List Style) --- */
.article-list-item {
    background: white;
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    border-left: 5px solid transparent;
}

.article-list-item:hover {
    box-shadow: var(--shadow-hover);
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

.article-date-box {
    background: #f0f0f0;
    padding: 15px;
    text-align: center;
    min-width: 90px;
    height: fit-content;
    border-radius: 4px;
}

.article-date-box .day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.article-date-box .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.article-main {
    flex: 1;
}

.article-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.article-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.article-meta {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.article-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.btn-small {
    font-size: 0.95rem;
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-small:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* --- Footer --- */
footer {
    background-color: #030b2c;
    color: #c5c6c7;
    padding-top: 2rem;
    font-size: 1rem;

}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(218, 176, 60, 0.12);
    border: 1px solid rgba(218, 176, 60, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-icon-wrap i {
    color: #dab03c;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: #888;
}

.footer-heading {
    color: #fff;
    font-family: 'Cinzel', serif;
    margin-bottom: 1.8rem;
    font-size: 1.25rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.copyright-bar {
    padding: 2rem 0;
    text-align: center;
    background: #010425;
    color: #666;
    font-size: 0.9rem;
}

/* Container Utility - FULL WIDTH OVERRIDE */
.container {

    margin: 0 auto;
    padding: 0 40px;
    /* Minimal padding for edge clearance */
}

/* --- Layout: Sidebar + Main Content - FULL WIDTH --- */
.page-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    /* Fluid main on left, fixed sidebar on right */
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.sidebar-menu a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.sidebar-menu a i {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Featured Research (Redesigned for Main Column) */
.featured-research-main {
    background: white;
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    border-radius: 4px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    border-top: 4px solid var(--primary-color);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.2rem;
}

.featured-label {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.featured-title {
    font-size: 2.2rem;
    /* Larger for full width */
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.featured-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.featured-abstract {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
    background: #f9f9f9;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

/* Why Publish Section */
.publish-benefits {
    background-color: white;
    padding: 3rem;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* Adjusted for width */
    gap: 4rem;
    margin-top: 2.5rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 44, 84, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.benefit-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* --- Editorial Board - Org Chart Card Style --- */
.board-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
}

.board-card {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition-smooth);
    width: 350px;
    position: relative;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

/* Connector Lines for Hierarchy Effect */
.board-level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.board-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 1px;
}

.board-card h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.board-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* List style for multiple members in one card */
.board-list {
    text-align: left;
    padding-left: 1rem;
    margin-top: 1rem;
}

.board-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    list-style: none;
    /* Removed default bullets */
    position: relative;
    padding-left: 1.5rem;
}

.board-list li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}



/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
}

.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 44, 84, 0.45);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.navbar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #ffffff;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1002;
        transition: var(--transition-smooth);
        margin-left: auto;
    }

    .mobile-menu-toggle:hover {
        color: var(--secondary-color);
    }

    .mobile-menu-toggle.active {
        color: #ff4d4d;

        .hero-img-track {
            position: relative;
            width: 100%;
            height: 100%;
        }

        width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 6rem 2rem 3rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.85);
        padding: 0.8rem 0;
        display: block;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-transform: uppercase;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active,
    .nav-link.submenu-active {
        color: var(--secondary-color);
        padding-left: 5px;
    }

    /* Submenus on mobile (accordions)        .hero-img-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease;
        }max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.03);
        transition: max-height 0.3s ease-out;
        padding: 0;
        width: 100%;
        min-width: unset;
        border-left: 2px solid var(--secondary-color);
        margin-top: 0.2rem;
    }

    .dropdown-menu.open {
        max-height: 500px;
    }

    .dropdown-link {
        padding: 0.8rem 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .dropdown-link:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--secondary-color);
        padding-left: 1.5rem;
    }

    .header-inner {
        padding: 0.8rem 0;
    }

    .nav-link i {
        float: right;
        margin-top: 0.3rem;
        transition: transform 0.3s;
    }

    .nav-link.submenu-active i {
        transform: rotate(180deg);
    }
}

@media (max-width: 900px) {
    .page-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .sidebar {
        position: static;
        order: 2;
    }

    .sidebar-widget {
        margin-bottom: 1.5rem;
    }

    /* Header inner stays row for mobile burger toggle align */
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .article-list-item {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        margin: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Extra Mobile Adjustments */
@media (max-width: 768px) {
    footer .container {
        padding-left: 2.2rem !important;
        padding-right: 2.2rem !important;
    }

    .logo-img {
        height: 50px;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-sub {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .branding {
        gap: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
        margin-left: 0 !important;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-titles p {
        font-size: 0.65rem;
        max-width: 200px;
        line-height: 1.3;
    }

    .book-wrapper {
        width: 200px !important;
        height: 285px !important;
    }

    .book-cover {
        width: 100% !important;
        height: 100% !important;
    }
}

/* --- News Grid & Cards --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.news-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.news-card-top {
    height: 250px;

    overflow: hidden;
    position: relative;
}

.news-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-card-body {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.news-date {
    color: var(--text-muted);
    font-weight: 500;
}

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

.news-badge {
    background: rgba(13, 44, 84, 0.08);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.news-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-title a:hover {
    color: var(--secondary-color);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    padding: 1.2rem 1.8rem 1.8rem;
    border-top: 1px solid var(--border-subtle);
    background: #fafafa;
}

.btn-read-full {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-read-full:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.btn-more-news {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    background: transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.btn-more-news:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Extracted from board.blade.php */
/* Eyebrow: fades and slides up first */
.hero-anim-eyebrow {
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 0.7s ease forwards;
    animation-delay: 0.1s;
}

/* Title: fades and slides up after the eyebrow, with a soft glow pulse once settled */
.hero-anim-title {
    opacity: 0;
    transform: translateY(20px);
    animation:
        heroFadeUp 0.8s ease forwards,
        heroGlowPulse 3.2s ease-in-out 0.9s infinite;
    animation-delay: 0.3s, 0.9s;
}

/* Divider: fades and widens in last */
.hero-anim-divider {
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.7s ease forwards;
    animation-delay: 0.65s;
}

/* Dot: gentle pulsing glow, looping */
.hero-anim-dot {
    animation: heroDotPulse 2.4s ease-in-out infinite;
    animation-delay: 1.1s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlowPulse {

    0%,
    100% {
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 22px rgba(218, 176, 60, 0.45);
    }
}

@keyframes heroDotPulse {

    0%,
    100% {
        box-shadow: 0 0 8px #dab03c;
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 18px #dab03c;
        transform: scale(1.25);
    }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hero-anim-eyebrow,
    .hero-anim-title,
    .hero-anim-divider {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-anim-dot {
        animation: none !important;
        box-shadow: 0 0 12px #dab03c;
    }
}


/* Extracted from board.blade.php */
.sidebar-link:hover {
    background: #f8fafc !important;
    border-left-color: #dab03c !important;
    color: #002147 !important;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09) !important;
    border-color: #dab03c !important;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .board-members-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .board-members-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Extracted from scope.blade.php */
.sidebar-link:hover {
    background: #f8fafc;
    border-left-color: #dab03c !important;
    color: #002147 !important;
}

.scope-card:hover {
    background: white !important;
    border-color: #dab03c !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.scope-card:hover .scope-icon {
    background: #dab03c !important;
}

.scope-card:hover .scope-icon i {
    color: white !important;
}

.aim-content p {
    margin-bottom: 1.4rem;
}

@media (max-width: 1100px) {
    .scope-wrapper {
        flex-direction: column !important;
    }

    .scope-sidebar {
        width: 100% !important;
        position: static !important;
    }

    .aims-inner {
        flex-direction: column !important;
    }

    .aims-img {
        width: 100% !important;
    }
}


/* Extracted from info.blade.php */
.sidebar-link:hover {
    background: #f8fafc;
    border-left-color: #dab03c !important;
    color: #002147 !important;
}

.explore-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(218, 176, 60, 0.4) !important;
    transform: translateY(-3px);
}

.journal-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
}

.journal-content td,
.journal-content th {
    border: none !important;
    padding: 0 !important;
}

.journal-content p {
    margin-bottom: 1.4rem;
    color: #475569;
    line-height: 1.95;
}

@media (max-width: 1100px) {
    .about-wrapper {
        flex-direction: column !important;
    }

    .about-sidebar {
        width: 100% !important;
        position: static !important;
    }

    .vm-grid {
        grid-template-columns: 1fr !important;
    }

    .explore-grid {
        grid-template-columns: 1fr !important;
    }

    .about-inner {
        flex-direction: column !important;
    }

    .about-img-box {
        width: 100% !important;
    }
}


/* Extracted from dynamic.blade.php */
.sidebar-link:hover {
    background: #f8fafc !important;
    border-left-color: #dab03c !important;
    color: #002147 !important;
}

.guideline-card:hover {
    background: white !important;
    border-color: #dab03c !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.track-card:hover {
    background: white !important;
    border-color: #dab03c !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.track-card:hover .track-icon {
    background: #dab03c !important;
}

.track-card:hover .track-icon i {
    color: white !important;
}

.download-card:hover {
    border-color: #dab03c !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.content-text table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
}

.content-text td,
.content-text th {
    border: none !important;
    padding: 0 !important;
}

.content-text p {
    margin-bottom: 1.4rem;
    color: #475569;
    line-height: 2;
}

/* Images inserted via the admin panel's rich text editor (e.g. Guideline Section
   content) should always fit inside their card instead of rendering at native
   pixel size and overflowing the layout. */
.content-text img,
.section-body img,
.main-content-body img,
.guideline-body-row img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    margin: 0.75rem 0;
    display: block;
}

.section-body ul {
    list-style: none !important;
    padding-left: 0.2rem !important;
}

.section-body li {
    position: relative !important;
    padding-left: 1.8rem !important;
    margin-bottom: 0.7rem !important;
}

.section-body li::before {
    content: "\f058" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    color: #dab03c !important;
}

@media (max-width: 1100px) {
    .dynamic-wrapper {
        flex-direction: column !important;
    }

    .dynamic-sidebar {
        width: 100% !important;
        position: static !important;
    }

    .content-inner {
        flex-direction: column !important;
    }

    .content-img {
        width: 100% !important;
    }

    .guidelines-grid {
        grid-template-columns: 1fr !important;
    }

    .guideline-body-row {
        flex-direction: column !important;
    }

    .guideline-points {
        width: 100% !important;
    }

    .tracks-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {

    .tracks-grid,
    .guidelines-grid,
    .downloads-grid {
        padding: 1.2rem !important;
    }
}


.guideline-btn {
    position: relative;
    overflow: hidden;
}

.guideline-btn:hover {
    background: rgb(233, 233, 233) !important;
    color: #002147 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 176, 60, 0.35);
}

.guideline-btn:active {
    transform: translateY(0px);
    box-shadow: 0 3px 8px rgba(218, 176, 60, 0.2);
}

.guideline-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.guideline-btn:active::after {
    width: 200px;
    height: 200px;
}

/* Sidebar and Page Container Layout */
.page-container {
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.sidebar-widget h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--primary-color, #121340);
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--secondary-color, #dab03c);
    font-weight: 700;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0.4rem;
}

.sidebar-menu li:last-child {
    margin-bottom: 0;
}

.sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.85rem;
    background: #f8fafc;
    border-radius: 6px;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu a i {
    color: var(--secondary-color, #dab03c);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.sidebar-menu a:hover {
    background: #ffffff;
    color: var(--primary-color, #121340);
    border-left-color: var(--secondary-color, #dab03c);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(3px);
}

.sidebar-menu a:hover i {
    transform: translateX(2px);
}

@media (max-width: 991px) {
    .page-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
    }
}

/* Editorial Board Cards Grid */
.board-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.board-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.board-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}

.board-avatar-wrap {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 6px 16px rgba(0, 33, 71, 0.12);
}

.board-avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 6px 16px rgba(0, 33, 71, 0.1);
    font-size: 1.8rem;
    color: #94a3b8;
}

.board-role-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.board-member-name {
    margin: 0 0 0.4rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-color, #121340);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.board-member-affiliation {
    margin: 0 0 1rem;
    color: #64748b;
    font-style: italic;
    font-size: 0.82rem;
    line-height: 1.45;
    flex-grow: 1;
}

.board-member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.8rem;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

.board-member-contact a {
    color: var(--secondary-color, #dab03c);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.board-member-contact a:hover {
    text-decoration: underline;
}

.board-member-contact span {
    color: #64748b;
}

.board-member-contact i {
    margin-right: 3px;
}

/* News Grid and Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.25rem;
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card-top {
    height: 150px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted, #64748b);
}

.news-badge {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.68rem;
}

.news-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--primary-color, #121340);
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--secondary-color, #dab03c);
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    line-height: 1.45;
    margin-bottom: 0.8rem;
    flex: 1;
}

.news-card-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #f1f5f9;
    background: #fafafa;
}

.btn-read-full {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color, #121340);
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-read-full:hover {
    color: var(--secondary-color, #dab03c);
}

.btn-more-news {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: var(--primary-color, #121340);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-more-news:hover {
    background: var(--secondary-color, #dab03c);
    color: #121340;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}