/* Aggregated Varta Patrika Component Styles */

/* From about.html */
.search-container {
            padding: 12px;
            cursor: pointer;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-container:hover { color: var(--accent-color); }

        /* Hero Section */
        .about-hero {
            position: relative;
            height: 60vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/seed/global/1920/1080');
            background-size: cover;
            background-position: center;
            color: white;
            margin-top: -20px;
        }

        .hero-content {
            padding-left: 5%;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            max-width: 800px;
        }

        /* Mission Section */
        .mission-section {
            background-color: var(--paper-bg);
            padding: 2.5rem 0 6rem;
        }

        .mission-text {
            font-family: var(--font-body-serif);
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* Partnership Card */
        .partner-card-full {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            overflow: hidden;
            margin-top: -4rem;
            position: relative;
            z-index: 10;
        }

        .partner-left { padding: 4rem; }
        .partner-right { padding: 4rem; background-color: #f8f9fa; }

        .social-icons-orange a {
            color: var(--accent-color);
            font-size: 1.75rem;
            margin-right: 1.5rem;
            transition: var(--transition);
        }
        .social-icons-orange a:hover { transform: translateY(-3px); opacity: 0.8; }

        .why-list { list-style: none; padding: 0; }
        .why-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 1.25rem;
            font-size: 15px;
            font-weight: 500;
        }
        .why-list i { color: var(--accent-color); font-size: 18px; }

/* From article-detail.html */
.search-container {
            padding: 12px;
            cursor: pointer;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-container:hover { color: var(--accent-color); }

        /* Article Detail Styles */
        .article-hero-img {
            width: 100%;
            height: 60vh;
            object-fit: cover;
            object-position: center;
        }

        .article-header {
            padding: 4rem 0 2rem;
            text-align: center;
        }

        .article-category {
            color: var(--accent-color);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            margin-bottom: 1rem;
            display: block;
        }

        .article-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-name {
            color: var(--accent-color);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
        }

        .author-name:hover {
            color: #E66A10;
            text-decoration: underline;
        }

        .reading-zone {
            font-family: var(--font-body-serif);
            font-size: 1.2rem;
            line-height: 1.8;
            color: #2d3436; /* Soft dark-grey */
            max-width: 720px; /* Optimal line length */
            margin: 0 auto;
        }

        .reading-zone p {
            margin-bottom: 2.5rem; /* Increased paragraph spacing */
        }

        .reading-zone p:first-of-type::first-letter {
            float: left;
            font-size: 5rem;
            line-height: 0.8; /* Adjusted for better alignment */
            font-weight: 900;
            padding-right: 15px;
            padding-top: 8px;
            color: var(--text-primary);
            font-family: var(--font-serif);
        }

        /* Pull Quote */
        .pull-quote {
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 2rem;
            color: var(--text-primary);
            text-align: center;
            margin: 4rem 0;
            padding: 2rem;
            position: relative;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .pull-quote::before, .pull-quote::after {
            content: '"';
            color: var(--accent-color);
            font-size: 4rem;
            position: absolute;
            font-family: var(--font-serif);
            line-height: 1;
        }

        .pull-quote::before {
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .pull-quote::after {
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: none; /* Only top quote for cleaner look */
        }

        /* Social Share Bar */
        .share-bar {
            position: sticky;
            top: 120px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 100;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: var(--text-muted);
            border: 1px solid #eee;
            transition: var(--transition);
            text-decoration: none;
        }

        .share-btn:hover {
            color: white;
            background: var(--accent-color);
            border-color: var(--accent-color);
            transform: scale(1.1);
        }

        /* Related Stories */
        .related-section {
            padding-top: 6rem;
            border-top: 1px solid #eee;
            margin-top: 6rem;
        }

        .related-card {
            background: white;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            position: relative;
        }

        .related-card .img-wrapper {
            overflow: hidden;
        }

        .related-card img {
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .related-card:hover img {
            transform: scale(1.1);
        }

        .related-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .related-title {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.4;
            margin: 1rem 0;
            color: var(--text-primary);
            text-decoration: none;
            display: block;
        }

        .related-title:hover {
            color: var(--accent-color);
        }

/* From articles.html */
.search-container {
            padding: 12px;
            cursor: pointer;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-container:hover { color: var(--accent-color); }

        /* Article Cards */
        .article-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 3rem;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); }
        .article-card:hover .card-img-top { transform: scale(1.03); }
        .article-card .card-body { padding: 1.5rem; }

        @media (min-width: 992px) { .article-card .card-body { padding: 3rem; } }

        .article-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            transition: var(--transition);
        }

        .article-title:hover { color: var(--accent-color); }

        .article-excerpt {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 80ch;
        }

        .article-meta { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        .author-name { font-weight: 700; font-size: 14px; }
        .post-date { color: var(--text-muted); font-size: 14px; }

        .tag-badge {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

/* From business.html */
/* Article Cards */
        .article-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 3rem;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); }
        .article-card:hover .card-img-top { transform: scale(1.03); }
        .article-card .card-body { padding: 1.5rem; }

        @media (min-width: 992px) { .article-card .card-body { padding: 3rem; } }

        .article-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            transition: var(--transition);
        }

        .article-title:hover { color: var(--accent-color); }

        .article-excerpt {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 80ch;
        }

        .article-meta { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        .author-name { font-weight: 700; font-size: 14px; }
        .post-date { color: var(--text-muted); font-size: 14px; }

        .tag-badge {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

/* From contact.html */
/* Contact Form */
        .contact-card {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03);
            margin-bottom: 4rem;
        }

        .form-control {
            background-color: #f8f9fa;
            border: 1px solid #eee;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            font-size: 14px;
            margin-bottom: 1.25rem;
            transition: var(--transition);
        }

        .form-control:focus {
            background-color: white;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 4px rgba(255, 126, 33, 0.1);
        }

/* From diaspora.html */
/* Article Cards */
        .article-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 3rem;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); }
        .article-card:hover .card-img-top { transform: scale(1.03); }
        .article-card .card-body { padding: 1.5rem; }

        @media (min-width: 992px) { .article-card .card-body { padding: 3rem; } }

        .article-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            transition: var(--transition);
        }

        .article-title:hover { color: var(--accent-color); }

        .article-excerpt {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 80ch;
        }

        .article-meta { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        .author-name { font-weight: 700; font-size: 14px; }
        .post-date { color: var(--text-muted); font-size: 14px; }

        .tag-badge {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

/* From education.html */
/* Article Cards */
        .article-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 3rem;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); }
        .article-card:hover .card-img-top { transform: scale(1.03); }
        .article-card .card-body { padding: 1.5rem; }

        @media (min-width: 992px) { .article-card .card-body { padding: 3rem; } }

        .article-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            transition: var(--transition);
        }

        .article-title:hover { color: var(--accent-color); }

        .article-excerpt {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 80ch;
        }

        .article-meta { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        .author-name { font-weight: 700; font-size: 14px; }
        .post-date { color: var(--text-muted); font-size: 14px; }

        .tag-badge {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

/* From events.html */
/* Event Cards */
        .event-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
        }

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

        .event-img-wrapper { overflow: hidden; position: relative; aspect-ratio: 16/9; }
        .event-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .event-card:hover .event-img { transform: scale(1.03); }
        .event-card .card-body { padding: 1.5rem; }

        .event-date-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .event-day { font-size: 1.25rem; font-weight: 900; display: block; line-height: 1; }
        .event-month { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-color); }

        .event-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .event-info {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

/* From index.html */
/* Muted grey pipe */

        .search-container {
            padding: 12px; /* Increased hit target */
            cursor: pointer;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-container:hover { color: var(--accent-color); }

        /* Main Feed Cards */
        .article-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 2rem;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); height: 100%; object-fit: cover; }
        .article-card:hover .card-img-top { transform: scale(1.03); }
        .article-card .card-body { padding: 2rem; }

        .tag-badge {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .article-title {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-family: var(--font-serif);
        }

        .article-excerpt {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .article-meta { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        .author-name { font-weight: 700; font-size: 14px; color: var(--accent-color); }
        .post-date { color: var(--text-muted); font-size: 14px; }

        /* Sidebar Styles */
        .sidebar-section { margin-bottom: 3rem; }
        .sidebar-title {
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-title::after { content: ""; flex: 1; height: 1px; background: rgba(0,0,0,0.1); }

        /* Most Read */
        .most-read-item {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .most-read-item:last-child { border-bottom: none; }
        .most-read-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            line-height: 1.4;
            display: block;
            transition: var(--transition);
        }
        .most-read-title:hover { color: var(--accent-color); }
        .bullet-separator { color: var(--accent-color); margin-right: 8px; font-weight: 900; }

        /* Just In */
        .just-in-item { margin-bottom: 1.25rem; }
        .timestamp {
            font-size: 11px;
            font-weight: 800;
            color: var(--accent-color);
            display: block;
            margin-bottom: 2px;
        }
        .just-in-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            text-decoration: none;
            line-height: 1.4;
            display: block;
        }

        /* Newsletter Sidebar */
        .newsletter-sidebar {
            background-color: #1a1a1a;
            padding: 2rem;
            border-radius: 12px;
            color: white;
        }
        .newsletter-sidebar h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }
        .newsletter-sidebar p { font-size: 13px; color: #aaa; margin-bottom: 1.5rem; }
        .newsletter-sidebar .form-control {
            background: #2a2a2a;
            border: 1px solid #333;
            color: white;
            font-size: 14px;
            margin-bottom: 1rem;
        }

        /* Partner Card */
        .partner-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
        }
        .partner-card h4 { font-size: 1.25rem; margin-bottom: 1rem; }
        .social-icons-orange a {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin: 0 0.75rem;
            transition: var(--transition);
        }
        .social-icons-orange a:hover { transform: translateY(-3px); opacity: 0.8; }

/* From magazine.html */
.search-container {
            padding: 12px;
            cursor: pointer;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-container:hover { color: var(--accent-color); }

        /* Magazine Grid */
        .magazine-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .magazine-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .magazine-cover-wrapper { 
            overflow: hidden; 
            position: relative; 
            aspect-ratio: 2/3; /* Portrait Aspect Ratio */
            background-color: #eee;
        }
        
        .magazine-cover { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            transition: var(--transition); 
        }
        
        .magazine-card:hover .magazine-cover { 
            transform: scale(1.05); 
        }
        
        .magazine-card .card-body { 
            padding: 1.5rem; 
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .magazine-issue {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            display: block;
        }

        .magazine-title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-family: var(--font-sans);
        }

        .download-link {
            color: var(--text-muted);
            transition: var(--transition);
        }

        .download-link:hover {
            color: var(--accent-color);
        }

        .download-link i {
            font-size: 1.1rem;
        }

/* From news.html */
.search-container {
            padding: 12px;
            cursor: pointer;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-container:hover { color: var(--accent-color); }

        /* News Cards */
        .news-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 2rem;
            height: 100%;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); }
        .news-card:hover .card-img-top { transform: scale(1.03); }
        .news-card .card-body { padding: 1.5rem; }

        .news-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
            transition: var(--transition);
        }

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

        .news-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;

            height: calc(1.5em * 3); /* strict 3 lines */
            overflow: hidden;
            margin-bottom: 0.1rem;
        }

        .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
        }

        .tag-badge {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            display: inline-block;
        }
        

