:root {
    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.4);
    --text-main: #0f172a;
    --text-muted: #475569;
    --organic-color: #84cc16;
    --nonorganic-color: #3b82f6;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Decorations */
.bg-shapes {
    display: none;
}
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float-anim 20s ease-in-out infinite alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 10%;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #eab308;
    top: 50%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes float-anim {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.2); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -1px;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    width: 100%;
    margin: 0;
    padding: 180px 20px 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%), url('../gambar/hero-dekstop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: max(20px, calc((100vw - 1200px) / 2));
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8);
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 20px var(--accent-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

/* Sections Common */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

/* Problems Section */
.problems {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 20px;
}

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

.problem-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.problem-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.problem-card:hover .problem-img-wrapper img {
    transform: scale(1.05);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.problem-content {
    padding: 30px;
}

.problem-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* Comparison Section */
.comparison {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 20px;
}

.comparison-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.comp-box {
    flex: 1;
    min-width: 300px;
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 0;
    border-top: 4px solid;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.comp-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    pointer-events: none;
}

.organic {
    border-color: var(--organic-color);
}
.organic::before { background: var(--organic-color); }

.non-organic {
    border-color: var(--nonorganic-color);
}
.non-organic::before { background: var(--nonorganic-color); }

.comp-img-wrapper {
    width: 100%;
    height: 250px;
    background: #f8fafc;
    overflow: hidden;
}

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

.comp-box:hover .comp-img-wrapper img {
    transform: scale(1.05);
}

.comp-content {
    padding: 40px;
}

.comp-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.comp-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-main);
}

/* Video Section */
.video-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.video-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.video-header {
    margin-bottom: 30px;
}

.video-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.video-header p {
    color: var(--text-muted);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.footer-logos img:hover {
    transform: scale(1.1);
}

/* Principles Section */
.principles {
    max-width: 1200px;
    margin: 0 auto 150px;
    padding: 0 20px;
}

.principle-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: #f8fafc;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Facts Section */
.facts-section {
    background: linear-gradient(135deg, var(--accent), #047857);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 150px;
}

.facts-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-item .counter {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.fact-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    max-width: 800px;
    margin: 0 auto 150px;
    padding: 60px 40px;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-main);
    color: white;
}

/* Page Header */
.page-header {
    margin-top: 80px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('../gambar/hero-dekstop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 35px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Search Bar Styles */
.search-container {
    max-width: 650px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.22);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.search-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.search-input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-family: inherit;
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.search-btn:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Posts Section */
.posts-section {
    max-width: 1400px;
    margin: 80px auto 150px;
    padding: 0 40px;
}

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

.post-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.post-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

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

.post-card:hover .post-img img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex: 1;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #047857;
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 80%), url('../gambar/hero-mobile.png');
        padding: 180px 20px 60px;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-left: 0;
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .page-header {
        background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('../gambar/hero-mobile.png');
        padding: 80px 20px;
    }
}

/* Detail Article View Styles */
.article-container {
    max-width: 1200px;
    margin: 120px auto 100px;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.article-header {
    margin-bottom: 35px;
}

.article-category {
    display: inline-block;
    background: #ecfdf5;
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.article-title {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-main);
    font-weight: 800;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.meta-details {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    background: #f1f5f9;
}

.article-featured-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.image-caption {
    display: block;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.03);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.article-body-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.article-content {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #1e293b;
}

.article-content p {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h1 { font-size: 2rem; }
.article-content h2 { font-size: 1.6rem; }
.article-content h3 { font-size: 1.3rem; }
.article-content h4 { font-size: 1.15rem; }

.article-content ul, 
.article-content ol {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    padding-left: 24px;
}

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

.article-content blockquote {
    margin: 1rem 0;
    padding: 12px 20px;
    background: #f8fafc;
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    color: #334155;
    font-style: italic;
}

.article-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 16px 0 !important;
}

.article-content table td,
.article-content table th {
    border: 1px solid #cbd5e1 !important;
    padding: 10px 14px !important;
    vertical-align: top !important;
}

.article-content table th {
    background-color: #f8fafc !important;
    font-weight: 700 !important;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 12px 0;
}

.article-content video {
    max-width: 100%;
    border-radius: 12px;
    margin: 12px 0;
}

.info-callout {
    background: #ecfdf5;
    border-left: 4px solid var(--accent);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 35px 0;
}

.info-callout h4 {
    color: #047857;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-callout p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #065f46;
}

.article-footer-tags {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tags-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-list span {
    font-weight: 700;
    color: var(--text-main);
}

.tags-list a {
    background: #f1f5f9;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tags-list a:hover {
    background: var(--accent);
    color: white;
}

/* Sidebar Details */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.related-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-list a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

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

.related-list small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.btn-back-edukasi {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #ffffff;
    color: var(--accent);
    border: 2px solid var(--accent);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.btn-back-edukasi:hover {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 10px 25px var(--accent-glow);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .article-body-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.1rem;
    }
}

/* Comments Section Styling */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.comments-title {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Comment Form */
.comment-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.btn-submit-comment {
    padding: 14px 32px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 20px var(--accent-glow);
    transition: all 0.3s ease;
}

.btn-submit-comment:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 18px;
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.comment-item:hover {
    transform: translateY(-2px);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    color: var(--accent);
    border: 2px solid #a7f3d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

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

.comment-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.05rem;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comment-body {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Inline Media Styles (Photo & Video within Article Body) */
.inline-media {
    margin: 35px 0;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.inline-photo img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.inline-photo figcaption {
    padding: 12px 20px;
    background: #f8fafc;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.inline-video {
    padding: 24px;
}

.inline-video h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.video-container-box {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container-box video {
    width: 100%;
    max-height: 420px;
    display: block;
}

.video-caption {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}