@font-face {
    font-family: 'Gilroy';
    src: url('../../Fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../Fonts/gilroy-semi-bold.woff2') format('woff2'),
        url('../../Fonts/gilroy-semi-bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../Fonts/Gilroy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

:root {
    --primary-blue: #2563eb;
    --accent-orange: #f97316;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --light-bg: #f8fafc;
    --light-surface: #ffffff;
    --text-primary-dark: #ffffff;
    --text-secondary-dark: rgba(255, 255, 255, 0.7);
    --text-primary-light: #1e293b;
    --text-secondary-light: #64748b;
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: #e2e8f0;
    --shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    background-color: white;
    color: black;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.67rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary-dark);
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-linkedin-logo {
    height: 24px;
    width: 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.linkedin-link:hover .nav-linkedin-logo {
    opacity: 1;
    transform: scale(1.1);
}

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

.news-linkedin-logo {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.news-linkedin-link:hover .news-linkedin-logo {
    opacity: 1;
    transform: scale(1.1);
}

.news-linkedin-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.featured-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.02));
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-dark);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-text,
.footer-copyright {
    color: var(--text-secondary-dark);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--accent-orange);
}

.logo .highlight {
    color: var(--primary-blue);
}

main {
    margin-top: 70px;
    padding: 3rem 2rem;
}

.news-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem;
    background: var(--light-surface);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.news-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
}

.news-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary-light);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary-light);
    font-size: 1.1rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-content {
    margin-bottom: 2rem;
}

.news-content p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary-light);
}

.news-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.news-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    background-color: white;
}

.news-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: black;
    background-color: white;
    font-size: 1.2rem;
}

.news-content ul ul {
    margin: 0.75rem 0 0 1.5rem;
    padding-left: 1.5rem;
    background-color: white;
}

.news-content ul ul li {
    color: black;
    background-color: white;
}

.news-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content a:hover {
    color: var(--accent-orange);
}

.news-content.gemorna-anniversary .section-heading {
    margin: 2.25rem 0 1rem;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1f5b7a;
}

.news-content.gemorna-anniversary .section-heading::before {
    content: '\2022';
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--text-primary-light);
    font-weight: 900;
}

.news-content.gemorna-anniversary p {
    margin-bottom: 1.35rem;
}

.news-content.gemorna-anniversary strong {
    font-weight: 800;
    color: #111827;
}

.news-content.gemorna-anniversary .accent {
    color: #d04a3a;
    font-weight: 800;
}

.news-content.gemorna-anniversary .statement {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.45;
    color: #111827;
    margin: 1.75rem 0;
}

.news-content.gemorna-anniversary .tags {
    margin-top: 2rem;
    color: var(--text-secondary-light);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.featured-box h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.featured-box p {
    margin-bottom: 0;
    color: var(--text-secondary-light);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4vw;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo .highlight {
    color: var(--primary-blue);
}

.footer-text {
    color: var(--text-secondary-dark);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
}

.footer-copyright {
    color: var(--text-secondary-dark);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .news-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .news-title {
        font-size: 1.75rem;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }
}
