/* ============================================
   Kreasi Tangan — Blog DIY & Kerajinan
   Warna: #e65100 primer, #fff9c4 aksen, #fff8f5 bg
   ============================================ */

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

:root {
  --primer: #e65100;
  --primer-dark: #bf360c;
  --primer-light: #ff8a50;
  --aksen: #fff9c4;
  --aksen2: #ffe082;
  --bg: #fff8f5;
  --bg2: #fff3e0;
  --teks: #3e2723;
  --teks2: #6d4c41;
  --teks3: #8d6e63;
  --putih: #ffffff;
  --border: #ffccbc;
  --shadow: rgba(230, 81, 0, 0.15);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--teks);
  line-height: 1.7;
}

a { color: var(--primer); text-decoration: none; }
a:hover { color: var(--primer-dark); text-decoration: underline; }

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

/* ============ DEMO BAR ============ */
.demo-bar {
  background: var(--teks);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  padding: 7px 16px;
  letter-spacing: 0.3px;
}
.demo-bar a { color: var(--aksen2); font-weight: 600; }
.demo-bar a:hover { color: #fff; }

/* ============ HEADER / NAV ============ */
.site-header {
  background: var(--putih);
  border-bottom: 3px solid var(--primer);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primer);
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--primer);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teks2);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.aktif {
  background: var(--primer);
  color: #fff;
  text-decoration: none;
}

/* Mobile nav checkbox hack */
.menu-toggle { display: none; }
.menu-label {
  display: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid var(--border);
}
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--teks);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 680px) {
  .menu-label { display: flex; flex-direction: column; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--putih);
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 3px solid var(--primer);
    box-shadow: 0 6px 20px var(--shadow);
    gap: 4px;
  }
  .nav-links a { display: block; padding: 10px 16px; border-radius: 8px; }
  .menu-toggle:checked ~ .nav-links { display: flex; }
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--primer) 0%, var(--primer-light) 60%, var(--aksen2) 100%);
  padding: 72px 20px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-putih {
  background: #fff;
  color: var(--primer);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-putih:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); text-decoration: none; color: var(--primer-dark); }
.btn-outline-putih {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 11px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-outline-putih:hover { background: rgba(255,255,255,0.2); text-decoration: none; color: #fff; }

/* Craft decorations hero */
.hero-crafts {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.craft-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============ MAIN LAYOUT ============ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ SECTIONS ============ */
.section { padding: 56px 0; }
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teks);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, var(--primer), transparent);
  border-radius: 2px;
  margin-left: 8px;
}
.section-sub {
  color: var(--teks3);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* ============ FEATURED POSTS GRID ============ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.post-card {
  background: var(--putih);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}
.post-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.post-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primer);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
}
.post-body { padding: 20px; }
.post-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teks);
  margin-bottom: 8px;
  line-height: 1.4;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--primer); text-decoration: none; }
.post-excerpt { color: var(--teks3); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--teks3);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.post-meta-left { display: flex; gap: 12px; }
.read-more {
  color: var(--primer);
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Featured card (besar) */
.post-card.featured .post-thumb { height: 220px; }
.post-card.featured .post-title { font-size: 1.2rem; }

/* ============ SUBSCRIBE BANNER ============ */
.subscribe-banner {
  background: linear-gradient(135deg, var(--aksen) 0%, var(--aksen2) 100%);
  border: 2px dashed var(--aksen2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscribe-banner::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: rgba(230,81,0,0.08);
  border-radius: 50%;
}
.subscribe-banner h3 { font-size: 1.4rem; font-weight: 800; color: var(--teks); margin-bottom: 8px; }
.subscribe-banner p { color: var(--teks2); margin-bottom: 20px; }
.subscribe-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 11px 18px;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-size: 0.9rem;
  outline: none;
  background: #fff;
}
.subscribe-form input[type="email"]:focus { border-color: var(--primer); }
.btn-primer {
  background: var(--primer);
  color: #fff;
  padding: 11px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primer:hover { background: var(--primer-dark); }

/* ============ ARTIKEL LIST PAGE ============ */
.page-header {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--aksen) 100%);
  padding: 48px 20px;
  border-bottom: 3px solid var(--border);
}
.page-header h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: var(--teks); margin-bottom: 8px; }
.page-header p { color: var(--teks2); }

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 20px 0 0;
}
.filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--putih);
  color: var(--teks2);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.filter-btn:hover, .filter-btn.aktif {
  background: var(--primer);
  color: #fff;
  border-color: var(--primer);
  text-decoration: none;
}

.artikel-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.artikel-card {
  background: var(--putih);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.artikel-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px var(--shadow); }
.artikel-thumb { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; }
.artikel-body { padding: 18px; }
.artikel-cat {
  display: inline-block;
  background: var(--aksen);
  color: var(--primer);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}
