    /* Reset & Base Styles */
    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
      background-color: #f4f6f8; /* Background body agar navbar terlihat kontras */
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    a { color: inherit; text-decoration: none; }
    * { box-sizing: border-box; }

    /* =========================================
       TOP BAR (DESKTOP & GLOBAL)
       Prefix: adamz-
    ========================================= */
    .adamz-topbar {
      height: 64px;
      background: #1a1c20; /* Warna sedikit lebih gelap agar elegan */
      color: #e0e6ed;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
      position: sticky;
      top: 0;
      z-index: 9999;
    }

    /* Brand / Logo Area */
    .adamz-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .adamz-logo { 
      width: 40px; 
      height: 40px; 
      border-radius: 8px;
      background: linear-gradient(135deg, #FF512F, #DD2476); /* Gradasi warna baru */
      display: flex; 
      align-items: center; 
      justify-content: center;
      font-weight: 700; 
      font-size: 14px; 
      color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .adamz-title { 
      font-weight: 600; 
      font-size: 18px; 
      letter-spacing: 0.5px;
      color: #fff;
    }

    /* Navigation Container (Desktop) */
    .adamz-nav { 
      flex: 1; 
      display: flex; 
      align-items: center; 
      justify-content: flex-end; /* Menu rata kanan */
      margin-left: 20px;
    }
    
    .adamz-menu { 
      list-style: none; 
      margin: 0; 
      padding: 0; 
      display: flex; 
      gap: 5px; 
      align-items: center; 
    }
    
    .adamz-item { position: relative; }
    
    /* Main Menu Link Styling */
    .adamz-item > a {
      display: flex;
      align-items: center;
      padding: 10px 16px;
      color: #b0b8c4;
      font-weight: 500;
      transition: all 0.2s ease;
      font-size: 14px;
      white-space: nowrap;
      border-radius: 6px;
    }
    .adamz-item > a:hover { 
      color: #fff; 
      background-color: rgba(255,255,255,0.05);
    }

    /* Indicator Arrow for Desktop */
    .has-submenu > a::after {
      content: "";
      display: inline-block;
      margin-left: 8px;
      width: 6px;
      height: 6px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      opacity: 0.7;
      transition: transform 0.2s;
    }
    
    /* Hover Effect for Arrow */
    .adamz-item:hover > a::after {
      transform: rotate(225deg) translateY(-2px);
    }

    /* =========================================
       DROPDOWN / SUBMENU (DESKTOP)
    ========================================= */
    .adamz-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      color: #333;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      padding: 8px 0;
      opacity: 0; 
      visibility: hidden;
      transform: translateY(15px);
      transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
      z-index: 10000;
      border: 1px solid rgba(0,0,0,0.05);
    }

    /* Nested Submenu (Level 3+) */
    .adamz-submenu .adamz-submenu {
      top: 0;
      left: 100%;
      margin-left: 4px; /* Sedikit jarak dari parent */
      transform: translateX(10px);
    }

    /* Show Submenu on Hover */
    .adamz-item:hover > .adamz-submenu,
    .adamz-submenu li:hover > .adamz-submenu { 
      opacity: 1; 
      visibility: visible;
      transform: translateY(0) translateX(0); 
    }

    /* Arrow for Nested Submenu (Right pointing) */
    .adamz-submenu .has-submenu > a::after {
      border-right: 2px solid #888;
      border-bottom: 2px solid #888;
      border-left: 0;
      border-top: 0;
      transform: rotate(-45deg);
      margin-left: auto;
    }

    /* Submenu Link Styling */
    .adamz-submenu a { 
      display: flex; 
      align-items: center;
      padding: 10px 20px; 
      color: #444; 
      font-size: 14px; 
      font-weight: 400;
      transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .adamz-submenu a:hover { 
      background: #f0f4f8; 
      color: #DD2476; /* Warna hover sesuai brand */
    }
    
    .adamz-submenu li { list-style: none; position: relative; }
    
    /* Little triangle connecting menu to bar */
    .adamz-item > .adamz-submenu::before {
      content: "";
      position: absolute; top: -6px; left: 24px;
      width: 12px; height: 12px;
      background: #fff;
      transform: rotate(45deg);
      border-top: 1px solid rgba(0,0,0,0.05);
      border-left: 1px solid rgba(0,0,0,0.05);
    }

    /* =========================================
       MOBILE DRAWER & BURGER
    ========================================= */
    .adamz-actions { display: none; align-items: center; gap: 12px; }
    
    .adamz-burger {
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 24px;
      padding: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Mobile Breakpoint */
    @media (max-width: 1024px) {
      .adamz-nav { display: none; }
      .adamz-actions { display: flex; }
    }

    /* Drawer Container */
    .adamz-mobile-drawer {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 12000;
    }
    .adamz-mobile-drawer.open { display: block; }

    /* Backdrop (Dark overlay) */
    .adamz-backdrop {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(2px);
    }

    /* Sliding Panel */
    .adamz-panel {
      position: absolute; top: 0; right: 0;
      width: 300px; height: 100%; max-width: 85%;
      background: #1e2126; 
      color: #fff;
      padding: 0; 
      overflow-y: auto;
      box-shadow: -5px 0 25px rgba(0,0,0,0.5);
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .adamz-mobile-drawer.open .adamz-panel { transform: translateX(0); }

    /* Mobile Header inside Drawer */
    .adamz-panel header { 
      display: flex; align-items: center; justify-content: space-between; 
      padding: 20px; 
      background: #15171a;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .adamz-panel h3 { margin: 0; font-size: 16px; font-weight: 600; color: #fff; }

    /* Mobile Menu List */
    .adamz-panel ul { list-style: none; padding: 0; margin: 0; }
    .adamz-panel li { width: 100%; position: relative; }
    
    .adamz-panel .nav-link, 
    .adamz-panel .toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 14px 20px;
      color: #d1d5db;
      font-size: 15px;
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.03);
      text-align: left;
      cursor: pointer;
      font-family: inherit;
    }
    .adamz-panel .nav-link:hover,
    .adamz-panel .toggle:hover {
        background: rgba(255,255,255,0.03);
        color: #fff;
    }

    /* Sub-menu container in mobile */
    .adamz-panel .sub { 
      display: none;
      background: rgba(0,0,0,0.25);
    }
    
    /* Open State for Accordion */
    .adamz-panel li.open > .sub { display: block; animation: fadeIn 0.3s; }

    /* Rotate arrow styling */
    .adamz-panel .toggle::after {
      content: "+"; 
      font-size: 18px; 
      font-weight: 300;
      transition: transform 0.2s;
    }
    .adamz-panel li.open > .toggle::after { 
        content: "-";
        transform: rotate(0); 
    }

    /* Indentations for Hierarchy */
    .adamz-panel .sub .nav-link,
    .adamz-panel .sub .toggle { padding-left: 35px; color: #aeb4be; font-size: 14px; }
    
    .adamz-panel .sub .sub .nav-link,
    .adamz-panel .sub .sub .toggle { padding-left: 50px; color: #8f95a0; }
    
        /* =========================================
       LANDING PAGE (MAIN CONTENT)
       Prefix: adamz-
    ========================================= */
    .adamz-main {
      flex: 1;
      width: 100%;
    }

    /* Hero Section */
    .adamz-hero {
      background: linear-gradient(to bottom, #1a1c20 0%, #2d3036 100%);
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }
    .adamz-hero::after {
      content: "";
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(255,81,47,0.1) 0%, transparent 60%);
      pointer-events: none;
    }

    .adamz-hero-title {
      font-size: 3rem;
      font-weight: 800;
      margin: 0 0 16px;
      background: linear-gradient(to right, #fff, #b0b8c4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -1px;
    }
    .adamz-hero-subtitle {
      font-size: 1.25rem;
      color: #94a3b8;
      max-width: 600px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }
    .adamz-btn {
      display: inline-flex;
      align-items: center;
      padding: 12px 28px;
      background: linear-gradient(135deg, #FF512F, #DD2476);
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 15px rgba(221, 36, 118, 0.4);
    }
    .adamz-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(221, 36, 118, 0.6);
    }

    /* Sections */
    .adamz-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .adamz-section-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
      color: #1e293b;
    }
    .adamz-section-title span {
      color: #DD2476;
    }

    /* Grid Layout */
    .adamz-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    /* Cards */
    .adamz-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #f1f5f9;
      display: flex;
      flex-direction: column;
    }
    .adamz-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .adamz-card-header {
      height: 140px;
      background: #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }
    .adamz-card-header.code { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); color: #fff; }
    .adamz-card-header.blog { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: #fff; }
    .adamz-card-header.philo { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); color: #fff; }

    .adamz-card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .adamz-card-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 10px;
      color: #1e293b;
    }
    .adamz-card-text {
      font-size: 0.95rem;
      color: #64748b;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .adamz-card-link {
      margin-top: auto;
      color: #DD2476;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    /* About Mini Section */
    .adamz-bg-light {
      background-color: #f1f5f9;
      width: 100%;
      max-width: 100%;
    }
    .adamz-about-wrap {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 60px 20px;
    }
    
    @media (max-width: 768px) {
      .adamz-hero-title { font-size: 2rem; }
      .adamz-grid { grid-template-columns: 1fr; }
    }


    /* =========================================
       FOOTER STYLES (NEW)
    ========================================= */
    .adamz-footer {
      background-color: #1a1c20;
      color: #b0b8c4;
      padding: 60px 0 20px;
      font-size: 14px;
      margin-top: auto;
      border-top: 5px solid #2d3036;
    }

    .adamz-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .adamz-footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    /* Brand Column */
    .adamz-footer-brand-area {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .adamz-footer-logo-box {
       width: 48px; height: 48px;
       border-radius: 8px;
       background: linear-gradient(135deg, #FF512F, #DD2476);
       display: flex; align-items: center; justify-content: center;
       color: #fff; font-weight: bold; font-size: 18px;
    }

    .adamz-footer-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
    }
    .adamz-footer-sub {
      font-size: 12px;
      color: #888;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .adamz-footer-desc {
      line-height: 1.6;
      margin-bottom: 25px;
      color: #9ca3af;
    }

    .adamz-footer-social-label {
        font-weight: 600;
        margin-bottom: 10px;
        color: #e5e7eb;
        display: block;
    }

    .adamz-footer-socials {
      display: flex;
      gap: 10px;
    }

    .adamz-footer-social {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.05);
      display: flex; align-items: center; justify-content: center;
      border-radius: 6px;
      transition: all 0.3s;
      color: #fff;
    }
    .adamz-footer-social:hover {
      background: #DD2476;
      transform: translateY(-2px);
    }

    /* Columns Headers */
    .adamz-footer h3 {
      font-size: 16px;
      color: #fff;
      margin: 0 0 10px 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .adamz-footer-underline {
      display: block;
      width: 40px;
      height: 3px;
      background: linear-gradient(to right, #FF512F, #DD2476);
      margin-bottom: 20px;
      border-radius: 2px;
    }

    /* Links List */
    .adamz-footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .adamz-footer-links li {
      margin-bottom: 12px;
    }
    .adamz-footer-links a {
      transition: all 0.2s;
      display: inline-block;
    }
    .adamz-footer-links a:hover {
      color: #DD2476;
      transform: translateX(5px);
    }

    /* Stats & Contact text */
    .adamz-footer-strong {
      color: #fff;
      font-weight: 600;
      margin-bottom: 5px;
      margin-top: 15px;
      display: block;
    }
    .adamz-footer-strong:first-child { margin-top: 0; }
    
    .adamz-footer p {
      margin: 0 0 10px;
      line-height: 1.5;
    }

    .adamz-stat-row {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .adamz-stat-val { color: #fff; font-weight: 600; }
    
    /* Copyright */
    .adamz-footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 25px;
      text-align: center;
      font-size: 13px;
      color: #6b7280;
    }
    
/* Container Utama */
#adamz-posts-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Header */
.adamz-header {
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent, #007bff);
    padding-left: 1rem;
}

.adamz-main-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Grid System - 2 Kolom */
.adamz-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Membuat 2 baris kolom */
    gap: 2rem;
}

/* Card Style */
.adamz-post-card {
    display: flex;
    flex-direction: column; /* Gambar di atas, teks di bawah */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adamz-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image Wrapper */
.adamz-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; /* Membuat area gambar seragam */
    overflow: hidden;
    background-color: #f0f0f0;
}

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

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

/* Konten Post */
.adamz-post-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.adamz-entry-title {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.adamz-entry-title a {
    text-decoration: none;
    color: #222;
    transition: color 0.2s;
}

.adamz-entry-title a:hover {
    color: var(--accent, #007bff);
}

.adamz-entry-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adamz-entry-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Membatasi teks hanya 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.adamz-read-more-wrapper {
    margin-top: auto; /* Mendorong tombol ke paling bawah card */
}

.adamz-btn-link {
    display: inline-block;
    padding: 0.5rem 0;
    color: var(--accent, #007bff);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.adamz-btn-link:hover {
    border-bottom-color: var(--accent, #007bff);
}

/* Pagination */
.adamz-pagination-box {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.adamz-pagination-nav {
    display: flex;
    gap: 0.5rem;
}

.adamz-page-item {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.adamz-page-item:hover {
    background-color: #f8f9fa;
}

/* Responsif: Menjadi 1 kolom di HP */
@media (max-width: 768px) {
    .adamz-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Container Utama */
#adamz-pages-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Header Halaman */
.adamz-pages-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.adamz-pages-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2d3436, #636e72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.adamz-pages-count {
    font-size: 0.9rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Grid System - 2 Kolom */
.adamz-pages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}

/* Item Card - Gaya Unik Tanpa Thumbnail */
.adamz-pages-item {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efek Dekoratif Nomor (Unique Touch) */
.adamz-pages-item::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border-radius: 50%;
    z-index: 0;
    transition: 0.3s;
}

.adamz-pages-item:hover {
    border-color: #cbd5e0;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.05);
}

.adamz-pages-item:hover::before {
    background: #ebf8ff;
    transform: scale(1.5);
}

/* Konten Dalam Card */
.adamz-pages-item-main {
    position: relative;
    z-index: 1;
}

.adamz-page-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.adamz-pages-meta {
    font-size: 0.85rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action Button */
.adamz-pages-item-actions {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.adamz-btn-open {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: #1a202c;
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.adamz-btn-open:hover {
    background: #4a5568;
    gap: 10px; /* Efek panah menjauh sedikit */
}

/* Pagination */
.adamz-pagination {
    margin-top: 3rem;
    text-align: center;
}

.adamz-pagination-inner {
    display: inline-flex;
    background: #f7fafc;
    padding: 0.5rem;
    border-radius: 12px;
    gap: 0.25rem;
}

.adamz-pagination-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 600;
}

.adamz-pagination-link:hover {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.adamz-pagination-info {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 768px) {
    .adamz-pages-grid {
        grid-template-columns: 1fr;
    }
}

/* Container */
#adamz-author-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Author Profile Card (Header) */
.adamz-author-profile {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    position: relative;
    border: 1px solid #f0f0f0;
}

.adamz-author-profile::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle at top right, #f0f4ff, transparent);
    border-radius: 0 24px 0 0;
}

.adamz-author-avatar-group {
    flex-shrink: 0;
}

.adamz-author-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.adamz-author-fallback {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
}

.adamz-author-info {
    flex: 1;
}

.adamz-author-name {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3436;
}

.adamz-author-bio {
    color: #636e72;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.adamz-author-stats {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    background: #f1f2f6;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2f3542;
    text-transform: uppercase;
}

/* Posts List (Portfolio Style) */
.adamz-author-posts-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.adamz-author-post-card {
    display: flex;
    gap: 1.5rem;
    background: transparent;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.adamz-author-post-card:hover {
    background: #ffffff;
    border-color: #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.adamz-post-thumb-link {
    flex: 0 0 220px;
}

.adamz-post-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 12px;
}

.adamz-post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.adamz-post-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0aec0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.adamz-post-title {
    margin: 0 0 0.75rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.adamz-post-title a {
    text-decoration: none;
    color: #1a202c;
    transition: color 0.2s;
}

.adamz-post-title a:hover {
    color: #6c5ce7;
}

.adamz-post-excerpt {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.adamz-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adamz-page-btn {
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: #f8f9fa;
    color: #2d3436;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.adamz-page-btn:hover {
    background: #2d3436;
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .adamz-author-profile {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .adamz-author-post-card {
        flex-direction: column;
    }
    .adamz-post-thumb-link {
        flex: 0 0 auto;
    }
}

/* Container Utama */
#adamz-cat-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Header Kategori dengan gaya Glassmorphism Ringan */
.adamz-cat-header {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--accent, #10ac84);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.adamz-cat-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 850;
    color: #2d3436;
    letter-spacing: -1px;
}

.adamz-cat-desc {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.6;
    max-width: 800px;
}

/* List Style - Clean Editorial */
.adamz-cat-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Post Card */
.adamz-cat-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.adamz-cat-card:last-child {
    border-bottom: none;
}

/* Thumbnail Box */
.adamz-cat-thumb-box {
    flex: 0 0 320px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.adamz-cat-card:hover .adamz-cat-img {
    transform: scale(1.08);
}

/* Content Body */
.adamz-cat-body {
    flex: 1;
}

.adamz-cat-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #10ac84);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.adamz-cat-body h2 {
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
    line-height: 1.3;
}

.adamz-cat-body h2 a {
    text-decoration: none;
    color: #2d3436;
    transition: color 0.2s;
}

.adamz-cat-body h2 a:hover {
    color: var(--accent, #10ac84);
}

.adamz-cat-excerpt {
    color: #57606f;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Action Button */
.adamz-cat-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid #eee;
    transition: all 0.3s ease;
}

.adamz-cat-btn:hover {
    color: var(--accent, #10ac84);
    border-bottom-color: var(--accent, #10ac84);
    padding-left: 10px;
}

/* Pagination */
.adamz-cat-pager {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.adamz-cat-page-link {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid #dfe6e9;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3436;
    font-weight: 600;
    transition: all 0.2s;
}

.adamz-cat-page-link:hover {
    background: #2d3436;
    color: #fff;
    border-color: #2d3436;
}

/* Responsive */
@media (max-width: 850px) {
    .adamz-cat-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .adamz-cat-thumb-box {
        flex: 0 0 auto;
        width: 100%;
    }
    .adamz-cat-header {
        padding: 1.5rem;
    }
    .adamz-cat-header h1 {
        font-size: 1.8rem;
    }
}

/* Container Arsip */
#adamz-arch-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Header Arsip */
.adamz-arch-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.adamz-arch-label {
    display: inline-block;
    background: #f1f2f6;
    color: #57606f;
    padding: 0.4rem 1.2rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.adamz-arch-title {
    font-size: 2.5rem;
    font-weight: 850;
    color: #2d3436;
    margin: 0;
    letter-spacing: -1.5px;
}

/* Grid 2 Kolom */
.adamz-arch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
}

/* Card Arsip */
.adamz-arch-card {
    display: flex;
    flex-direction: column;
    group: hover;
}

.adamz-arch-img-link {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.25rem;
    background: #eee;
}

.adamz-arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Date Chip (Floating on Image) */
.adamz-arch-date-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #2d3436;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

/* Typography Arsip */
.adamz-arch-post-title {
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.adamz-arch-post-title a {
    text-decoration: none;
    color: #1e272e;
    transition: color 0.2s;
}

.adamz-arch-post-title a:hover {
    color: #3742fa;
}

.adamz-arch-excerpt {
    font-size: 0.95rem;
    color: #747d8c;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination Style */
.adamz-arch-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.adamz-arch-nav-btn {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: #2d3436;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.adamz-arch-nav-btn:hover {
    opacity: 0.85;
}

.adamz-arch-page-info {
    font-size: 0.9rem;
    font-weight: 700;
    color: #a4b0be;
}

/* Mobile */
@media (max-width: 768px) {
    .adamz-arch-grid {
        grid-template-columns: 1fr;
    }
    .adamz-arch-title {
        font-size: 1.8rem;
    }
}
/* Container Utama */
#adamz-authidx-wrapper {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Header Halaman */
.adamz-authidx-header {
    text-align: center;
    margin-bottom: 4rem;
}

.adamz-authidx-page-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
}

.adamz-authidx-subtitle {
    color: #a0aec0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Grid Penulis */
.adamz-authidx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2.5rem;
}

/* Card Penulis - Gaya Portofolio */
.adamz-authidx-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    text-decoration: none;
    display: block;
}

.adamz-authidx-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #6c5ce7;
}

/* Avatar Style */
.adamz-authidx-avatar-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.adamz-authidx-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.adamz-authidx-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

/* Meta Data Penulis */
.adamz-authidx-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2d3436;
    margin: 0 0 0.5rem 0;
}

.adamz-authidx-bio {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button "View Profile" - Muncul saat hover */
.adamz-authidx-view-btn {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6c5ce7;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: 0.3s;
}

.adamz-authidx-card:hover .adamz-authidx-view-btn {
    opacity: 1;
    color: #1a202c;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .adamz-authidx-grid {
        grid-template-columns: 1fr;
    }
}

/* Container Utama */
#adamz-catidx-wrapper {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Header Index */
.adamz-catidx-header {
    margin-bottom: 3.5rem;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 1.5rem;
}

.adamz-catidx-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a202c;
    margin: 0;
    letter-spacing: -1.5px;
}

/* Grid Layout */
.adamz-catidx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

/* Card Styling */
.adamz-catidx-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.adamz-catidx-link {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-decoration: none;
    height: 100%;
    color: inherit;
}

/* Decorator Icon (Gaya Folder) */
.adamz-catidx-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    transition: background 0.3s;
}

/* Hover Effect */
.adamz-catidx-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: #3b82f6;
}

.adamz-catidx-item:hover .adamz-catidx-link::before {
    background: #3b82f6;
}

/* Category Content */
.adamz-catidx-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adamz-catidx-name::after {
    content: '→';
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: #3b82f6;
}

.adamz-catidx-item:hover .adamz-catidx-name::after {
    opacity: 1;
    transform: translateX(0);
}

.adamz-catidx-desc {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 640px) {
    .adamz-catidx-title { font-size: 2.2rem; }
    .adamz-catidx-grid { grid-template-columns: 1fr; }
    .adamz-catidx-link { padding: 1.5rem; }
}

/* Container Utama */
.adamz-page-article {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: #1a202c;
    line-height: 1.8;
}

/* Header Area */
.adamz-page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #edf2f7;
}

.adamz-page-title {
    font-size: 3rem;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #111827;
}

/* Top Meta (Baris 2) */
.adamz-page-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #718096;
}

.adamz-page-author-inline .label {
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.adamz-page-author-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 700;
}

/* Content Area (Baris 3) */
.adamz-page-content {
    font-size: 1.15rem;
    color: #2d3748;
}

.adamz-page-content p {
    margin-bottom: 1.5rem;
}

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

/* Footer Area (Baris 4) */
.adamz-page-footer {
    margin-top: 4rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 20px;
}

.adamz-page-publisher-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.adamz-page-avatar-wrap {
    flex-shrink: 0;
}

.adamz-page-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.adamz-page-avatar-fallback {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4a5568;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.adamz-page-publisher-info strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #a0aec0;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.adamz-page-publisher-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a202c;
    text-decoration: none;
}

.adamz-page-published-at {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.25rem;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .adamz-page-title { font-size: 2.2rem; }
    .adamz-page-top-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}


/* ============================
   10) POSTS / CONTENT STYLES
   ============================ */
.adam-post-single {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Breadcrumb */
.adam-breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.adam-breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}
.adam-breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.adam-breadcrumb .sep { opacity: 0.5; font-size: 0.8em; }
.adam-breadcrumb .current { color: var(--text); font-weight: 500; }

/* Header & Title */
.adam-post-header { margin-bottom: 32px; }
.adam-post-title {
  font-family: inherit;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 24px;
}

/* Category Badges */
.adam-cat-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.cat-badge {
  background: var(--control-bg);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.cat-badge:hover { background: aqua; color: #000; }

/* Meta Data Row */
.adam-post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  gap: 20px;
}

/* Author Section */
.meta-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface-hover);
}
.author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.meta-text { display: flex; flex-direction: column; line-height: 1.2; }
.meta-text .by { font-size: 0.75rem; color: var(--muted); }
.meta-text .name { font-size: 0.95rem; font-weight: 600; color: var(--text); }

/* Date & Details */
.meta-details { display: flex; gap: 20px; font-size: 0.85rem; color: var(--muted); flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 6px; }
.meta-item svg { width: 16px; height: 16px; opacity: 0.7; }
.meta-item.updated { color: var(--accent); }

/* Thumbnail */
.adam-post-thumb { margin: 0 0 40px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.adam-post-thumb img { width: 100%; height: auto; display: block; }

/* Content Body */
.adam-post-body { font-family: inherit; color: var(--text); }
.adam-post-body p { font-family: inherit; color: var(--text); }
.adam-post-body h2, .adam-post-body h3 {
  font-family: inherit;
  color: var(--text);
  margin-top: 2em;
  margin-bottom: 0.75em;
  font-weight: 700;
}
.adam-post-body h2 { font-size: 1.8rem; }
.adam-post-body h3 { font-size: 1.5rem; }
.adam-post-body ul, .adam-post-body ol { margin-bottom: 1.5em; padding-left: 1.5em; }
.adam-post-body li { margin-bottom: 0.5em; }
.adam-post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.adam-post-body blockquote {
  border-left: 4px solid var(--accent);
  margin: 2em 0;
  padding: 1em 1.5em;
  background: var(--surface-hover);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}
.adam-post-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5em 0; }

/* Footer & Actions */
.adam-post-footer { margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--border); }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--control-bg);
  transition: all 0.2s;
}
.btn-back:hover { background: var(--surface-hover); color: var(--accent); }

/* Mobile Adjustments for posts */
@media (max-width: 768px) {
  .adam-post-title { font-size: 1.8rem; }
  .adam-post-meta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .meta-details { width: 100%; justify-content: flex-start; gap: 16px; }
}

/* ============ SINGLE HALAMAN ================ */

    /* Post single base */
.adam-post-single {
  max-width: 820px;
  margin: 2.25rem auto;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: var(--text);
}

/* Header */
.post-header {
  margin-bottom: 1rem;
}
.post-title {
  font-size: 1.2rem;
  line-height: 1.15;
  margin: 0 0 .5rem 0;
  color: var(--text);
}
.post-top-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  font-size: .95rem;
}

/* Author inline */
.author-inline .author-link,
.author-inline .author-username {
  color: var(--accent);
  font-weight: 600;
}
.author-inline .author-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Updated label */
.updated-at {
  color: var(--muted);
  font-size: .9rem;
  background: transparent;
  padding: .25rem .5rem;
  border-radius: 6px;
}

/* Content */
.post-content {
  margin: 1.25rem 0;
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
}

/* Footer published by */
.post-published-by {
  margin-top: 1.5rem;
  border-top: 1px dashed var(--guide-line);
  padding-top: 1rem;
}
.published-by-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.publisher-avatar .avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--border);
  background: var(--control-bg);
}
.avatar-fallback {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--control-bg);
  color: var(--muted);
  font-weight: 700;
  border: 2px solid var(--border);
}
.publisher-meta .publisher-line {
  color: var(--text);
  margin-bottom: .25rem;
}
.publisher-meta .publisher-name {
  color: var(--accent);
  margin-left: .5rem;
  font-weight: 600;
}
.publisher-meta .publisher-name:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.publisher-meta .published-at {
  color: var(--muted);
  font-size: .92rem;
}

/* Accessibility focus */
a:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
  outline-offset: 2px;
  border-radius: 6px;
}
.author-label {
  margin-right: 4px;  /* atur sesuai kebutuhan */
}

@media (max-width: 720px) {
  .adam-post-single {
    margin: 1rem;
    padding: 1rem;
  }
  .post-title {
    font-size: 1.5rem;
  }

  /* =============================
     BARIS AUTHOR | UPDATED
     Tetap horizontal bila muat
     dan alignment stabil
  ============================== */
  .post-top-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;     /* penting agar tidak pindah ke bawah */
    align-items: center;   /* jaga tetap rata vertikal */
    gap: 0.5rem;
    width: 100%;
  }

  /* AUTHOR — tidak membuat flex jadi tinggi berbeda */
  .author-inline {
    flex: 0 1 auto;        /* tidak memaksa melebar */
    min-width: 0;          /* boleh menyusut */
    display: flex;
    align-items: center;   /* stabil secara vertikal di dalam */
    overflow: hidden;
  }

  .author-inline .author-username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* UPDATED AT — tetap mempertahankan satu baris */
  .updated-at {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.9rem;
  }

  /* Avatar di footer */
  .publisher-avatar .avatar-img,
  .avatar-fallback {
    width: 44px;
    height: 44px;
  }
}

/* ========== KATEGORI (tags) ========== */
/* markup class: .post-categories .post-category */
.post-categories {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;               /* membungkus saat sempit */
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
}

/* Pil style tag */
.post-category {
  display: inline-block;
  padding: .45rem .7rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
  white-space: nowrap;
  max-width: 100%;               /* melindungi lebar */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* alternatif: jika Anda ingin horizontal scroll pada satu baris (pilihan) */
/* .post-categories.scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } */
/* .post-categories.scroll .post-category { white-space: nowrap; } */

/* hide ugly scrollbar (non-essential) */
.post-categories::-webkit-scrollbar { height: 6px; }
.post-categories::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 6px; }

/* ========== BUTTONS / ACTIONS ========== */
.post-actions {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;   /* memungkinkan stacked di mobile */
}

/* tombol umum */
.post-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
  min-height: 44px;   /* target touch-friendly size */
}

/* tombol khusus */
.post-actions .btn--primary {
  background: var(--accent);
  color: white;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  font-weight: 600;
}

/* ikon panah kecil di kiri jika mau */
.post-actions .btn .icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* ========== MOBILE ADJUSTMENTS (<=720px) ========== */
@media (max-width: 720px) {
  .adam-post-single {
    margin: 1rem;
    padding: 1rem;
  }

  /* kategori: biarkan wrap, beri sedikit spacing */
  .post-categories {
    gap: .5rem;
  }

  /* tombol: full width saat layar kecil */
  .post-actions {
    gap: .6rem;
  }
  .post-actions .btn {
    flex: 1 1 100%;         /* tiap tombol ambil satu baris */
    justify-content: center;
  }

  /* jika ingin tombol Back terlihat berbeda */
  .post-actions .btn--back {
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    color: var(--text);
  }

  /* pastikan avatar footer lebih kecil di mobile */
  .publisher-avatar .avatar-img,
  .avatar-fallback {
    width: 44px;
    height: 44px;
  }
}

/* ======== CUSTOM ========= */