/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0f172a;
    --accent: #ef4444;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --container: 1200px;
    --header-h: 80px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
}

body.modal-open {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}

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

.top-links a {
    margin-left: 20px;
    color: white;
    font-weight: 500;
}

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

.site-header {
    background: var(--white);
    height: var(--header-h);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
    
    .nav-list {
        display: flex;
        gap: 30px;
        align-items: center;
    }
    
    .nav-list a {
        font-weight: 600;
        font-size: 1rem;
        color: var(--primary);
        position: relative;
    }
    
    .nav-list a:not(.btn-highlight)::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: var(--transition);
    }
    
    .nav-list a:hover::after {
        width: 100%;
    }
    
    .btn-highlight {
        background: var(--accent);
        color: white !important;
        padding: 8px 18px;
        border-radius: 4px;
    }
    
    .btn-highlight:hover {
        background: #dc2626;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: block;
    padding: 10px;
    z-index: 1001;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    border-radius: 2px;
    left: 0;
    transition: var(--transition);
}

.hamburger-inner::before { top: -10px; }
.hamburger-inner::after { bottom: -10px; }

/* Hamburger Animation */
.menu-toggle[aria-expanded="true"] .hamburger-inner {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Off-Canvas Menu */
.off-canvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.off-canvas-menu.active {
    transform: translateX(-300px);
}

.global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.off-canvas-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.close-menu {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-main);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover {
    background-color: #f3f4f6;
    color: var(--primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 40px 0;
    background: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Featured Post */
.hero-main-post {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
}

.post-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.post-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-main-post:hover .post-image-wrapper img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
}

.hero-main-post h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    color: var(--primary);
}

.hero-main-post .excerpt {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.read-more-btn {
    color: var(--accent);
    font-weight: 700;
    display: inline-block;
    padding: 0;
    font-size: 1rem;
    text-align: left;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Sidebar */
.hero-sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.sidebar-title {
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--primary);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-item:hover {
    transform: translateX(5px);
}

.sidebar-img {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-text h3 {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 5px;
}

.sidebar-item:hover .sidebar-text h3 {
    color: var(--accent);
}

.sidebar-text .date {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
}

/* =========================================
   SECTIONS GENERAL
   ========================================= */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: var(--primary);
    white-space: nowrap;
}

.separator {
    height: 2px;
    background: var(--border);
    width: 100%;
}

.filter-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
}

.filter-label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

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

/* =========================================
   NEWS GRID SECTION
   ========================================= */
.news-feed {
    padding: 60px 0;
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

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

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

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

.card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-cat {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--primary);
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    padding: 0;
    text-align: left;
}

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

/* =========================================
   MANUFACTURERS SECTION (Horizontal Layout)
   ========================================= */
.manufacturers-section {
    padding: 60px 0;
    background: white;
}

.manu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.manu-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    cursor: pointer;
    transition: var(--transition);
}

.manu-row:hover {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .manu-row {
        flex-direction: column;
    }
}

.manu-img {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.manu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manu-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.manu-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.text-link {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

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

/* =========================================
   WORKSHOPS SECTION
   ========================================= */
.workshops-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.workshop-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

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

.workshop-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.workshop-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.workshop-meta {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.workshop-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* =========================================
   EVENTS SECTION
   ========================================= */
.events-section {
    padding: 60px 0;
    background: white;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.event-row:hover {
    transform: translateX(5px);
}

.event-date {
    background: var(--bg-light);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    min-width: 80px;
    border: 1px solid var(--border);
}

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

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2px;
}

.event-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.event-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.event-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 10px;
}

/* =========================================
   MULTIMEDIA SECTION
   ========================================= */
.multimedia-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.media-links-top {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.media-tab {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: white;
    transition: var(--transition);
}

.media-tab:hover,
.media-tab.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.media-content {
    display: none;
}

.media-content.active {
    display: block;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.media-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
}

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

.media-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.media-card:hover .play-btn-overlay {
    background: rgba(0,0,0,0.5);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.media-info {
    padding: 15px;
}

.media-info h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
}

.media-views {
    font-size: 0.85rem;
    color: var(--text-light);
}

.youtube-cta-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid var(--accent);
}

.youtube-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.youtube-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.youtube-cta-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-youtube {
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.btn-youtube:hover {
    background: #dc2626;
}

/* =========================================
   NEWSLETTER SECTION
   ========================================= */
.newsletter-section {
    background: var(--primary);
    padding: 60px 0;
    color: white;
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .newsletter-box {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .newsletter-text {
        max-width: 50%;
    }
}

.newsletter-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    gap: 10px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover:not(:disabled) {
    background: #dc2626;
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 10px;
    font-size: 0.9rem;
    min-height: 20px;
}

.form-message.success {
    color: #86efac;
}

.form-message.error {
    color: #fca5a5;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--primary);
    color: #9ca3af;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-col h3 {
    color: white;
    font-family: 'Merriweather', serif;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.youtube-cta {
    background: rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    margin-top: 15px;
}

.youtube-cta a {
    color: var(--accent);
    font-weight: 600;
    margin-left: 10px;
}

.youtube-cta a:hover {
    text-decoration: underline;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: white;
}

/* =========================================
   MODALS
   ========================================= */
.video-modal,
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.video-modal.active,
.article-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Video Modal */
.video-container {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
    background: black;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Article Modal */
.modal-content {
    background: white;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #dc2626;
}

.modal-body img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.modal-body h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--primary);
}

.modal-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-main);
}

.modal-body h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.modal-body ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-body ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* =========================================
   ARTICLE MODAL CONTENT STYLES
   ========================================= */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-category {
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.meta-separator {
    color: var(--border);
}

.meta-date,
.meta-author,
.meta-read-time {
    font-size: 0.85rem;
}

.article-hero {
    margin-bottom: 25px;
}

.article-hero-img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 25px;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
}

.article-content p {
    margin-bottom: 18px;
}

.article-content .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 25px;
    color: var(--primary);
}

.article-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.article-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid var(--border);
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.article-cta {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.article-cta p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.cta-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.cta-link:hover {
    color: #dc2626;
}

/* News card hidden state for filter animation */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* =========================================
   RESPONSIVE UTILITIES
   ========================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 20px 0;
    }
    
    .news-feed,
    .newsletter-section,
    .manufacturers-section,
    .workshops-section,
    .events-section,
    .multimedia-section {
        padding: 40px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .filter-controls {
        margin-left: 0;
    }
    
    .manu-row {
        flex-direction: column;
    }
    
    .event-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
a:focus, button:focus, input:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 800;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

/* Social Icons in Footer */
.footer-col .social-icons a {
    font-size: 1rem;
}

.footer-col p i {
    margin-right: 8px;
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.about-section{
  padding: 64px 0;
  background: #ffffff;
}

.about-box{
  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.about-content{
  padding: 22px 22px;
  max-width: 920px;
}

.about-content p{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.78);
}

.about-content p:last-child{
  margin-bottom: 0;
}

.about-note{
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.70);
}

.about-link{
  color: #ef4444;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-link:hover{
  filter: brightness(0.95);
}

/* Mobile */
@media (max-width: 980px){
  .about-content{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .about-section{
    padding: 48px 0;
  }

  .about-content{
    padding: 16px;
  }

  .about-content p{
    font-size: 15px;
  }
}