/* Page Header - Publikasi Variant */
.pub-header {
    margin-top: 80px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('../gambar/hero-dekstop.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 90px 20px 70px;
    text-align: center;
    position: relative;
}

.pub-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--accent);
    color: #34d399;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pub-header h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pub-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 35px;
}

.pub-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.pub-search-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pub-search-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.pub-search-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
}

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

.pub-search-btn {
    padding: 12px 28px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pub-search-btn:hover {
    background: #059669;
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Main Container */
.pub-container {
    max-width: 1350px;
    margin: 40px auto 120px;
    padding: 0 30px;
}

/* Category Filter Tabs */
.category-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.filter-btn {
    padding: 10px 22px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--accent-glow);
}

/* Featured Post Card (Hero Highlight) */
.featured-post-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    background: var(--bg-secondary);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 420px;
    overflow: hidden;
    background: #f8fafc;
    z-index: 1;
}

.featured-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.pub-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.tag-featured {
    background: #0284c7;
}

.featured-content {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pub-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.featured-content h2 {
    font-size: 1.8rem;
    line-height: 1.35;
    margin-bottom: 15px;
    color: var(--text-main);
}

.featured-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-read {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

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

/* Layout Grid + Sidebar */
.pub-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

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

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

/* Horizontal Card Style */
.pub-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: stretch;
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.pub-card-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 250px;
    overflow: hidden;
    background: #f8fafc;
    z-index: 1;
}

.pub-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.pub-card-body {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.pub-meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pub-card-body h3 {
    font-size: 1.3rem;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-main);
}

.pub-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.read-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

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

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

.sidebar-widget {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.sidebar-widget h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.trending-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trending-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.trending-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

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

.trending-info a:hover {
    color: var(--accent);
}

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

.newsletter-widget {
    background: var(--bg-secondary);
    color: var(--text-main);
}

.newsletter-widget h4 {
    color: var(--text-main);
}

.newsletter-widget p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    color: var(--text-main);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

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

.newsletter-form button:hover {
    background: #059669;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .pub-layout {
        grid-template-columns: 1fr;
    }

    .featured-post-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pub-header h1 {
        font-size: 2.2rem;
    }

    .pub-card {
        grid-template-columns: 1fr;
    }

    .pub-card-img {
        height: 200px;
    }
}

/* ==========================================================================
   PUBLICATION DETAIL PAGE STYLING
   ========================================================================== */

.pub-detail-container {
    max-width: 1240px;
    margin: 110px auto 100px;
    padding: 0 24px;
}

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

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

.news-header {
    margin-bottom: 24px;
}

.news-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.news-category-badge {
    background: #ecfdf5;
    color: var(--accent);
    border: 1px solid #a7f3d0;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.news-status-badge {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.news-title {
    font-size: 2.6rem;
    line-height: 1.25;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.news-meta-bar {
    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-meta-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

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

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

.news-stats-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

/* Share Bar */
.share-bar-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 30px;
    padding: 14px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

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

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-wa { background: #25d366; color: white; }
.btn-wa:hover { background: #1da851; }

.btn-tw { background: #000000; color: white; }
.btn-tw:hover { background: #333333; }

.btn-fb { background: #1877f2; color: white; }
.btn-fb:hover { background: #145dbf; }

.btn-copy { background: #e2e8f0; color: #334155; }
.btn-copy:hover { background: #cbd5e1; }

/* Featured Hero Image */
.news-featured-container {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

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

.news-featured-caption {
    padding: 12px 20px;
    background: #f8fafc;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-top: 1px solid #e2e8f0;
}

/* Body Layout Grid */
.news-body-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

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

.news-lead-paragraph {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #0f172a;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e2e8f0;
}

.news-main-article h2 {
    font-size: 1.6rem;
    color: #0f172a;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 14px;
}

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

/* Callout Quote Box */
.news-quote-box {
    margin: 30px 0;
    padding: 24px 28px;
    background: #f0fdf4;
    border-left: 5px solid var(--accent);
    border-radius: 0 16px 16px 0;
}

.news-quote-box p {
    font-size: 1.1rem;
    font-style: italic;
    color: #065f46;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-quote-box cite {
    display: block;
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 700;
    color: #047857;
}

/* Fact Card Box */
.news-fact-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.fact-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fact-card-header h4 {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700;
}

.fact-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fact-card-list li {
    font-size: 0.95rem;
    color: #334155;
    padding-left: 20px;
    position: relative;
}

.fact-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Inline Photo */
.news-inline-photo {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

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

.news-inline-photo figcaption {
    padding: 10px 16px;
    background: #f8fafc;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Tags Wrapper */
.news-tags-wrapper {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tags-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.tags-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-pills 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-pills a:hover {
    background: var(--accent);
    color: white;
}

/* Author Bio Card */
.news-author-bio-card {
    margin-top: 35px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.bio-avatar {
    width: 56px;
    height: 56px;
    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: 1.1rem;
    flex-shrink: 0;
}

.bio-details h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
}

.bio-role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.bio-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Next / Prev Navigation Buttons */
.article-nav-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}

.nav-btn small {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
}

.nav-btn span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.next-btn {
    text-align: right;
}

/* Comments Section */
.news-comments-section {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #e2e8f0;
}

.comments-heading {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 24px;
}

.news-comment-form {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 35px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.btn-submit-news-comment {
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 18px var(--accent-glow);
    transition: all 0.2s ease;
}

.btn-submit-news-comment:hover {
    background: #059669;
    transform: translateY(-2px);
}

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

.comment-bubble {
    display: flex;
    gap: 16px;
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.bubble-avatar {
    width: 44px;
    height: 44px;
    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: 0.95rem;
    flex-shrink: 0;
}

.bubble-body {
    flex: 1;
}

.bubble-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 8px;
}

.bubble-author {
    font-size: 1rem;
    color: var(--text-main);
}

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

.bubble-body p {
    color: #334155;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Sidebar News Widgets */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.sidebar-widget-card h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 700;
}

/* Download Document Widget */
.download-document-widget {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 1px solid #a7f3d0;
}

.widget-doc-icon {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.15);
}

.download-document-widget p {
    font-size: 0.88rem;
    color: #065f46;
    margin-bottom: 16px;
    line-height: 1.5;
}

.doc-file-info {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.doc-file-info .file-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    word-break: break-all;
}

.doc-file-info .file-size {
    font-size: 0.78rem;
    color: #64748b;
}

.btn-download-pdf {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 15px var(--accent-glow);
    transition: all 0.2s ease;
}

.btn-download-pdf:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Trending List in Detail Sidebar */
.news-trending-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-trending-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.rank-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.rank-details a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.rank-details a:hover {
    color: var(--accent);
}

.rank-details small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* Newsletter in Detail */
.news-newsletter-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.news-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-newsletter-form input {
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    outline: none;
    font-size: 0.9rem;
}

.news-newsletter-form button {
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: var(--accent);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.news-newsletter-form button:hover {
    background: #059669;
}

.btn-back-publikasi {
    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.04);
    transition: all 0.2s ease;
}

.btn-back-publikasi:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

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

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

    .form-grid {
        grid-template-columns: 1fr;
    }

    .article-nav-buttons {
        grid-template-columns: 1fr;
    }

    .next-btn {
        text-align: left;
    }
}

