/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #8B7500;
    --black: #000000;
    --black-light: #111111;
    --black-lighter: #222222;
    --white: #ffffff;
    --gray: #999999;
    --gray-light: #cccccc;
    --gray-dark: #666666;

    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.2);
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.view-all-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-link i {
    transition: var(--transition);
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 3px solid var(--gold);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--white);
    font-weight: 400;
    font-size: 1.2rem;
}


/* ===== LOGO STYLES ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
    /* This pushes everything else to the right */
}

.logo-img {
    height: 40px;
    /* Adjust based on your logo size */
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Optional: If you want to keep text as fallback */
.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--white);
    font-weight: 400;
    font-size: 1.2rem;
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Search Form */
.search-form {
    margin-left: 1rem;
}

.search-form form {
    display: flex;
    align-items: center;
    background: var(--black-lighter);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--gold-dark);
}

.search-input {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    color: var(--white);
    width: 180px;
    font-size: 0.85rem;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    padding: 0.5rem 1rem;
    cursor: pointer;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    margin-top: 80px;
    position: relative;
}

.slider-container {
    position: relative;
}

.slide-content {
    height: 600px;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center;
}

.slide-category {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.slide-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 800px;
}

.slide-excerpt {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.slide-meta {
    margin-bottom: 2rem;
}

.slide-author,
.slide-date,
.slide-read-time {
    color: var(--gray);
    font-size: 0.9rem;
}

.slide-author::after {
    content: "•";
    margin: 0 0.8rem;
    color: var(--gold);
}

.slide-date::after {
    content: "•";
    margin: 0 0.8rem;
    color: var(--gold);
}

.slide-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.slide-btn:hover {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    transform: translateY(-2px);
}

/* Slick Slider Customization */
.slick-prev,
.slick-next {
    z-index: 1;
    width: 45px;
    height: 45px;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    color: var(--gold);
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--white);
}

.slick-dots li.slick-active button:before {
    color: var(--gold);
}

/* ===== BREAKING NEWS TICKER ===== */
.breaking-news {
    background: var(--gold-dark);
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--gold);
}

.ticker {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
}

.ticker-label {
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1rem;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 3px;
}

.ticker-content {
    display: flex;
    animation: ticker 20s linear infinite;
}

.ticker-content span {
    color: var(--white);
    font-size: 0.9rem;
    white-space: nowrap;
    padding-right: 2rem;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== CATEGORY SECTIONS ===== */
.category-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.category-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.main-feature {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.main-feature img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.main-feature:hover img {
    transform: scale(1.05);
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-content h3 a:hover {
    color: var(--gold);
}

.feature-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.side-stories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-story {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--black-light);
    border-radius: 5px;
    transition: var(--transition);
}

.side-story:hover {
    background: var(--black-lighter);
    transform: translateX(5px);
}

.side-story img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.story-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.story-content h4 a:hover {
    color: var(--gold);
}

.meta {
    color: var(--gray);
    font-size: 0.8rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--black-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card .feature-content {
    position: static;
    background: none;
    padding: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 a:hover {
    color: var(--gold);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ===== REPORTS SECTION ===== */
.reports-section {
    padding: 3rem 0;
    background: var(--black-light);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.report-card {
    background: var(--black);
    padding: 2rem;
    border: 1px solid var(--gold-dark);
    border-radius: 8px;
    transition: var(--transition);
}

.report-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.report-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-radius: 3px;
}

.report-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.report-card h3 a:hover {
    color: var(--gold);
}

/* ===== TRENDING SECTION ===== */
.trending-section {
    padding: 3rem 0;
}

.trending-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--black-light);
    border-radius: 5px;
    transition: var(--transition);
}

.trending-item:hover {
    background: var(--black-lighter);
    transform: translateX(10px);
}

.trending-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    min-width: 50px;
}

.trending-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.trending-content h4 a:hover {
    color: var(--gold);
}

/* ===== EDITIONS PREVIEW ===== */
.editions-preview {
    padding: 3rem 0;
}

.mini-editions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mini-edition {
    background: linear-gradient(135deg, var(--black-lighter), var(--black));
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--gold-dark);
    min-width: 120px;
    text-align: center;
    transition: var(--transition);
}

.mini-edition:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.edition-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.mini-edition h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.mini-edition h4 a:hover {
    color: var(--gold);
}

.mini-edition span {
    color: var(--gray);
    font-size: 0.75rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--black));
    padding: 4rem 0;
    margin-top: 2rem;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.newsletter-form-large {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form-large input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    border-radius: 5px;
}