/* From relations.html */
/* Article Cards */
        .article-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 3rem;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); }
        .article-card:hover .card-img-top { transform: scale(1.03); }
        .article-card .card-body { padding: 1.5rem; }

        @media (min-width: 992px) { .article-card .card-body { padding: 3rem; } }

        .article-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            transition: var(--transition);
        }

        .article-title:hover { color: var(--accent-color); }

        .article-excerpt {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 80ch;
        }

        .article-meta { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        .author-name { font-weight: 700; font-size: 14px; }
        .post-date { color: var(--text-muted); font-size: 14px; }

        .tag-badge {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

/* From tourism.html */
/* Article Cards */
        .article-card {
            background: var(--card-bg);
            border: none !important;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            margin-bottom: 3rem;
        }

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

        .card-img-wrapper { overflow: hidden; position: relative; }
        .card-img-top { width: 100%; transition: var(--transition); }
        .article-card:hover .card-img-top { transform: scale(1.03); }
        .article-card .card-body { padding: 1.5rem; }

        @media (min-width: 992px) { .article-card .card-body { padding: 3rem; } }

        .article-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            transition: var(--transition);
        }

        .article-title:hover { color: var(--accent-color); }

        .article-excerpt {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 80ch;
        }

        .article-meta { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
        .author-name { font-weight: 700; font-size: 14px; }
        .post-date { color: var(--text-muted); font-size: 14px; }

        .tag-badge {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: inline-block;
        }