.artikel-title { font-size: 1rem; font-weight: 700; color: var(--teks); margin-bottom: 8px; line-height: 1.4; }
.artikel-title a { color: inherit; }
.artikel-title a:hover { color: var(--primer); text-decoration: none; }
.artikel-excerpt { color: var(--teks3); font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.artikel-meta { display: flex; gap: 10px; font-size: 0.78rem; color: var(--teks3); align-items: center; }

/* ============ DETAIL PAGE ============ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) { .detail-layout { grid-template-columns: 1fr; } }

.artikel-detail-header {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--aksen) 100%);
  padding: 48px 20px;
  border-bottom: 3px solid var(--border);
}
.artikel-detail-header .kat-badge {
  display: inline-block;
  background: var(--primer);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.artikel-detail-header h1 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 800; color: var(--teks); line-height: 1.3; margin-bottom: 16px; }
.artikel-detail-header .meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--teks3);
  align-items: center;
}
.detail-thumb {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.detail-thumb-inner {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-body { color: var(--teks); line-height: 1.8; }
.detail-body h2 { font-size: 1.3rem; font-weight: 700; color: var(--teks); margin: 28px 0 12px; }
.detail-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--primer); margin: 22px 0 10px; }
.detail-body p { margin-bottom: 16px; color: var(--teks2); }
.detail-body ul, .detail-body ol { padding-left: 24px; margin-bottom: 16px; color: var(--teks2); }
.detail-body li { margin-bottom: 6px; }
.step-box {
  background: var(--aksen);
  border-left: 4px solid var(--primer);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.step-box strong { color: var(--primer); }
.tip-box {
  background: var(--bg2);
  border: 2px solid var(--aksen2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.92rem;
}
.tip-box strong { color: var(--primer-dark); }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.tag {
  background: var(--bg2);
  color: var(--teks2);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.share-box {
  background: var(--putih);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-top: 28px;
}
.share-box h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; }
.share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--teks2);
  display: flex; align-items: center; gap: 6px;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--putih);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.widget-head {
  background: var(--primer);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.widget-body { padding: 16px; }
.widget-list { list-style: none; }
.widget-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.widget-list li:last-child { border-bottom: none; }
.widget-list a { color: var(--teks2); font-weight: 500; }
.widget-list a:hover { color: var(--primer); text-decoration: none; }
.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cat-count {
  background: var(--aksen);
  color: var(--primer);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Artikel terkait */
.terkait-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.terkait-card {
  background: var(--putih);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}
.terkait-card:hover { transform: translateY(-2px); }
.terkait-thumb { height: 100px; display: flex; align-items: center; justify-content: center; }
.terkait-body { padding: 12px; }
.terkait-title { font-size: 0.85rem; font-weight: 700; color: var(--teks); line-height: 1.4; }
.terkait-title a { color: inherit; }
.terkait-title a:hover { color: var(--primer); text-decoration: none; }

/* ============ TENTANG PAGE ============ */
.tentang-hero {
  background: linear-gradient(135deg, var(--primer) 0%, var(--primer-light) 100%);
  padding: 64px 20px;
  text-align: center;
}
.avatar-svg {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid rgba(255,255,255,0.5);
}
.tentang-hero h1 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.tentang-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.stat-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 900; color: #fff; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

.tentang-content { max-width: 760px; margin: 0 auto; }
.tentang-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--teks); margin: 32px 0 12px; }
.tentang-content p { color: var(--teks2); margin-bottom: 14px; }

.misi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.misi-card {
  background: var(--putih);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.misi-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--aksen);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.misi-card h3 { font-size: 1rem; font-weight: 700; color: var(--teks); margin-bottom: 8px; }
.misi-card p { font-size: 0.85rem; color: var(--teks3); }

.skill-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.skill-tag {
  background: var(--aksen);
  color: var(--primer-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ============ KONTAK PAGE ============ */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 720px) { .kontak-grid { grid-template-columns: 1fr; } }

.kontak-form-wrap {
  background: var(--putih);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.kontak-form-wrap h2 { font-size: 1.3rem; font-weight: 800; color: var(--teks); margin-bottom: 6px; }
.kontak-form-wrap p { color: var(--teks3); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--teks2); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--teks);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primer); background: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }

.kontak-info h2 { font-size: 1.3rem; font-weight: 800; color: var(--teks); margin-bottom: 20px; }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--aksen);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-label { font-size: 0.82rem; color: var(--teks3); margin-bottom: 2px; }
.info-val { font-size: 0.95rem; font-weight: 600; color: var(--teks); }

.kolaborasi-box {
  background: linear-gradient(135deg, var(--aksen), var(--aksen2));
  border-radius: 16px;
  padding: 24px;
  margin-top: 28px;
}
.kolaborasi-box h3 { font-size: 1.05rem; font-weight: 800; color: var(--teks); margin-bottom: 10px; }
.kolaborasi-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.kolaborasi-box li { font-size: 0.88rem; color: var(--teks2); display: flex; align-items: center; gap: 8px; }
.kolaborasi-box li::before { content: '✦'; color: var(--primer); font-size: 0.7rem; }

.sosmed-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.sosmed-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--teks2);
  transition: all 0.2s;
}
.sosmed-btn:hover { border-color: var(--primer); color: var(--primer); text-decoration: none; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--teks);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--aksen2); text-decoration: none; }
.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding-top: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.flex { display: flex; }
.gap-2 { gap: 8px; }

/* === SVG THUMBNAILS (CSS-based art) === */
.thumb-macrame {
  background: linear-gradient(160deg, #fff3e0 0%, #ffe0b2 100%);
}
.thumb-knit {
  background: linear-gradient(160deg, #fce4ec 0%, #f8bbd9 100%);
}
.thumb-recycle {
  background: linear-gradient(160deg, #e8f5e9 0%, #c8e6c9 100%);
}
.thumb-candle {
  background: linear-gradient(160deg, #fffde7 0%, #fff9c4 100%);
}
.thumb-resin {
  background: linear-gradient(160deg, #e8eaf6 0%, #c5cae9 100%);
}
.thumb-decoupage {
  background: linear-gradient(160deg, #fbe9e7 0%, #ffccbc 100%);
}
.thumb-stamp {
  background: linear-gradient(160deg, #e0f7fa 0%, #b2ebf2 100%);
}
.thumb-quilling {
  background: linear-gradient(160deg, #f3e5f5 0%, #e1bee7 100%);
}

@media (max-width: 680px) {
  .posts-grid { grid-template-columns: 1fr; }
  .artikel-list { grid-template-columns: 1fr; }
  .terkait-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .detail-body h2 { font-size: 1.15rem; }
}