.newsletter-form-large input::placeholder {
    color: var(--gray);
}

.newsletter-form-large button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form-large button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.privacy-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-light);
    border-top: 3px solid var(--gold);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-section p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--black-lighter);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.follow-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.follow-list i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    color: var(--gray-dark);
    font-size: 0.9rem;
}


/* ===== ADDITIONAL STYLES FOR NEW PAGES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1504711434967-e338ca1b6eb8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Story */
.featured-story {
    padding: 3rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.featured-main {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.featured-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.breaking-badge,
.live-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.live-badge {
    background: var(--gold);
    color: var(--black);
}

.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.featured-excerpt {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.featured-meta {
    color: var(--gray);
    font-size: 0.9rem;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-item {
    background: var(--black-light);
    padding: 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.side-item:hover {
    background: var(--black-lighter);
    transform: translateX(5px);
}

.side-item h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.side-item h3 a:hover {
    color: var(--gold);
}

.time {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Category Navigation */
.category-nav {
    background: var(--black-light);
    padding: 1rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.category-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab {
    color: var(--gray);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    transition: var(--transition);
}

.tab:hover,
.tab.active {
    background: var(--gold);
    color: var(--black);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.article-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-large {
    background: var(--black-light);
    border-radius: 5px;
    overflow: hidden;
}

.article-large img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.article-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-full {
    margin: 2rem 0;
    background: var(--black-light);
    border-radius: 5px;
    overflow: hidden;
}

.article-full img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.article-medium {
    background: var(--black-light);
    padding: 1rem;
    border-radius: 5px;
}

.article-medium img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.article-medium h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Article List */
.article-list {
    margin-top: 2rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--black-light);
    margin-bottom: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.list-item:hover {
    background: var(--black-lighter);
    transform: translateX(5px);
}

.list-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.5;
    min-width: 40px;
}

.list-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--black-light);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.opinion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opinion-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.opinion-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.opinion-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.opinion-item h4 a:hover {
    color: var(--gold);
}

.opinion-item span {
    color: var(--gray);
    font-size: 0.8rem;
}

.trending-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trend-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trend-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.5;
    min-width: 30px;
}

.trend-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.trend-item h4 a:hover {
    color: var(--gold);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--gold-dark), var(--black));
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 0.8rem;
    border: 1px solid var(--gold);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border-radius: 3px;
}

.sidebar-newsletter button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-newsletter button:hover {
    background: var(--gold-light);
}

/* More News Section */
.more-news {
    background: var(--black-light);
    padding: 3rem 0;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.more-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.more-item h4 {
    font-size: 0.9rem;
}

.more-item h4 a:hover {
    color: var(--gold);
}

/* Market Summary */
.market-summary {
    background: var(--black-light);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.market-ticker {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--black);
    border-radius: 3px;
}

.market-name {
    font-weight: 600;
    color: var(--gold);
}

.market-value {
    font-weight: 600;
}

.market-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.market-change.positive {
    color: #28a745;
}

.market-change.negative {
    color: #dc3545;
}

/* Business Categories */
.business-categories {
    padding: 3rem 0;
}

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

.category-block {
    background: var(--black-light);
    padding: 1.5rem;
    border-radius: 5px;
}

.category-block h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-block ul {
    list-style: none;
}

.category-block li {
    margin-bottom: 0.8rem;
}

.category-block li a {
    color: var(--gray);
    font-size: 0.9rem;
}

.category-block li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Feature Sections */
.feature-sections {
    padding: 3rem 0;
}

.feature-category {
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--black-light);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
}

.feature-card p {
    padding: 0 1rem 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Long Reads */
.long-reads {
    background: var(--black-light);
    padding: 3rem 0;
}

.long-reads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.long-read {
    background: var(--black);
    padding: 2rem;
    border: 1px solid var(--gold-dark);
    border-radius: 5px;
    transition: var(--transition);
}

.long-read:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.read-time {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.2rem 0.8rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.long-read h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.long-read h3 a:hover {
    color: var(--gold);
}

.long-read p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* About Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1504711434967-e338ca1b6eb8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.5rem;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 5rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.values-section {
    background: var(--black-light);
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--black);
    border: 1px solid var(--gold-dark);
    border-radius: 5px;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: var(--black-light);
    padding: 2rem;
    border-radius: 5px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--gold);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 3px;
    color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--black-light);
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.info-card i {
    font-size: 2rem;
    color: var(--gold);
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
}

.map-section {
    padding: 3rem 0;
}

.map-container {
    border: 3px solid var(--gold-dark);
    border-radius: 10px;
    overflow: hidden;
}

/* Editions Page */
.edition-filters {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.filter-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gold-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.editions-archive {
    padding: 3rem 0;
}

.all-editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.archive-edition {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    background: var(--black-light);
    padding: 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.archive-edition:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.edition-cover {
    position: relative;
}

.edition-cover img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.edition-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--black);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
}

.edition-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.edition-details h3 a:hover {
    color: var(--gold);
}

.edition-date {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.edition-theme {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.edition-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.edition-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.edition-link:hover {
    color: var(--gold-light);
}

.edition-link i {
    transition: var(--transition);
}

.edition-link:hover i {
    transform: translateX(5px);
}

/* Responsive Additions */
@media (max-width: 1200px) {

    .categories-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .featured-grid,
    .content-grid,
    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .long-reads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .article-row,
    .two-column {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .values-grid,
    .team-grid,
    .long-reads-grid,
    .more-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .all-editions-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .market-ticker {
        flex-direction: column;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 3px solid var(--gold);
    }

    .nav-links.show {
        display: flex;
    }

    .search-form {
        width: 100%;
        margin: 1rem 0;
    }

    .search-form form {
        width: 100%;
    }

    .search-input {
        width: 100%;
    }

    .features-grid,
    .reports-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form-large {
        flex-direction: column;
    }

    .newsletter-form-large button {
        padding: 1rem;
    }

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

    .slide-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .side-story {
        flex-direction: column;
    }

    .side-story img {
        width: 100%;
        height: 150px;
    }

    .mini-editions-grid {
        justify-content: center;
    }
}

/* ===== ADD TO EXISTING CSS FILE ===== */

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0;
    transition: width 0.1s ease;
}

/* Comment System Styles */
.comments-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.comment-form {
    background: var(--black-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid var(--gold-dark);
}

.comment-form h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--black-light);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.comment:hover {
    border-color: var(--gold-dark);
}

.comment.reply {
    margin-left: 3rem;
    background: var(--black);
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;
}

.comment-time {
    color: var(--gray);
    font-size: 0.8rem;
}

.comment-body p {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.comment-actions button {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.comment-actions button:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.comment-like.liked {
    color: var(--gold);
}

.comment-like.liked i {
    color: var(--gold);
}

.comment-replies {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--gold-dark);
}

.no-comments {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
    background: var(--black-light);
    border-radius: 8px;
}

.no-comments i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

.no-comments p {
    font-size: 1.1rem;
}

/* Reply Form */
.reply-form {
    display: none;
    margin: 1rem 0 2rem 3rem;
    padding: 1.5rem;
    background: var(--black);
    border: 1px solid var(--gold-dark);
    border-radius: 8px;
}

.reply-form h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reply-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black-light);
    border: 1px solid var(--gold-dark);
    color: var(--white);
    border-radius: 5px;
    margin-bottom: 1rem;
    resize: vertical;
    font-family: var(--font-primary);
}

.reply-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.reply-actions {
    display: flex;
    gap: 1rem;
}

.reply-actions button {
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.reply-actions .submit-reply {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.reply-actions .cancel-reply {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray);
}

.reply-actions .submit-reply:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.reply-actions .cancel-reply:hover {
    background: var(--gray);
    color: var(--black);
}

/* Notification Styles */
.comment-notification,
.share-notification,
.bookmark-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black-light);
    border: 2px solid var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 2000;
    box-shadow: var(--shadow);
}

.comment-notification.show,
.share-notification.show,
.bookmark-notification.show {
    transform: translateX(0);
}

.comment-notification i,
.share-notification i,
.bookmark-notification i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Newsletter Message */
.newsletter-message {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease;
}

.newsletter-message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.newsletter-message.info {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Bookmark Button */
.bookmark-btn,
.save-article-btn {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gold-dark);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.bookmark-btn:hover,
.save-article-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.bookmark-btn.bookmarked,
.save-article-btn.bookmarked {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.bookmark-count-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    margin-left: 0.3rem;
}

/* Bookmarks Page */
.bookmarks-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.bookmark-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: var(--black-light);
    border: 1px solid var(--gold-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.bookmark-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.bookmark-image {
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.bookmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bookmark-item:hover .bookmark-image img {
    transform: scale(1.05);
}

.bookmark-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.bookmark-category {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.bookmark-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.bookmark-title a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.bookmark-title a:hover {
    color: var(--gold);
}

.bookmark-excerpt {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.bookmark-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.bookmark-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.bookmark-meta i {
    color: var(--gold);
}

.bookmark-actions {
    display: flex;
    gap: 1rem;
}

.read-btn {
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.read-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.remove-bookmark {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray);
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.remove-bookmark:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.empty-bookmarks {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--black-light);
    border-radius: 8px;
}

.empty-bookmarks i {
    font-size: 5rem;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

.empty-bookmarks h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.empty-bookmarks p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.browse-btn {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
}

.browse-btn:hover {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    transform: translateY(-2px);
}

/* Floating Share Bar */
.floating-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black-light);
    border: 1px solid var(--gold-dark);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow);
}

.floating-share.visible {
    opacity: 1;
    visibility: visible;
}

.floating-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
    text-decoration: none;
}

.floating-share a:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}


/* ===== BACK BUTTON STYLES ===== */
.back-to-edition {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.back-to-edition i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-to-edition:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateX(-5px);
    box-shadow: var(--shadow-hover);
}

.back-to-edition:hover i {
    transform: translateX(-3px);
}

.back-to-edition:active {
    transform: translateX(-2px);
}

/* Top button positioning */
.article-back-top {
    margin: 6rem 0 1.5rem;
}

/* Bottom button positioning */
.article-back-bottom {
    margin: 3rem 0 2rem;
    text-align: center;
}

/* Alternative - Different Variants */
.back-to-edition-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.back-to-edition-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.back-to-edition-filled {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.back-to-edition-filled:hover {
    background: transparent;
    color: var(--gold);
    transform: translateX(-5px);
}

.back-to-edition-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.back-to-edition-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    gap: 1rem;
}

/* ===== RESPONSIVE DESIGN - MOBILE VIEW ===== */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .back-to-edition {
        padding: 0.7rem 1.6rem;
        font-size: 0.95rem;
    }

    .article-back-top {
        margin: 5rem 0 1.25rem;
    }
}

/* Mobile View (768px and below) */
@media (max-width: 768px) {
    .back-to-edition {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
        gap: 0.6rem;
        border-width: 1.5px;
    }

    .back-to-edition i {
        font-size: 0.85rem;
    }

    .article-back-top {
        margin: 5rem 0 1rem;
        padding: 0 1rem;
    }

    .article-back-bottom {
        margin: 2rem 0 1.5rem;
    }

    /* Center the back button on mobile */
    .back-button-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* Small Mobile View (480px and below) */
@media (max-width: 480px) {
    .back-to-edition {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.5rem;
        border-width: 1.5px;
        border-radius: 6px;
        width: auto;
        min-width: 140px;
        justify-content: center;
    }

    .back-to-edition i {
        font-size: 0.8rem;
    }

    .article-back-top {
        margin: 4.5rem 0 0.75rem;
    }

    .article-back-bottom {
        margin: 1.5rem 0 1rem;
    }

    /* Full width button on very small screens (optional) */
    .back-to-edition-full-mobile {
        width: 100%;
        justify-content: center;
    }
}

/* Landscape mode for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .back-to-edition {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .article-back-top {
        margin: 4rem 0 0.75rem;
    }
}

/* Touch-friendly adjustments for mobile */
@media (hover: none) and (pointer: coarse) {
    .back-to-edition {
        /* Larger tap target for touch screens */
        padding: 0.7rem 1.5rem;
        min-height: 44px;
        /* Apple's recommended minimum touch target size */
    }

    .back-to-edition:active {
        transform: translateX(-3px);
        background: var(--gold);
        color: var(--black);
    }
}

/* High-resolution screens (Retina, etc.) */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .back-to-edition {
        border-width: 1.5px;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .back-to-edition {
        border-color: var(--gold);
        color: var(--gold);
    }

    .back-to-edition:hover {
        background: var(--gold);
        color: var(--black);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .back-to-edition,
    .back-to-edition i,
    .back-to-edition:hover,
    .back-to-edition:hover i {
        transition: none;
        transform: none;
    }

    .back-to-edition:hover {
        transform: none;
    }

    .back-to-edition:hover i {
        transform: none;
    }
}

/* Accessibility - Focus state for keyboard navigation */
.back-to-edition:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 8px;
}

/* Article Tools */
.article-tools {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.print-article,
.increase-text,
.decrease-text {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gold-dark);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.print-article:hover,
.increase-text:hover,
.decrease-text:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .bookmark-item {
        grid-template-columns: 150px 1fr;
    }
}

@media (max-width: 768px) {
    .floating-share {
        display: none;
    }

    .bookmark-item {
        grid-template-columns: 1fr;
    }

    .bookmark-image {
        height: 200px;
    }

    .bookmark-content {
        padding: 1.5rem;
    }

    .comment.reply {
        margin-left: 1.5rem;
    }

    .reply-form {
        margin-left: 1.5rem;
    }

    .comment-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    .article-tools {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .comment {
        flex-direction: column;
    }

    .comment-avatar {
        align-self: flex-start;
    }

    .bookmark-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .bookmark-actions {
        flex-direction: column;
    }

    .reply-actions {
        flex-direction: column;
    }
}

/* ===== PDF VIEWER STYLES ===== */
.pdf-viewer {
    width: 100%;
    height: 600px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    overflow: auto;
    margin: 2rem 0;
    background: var(--black-light);
    display: flex;
    justify-content: center;
}

.pdf-viewer canvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.pdf-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

#page-info {
    color: var(--gray);
    font-size: 0.95rem;
}

.pdf-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    font-size: 0.9rem;
}

.pdf-btn:hover:not(:disabled) {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.pdf-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.download-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.download-count {
    color: var(--gray);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.latest-badge {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.no-download {
    color: #dc3545;
    font-size: 0.9rem;
    margin-left: 1rem;
    font-style: italic;
    background: rgba(220, 53, 69, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Download Notification */
.download-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black-light);
    border: 2px solid var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 2000;
    box-shadow: var(--shadow);
}

.download-notification.show {
    transform: translateX(0);
}

.download-notification i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* PDF Container Section */
.pdf-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pdf-section .section-title {
    margin-bottom: 1.5rem;
}

/* Single Team Member Centering */
.team-grid-single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member-single {
    max-width: 850px;
    width: 100%;
    padding: 3rem;
    background: var(--black-light);
    border: 1px solid var(--gold-dark);
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;          /* Centers the image and heading */
}

.team-member-single:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.team-member-single img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin: 0 auto 1.5rem;       /* Centers the image horizontally */
    display: block;
}

.team-member-single h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.team-member-single .member-role {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-member-single .member-bio {
    text-align: left;            /* Keeps bio text left‑aligned for readability */
}

.team-member-single .member-bio p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.team-member-single .member-bio p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .team-member-single {
        padding: 2rem 1.5rem;
    }
    
    .team-member-single img {
        width: 150px;
        height: 150px;
    }
    
    .team-member-single h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-member-single {
        padding: 1.5rem 1rem;
    }
    
    .team-member-single img {
        width: 120px;
        height: 120px;
    }
    
    .team-member-single h3 {
        font-size: 1.3rem;
    }
    
    .team-member-single .member-bio p {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .team-member-single {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .team-member-single img {
        width: 140px;
        height: 140px;
    }
    
    .team-member-single h3 {
        font-size: 1.5rem;
    }
    
    .team-member-single .member-role {
        font-size: 1rem;
    }
    
    .team-member-single .member-bio p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
}

