:root {
  --bg: #f8f4ec;
  --panel: #fff;
  --text: #2d261f;
  --muted: #716559;
  --gold: #cfa75d;
  --gold-soft: #e7cd9a;
  --line: rgba(139,111,66,.35);
  --dark: #251d16;
  --dark-2: #3a2f26;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(32,23,14,.10);
  --wrap: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 15% -5%, rgba(207,167,93,.12), transparent 45%),
    radial-gradient(circle at 90% 12%, rgba(207,167,93,.10), transparent 35%),
    var(--bg);
}

.wrap { width: min(var(--wrap), calc(100vw - 28px)); margin-inline: auto; }
.section-gap { padding: 36px 0; }

/* Pattern luxury ringan */
.pattern-ornament {
  background-color: #f6f1e7;
  background-image:
    radial-gradient(rgba(207,167,93,.18) .9px, transparent .9px),
    linear-gradient(0deg, rgba(255,255,255,.25), rgba(255,255,255,.25));
  background-size: 12px 12px, 100% 100%;
}

.top-pattern {
  height: 8px;
  background:
    linear-gradient(135deg, rgba(221,192,141,.45) 25%, transparent 25%) -10px 0/20px 20px,
    linear-gradient(225deg, rgba(221,192,141,.45) 25%, transparent 25%) -10px 0/20px 20px,
    linear-gradient(315deg, rgba(221,192,141,.25) 25%, transparent 25%) 0 0/20px 20px,
    linear-gradient(45deg, rgba(221,192,141,.25) 25%, transparent 25%) 0 0/20px 20px,
    #30271f;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: linear-gradient(120deg, rgba(33,27,22,.96), rgba(55,45,35,.94));
  border-bottom: 1px solid rgba(231,205,154,.25);
  backdrop-filter: blur(6px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(210px, 310px) 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f5e8d0;
}

.brand .custom-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-copy strong { display: block; font-size: 1.1rem; line-height: 1.05; }
.brand-copy small { color: #e4d2b0; font-size: .82rem; }

.main-nav { display: flex; justify-content: center; }
.menu-list { display: flex; gap: 12px; list-style: none; margin: 0; padding: 0; }
.menu-list a {
  color: #dbc18f;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  padding: 6px 2px;
}
.menu-list a:hover, .menu-list .current-menu-item > a { color: #f5dfba; }

.menu-toggle { display: none; border: 1px solid var(--line); background: rgba(255,255,255,.07); color: #f6e4c4; border-radius: 10px; height: 40px; width: 40px; }

.hero {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px clamp(20px, 4vw, 56px);
  background: linear-gradient(130deg, rgba(41,33,25,.90), rgba(61,48,36,.86));
  color: #f4ead8;
}
.hero h1 {
  margin: 8px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #e8cd98;
}
.badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(231,205,154,.45);
  font-size: .78rem;
}
.hero-cta { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #b88f4c;
  background: linear-gradient(180deg, #e2c07d, #c79f57);
  color: #2f2417;
  text-decoration: none;
  font-weight: 700;
}
.btn.ghost { background: transparent; color: #f2dfbd; border-color: rgba(231,205,154,.5); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.post-link { color: inherit; text-decoration: none; display: block; }
.post-title, .entry-title {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: .2px;
}
.post-title { font-size: 1.3rem; margin: 6px 0; }
.entry-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 8px; }
.entry-meta { color: var(--muted); margin-bottom: 12px; }
.entry-content { color: #3d342a; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.post-nav a {
  display: block;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: #3d3123;
  background: #fcf8f0;
}
.next { text-align: right; }

.site-footer {
  margin-top: 24px;
  color: #f0e1c7;
  background: linear-gradient(120deg, #261d16, #3a2f26);
  border-top: 1px solid rgba(231,205,154,.22);
}
.footer-grid {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 20px;
}
.footer-grid h3 { margin: 0 0 8px; color: #efd5a5; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-menu a { color: #f0e1c7; text-decoration: none; }
.footer-menu a:hover { color: #f5dfba; }
.footer-bar {
  border-top: 1px solid rgba(231,205,154,.18);
  text-align: center;
  padding: 12px;
  font-size: .92rem;
}
.footer-bar a { color: #eec97f; font-weight: 700; text-decoration: none; }

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { grid-column: 1 / -1; display: none; }
  .main-nav.is-open { display: block; }
  .menu-list { flex-direction: column; padding: 12px 0 4px; }
  .menu-list a { display: block; padding: 12px 10px; border: 1px solid rgba(231,205,154,.22); border-radius: 12px; background: rgba(255,255,255,.03); }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .wrap { width: min(var(--wrap), calc(100vw - 18px)); }
  .post-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .next { text-align: left; }
}


/* ==============================================
   Header style disamakan dengan plugin Wedding OS
   ============================================== */
.sws-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(100deg, #231a14 0%, #3a2e24 45%, #2c221a 100%);
  border-bottom: 1px solid rgba(231,205,154,.24);
  box-shadow: 0 10px 30px rgba(18,13,9,.28);
}

.sws-top-pattern {
  height: 9px;
  background-color: #2b2119;
  background-image:
    linear-gradient(-45deg, rgba(231,205,154,.72) 25%, transparent 25%),
    linear-gradient(45deg, rgba(231,205,154,.72) 25%, transparent 25%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 0;
}

.sws-header-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: minmax(270px, 360px) 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.sws-brand {
  color: #f6ead0;
  gap: 12px;
}

.sws-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231,205,154,.62);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.35), rgba(207,167,93,.2));
  overflow: hidden;
  flex: 0 0 56px;
}
.sws-logo-wrap .custom-logo-link,
.sws-logo-wrap .custom-logo {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 999px;
}
.sws-logo-wrap .custom-logo {
  object-fit: cover;
  border: 0;
}
.sws-logo-fallback {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffe6bd;
}

.sws-brand .brand-copy strong {
  font-size: clamp(1.02rem, 1.25vw, 1.55rem);
  line-height: 1.1;
}
.sws-brand .brand-copy small {
  font-size: .95rem;
  color: #e9d4ac;
  opacity: .98;
}

.sws-main-nav {
  display: flex;
  justify-content: center;
}
.sws-main-nav .sws-menu-list,
.sws-main-nav .menu-list {
  list-style: none;
  display: flex;
  gap: clamp(10px, 1.25vw, 18px);
  align-items: center;
  padding: 0;
  margin: 0;
}
.sws-main-nav a {
  color: #d7bf8f;
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: .1px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.sws-main-nav li.current-menu-item > a,
.sws-main-nav a:hover {
  color: #f6dfb4;
  border-bottom-color: rgba(231,205,154,.75);
}

.sws-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sws-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(231,205,154,.75);
  color: #d8be8c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,.03);
}
.sws-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.sws-icon-btn:hover { color: #f6dfb4; border-color: #f1d39a; }
.sws-icon-btn.wa { border-color: rgba(85,214,140,.9); color: #5ee29a; }
.sws-icon-btn.wa:hover { color: #aef4cb; border-color: #8debb8; }

.sws-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(77,146,241,.75);
  background: linear-gradient(180deg, #2f8af3, #1f6fcb);
  color: #fff;
}
.sws-burger,
.sws-burger::before,
.sws-burger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.sws-burger { position: relative; }
.sws-burger::before,
.sws-burger::after {
  content: "";
  position: absolute;
  left: 0;
}
.sws-burger::before { top: -6px; }
.sws-burger::after  { top: 6px; }

.sws-site-header.is-open .sws-burger { background: transparent; }
.sws-site-header.is-open .sws-burger::before { transform: translateY(6px) rotate(45deg); }
.sws-site-header.is-open .sws-burger::after  { transform: translateY(-6px) rotate(-45deg); }

.sws-mobile-drawer {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(34,26,20,.98), rgba(43,33,25,.98));
  border-top: 1px solid rgba(231,205,154,.2);
  transition: max-height .3s ease, padding .2s ease;
}
.sws-site-header.is-open .sws-mobile-drawer {
  max-height: 80vh;
}
.sws-mobile-wrap {
  padding: 10px 0 16px;
}
.sws-mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.sws-mobile-menu a {
  display: block;
  text-decoration: none;
  color: #f0dbb0;
  font-weight: 600;
  border-radius: 14px;
  border: 1px solid rgba(231,205,154,.33);
  padding: 12px 14px;
  background: rgba(255,255,255,.02);
}
.sws-mobile-menu a:hover {
  color: #fbe8c3;
  border-color: rgba(231,205,154,.6);
}
.sws-mobile-cta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.sws-mobile-cta .btn { width: 100%; }

.footer-bar a {
  color: #f0c773;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1150px) {
  .sws-header-inner {
    grid-template-columns: minmax(230px, 320px) 1fr auto;
    gap: 10px;
  }
  .sws-main-nav a { font-size: .92rem; }
  .sws-brand .brand-copy small { font-size: .84rem; }
}

@media (max-width: 980px) {
  .sws-header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }
  .sws-main-nav { display: none !important; }
  .sws-menu-toggle { display: inline-flex !important; align-items: center; justify-content: center; }
}

@media (min-width: 981px) {
  .sws-main-nav { display: flex !important; }
  .sws-mobile-drawer { display: none !important; }
  .sws-menu-toggle { display: none !important; }
}


/* ==============================================
   Blog card + single article refinement (v1.1)
   ============================================== */
img {
  max-width: 100%;
  height: auto;
}

.post-card {
  padding: 10px 10px 14px;
  border-radius: 14px;
  overflow: clip;
}
.post-card .post-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(207,167,93,.28);
  background: linear-gradient(180deg, #f3ede2, #ebe2d2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}
.post-card .thumb .post-thumb-img,
.post-card .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.post-card:hover .thumb .post-thumb-img,
.post-card:hover .thumb img {
  transform: scale(1.03);
}
.post-card .post-title {
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  margin: 2px 0 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card p {
  margin: 0;
  color: #6b5b49;
  font-size: .94rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-card {
  max-width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(16px, 3vw, 30px);
}
.single-card .entry-meta {
  font-size: .92rem;
  color: #796857;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(139,111,66,.35);
  margin-bottom: 16px;
}
.entry-content {
  font-size: clamp(1rem, 1.02rem + .08vw, 1.08rem);
}
.entry-content > :first-child {
  margin-top: 0;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.25;
  color: #2f2418;
  margin-top: 1.45em;
  margin-bottom: .55em;
}
.entry-content p,
.entry-content li {
  line-height: 1.8;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

/* Gambar artikel: center + bingkai gold + shadow */
.entry-content figure,
.entry-content .wp-block-image,
.entry-content .wp-caption,
.entry-content p > img {
  margin: 1.2rem auto 1.6rem;
  text-align: center;
}
.entry-content .aligncenter,
.entry-content figure.aligncenter,
.entry-content .wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.entry-content img:not(.emoji):not(.avatar):not(.wp-smiley) {
  display: block;
  margin-inline: auto;
  border-radius: 12px;
  border: 2px solid rgba(207,167,93,.62);
  outline: 1px solid rgba(152,118,63,.35);
  outline-offset: 5px;
  background: #fff;
  box-shadow:
    0 14px 28px rgba(31,22,14,.12),
    0 2px 7px rgba(31,22,14,.08);
}
.entry-content figure img,
.entry-content .wp-block-image img,
.entry-content .wp-caption img {
  width: auto;
  max-width: min(100%, 820px);
  height: auto;
}
.entry-content .wp-caption-text,
.entry-content figcaption {
  margin-top: .55rem;
  color: #7f6d5a;
  font-size: .89rem;
}

/* Tabel / block quote dalam artikel */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.2rem;
  font-size: .95rem;
}
.entry-content table th,
.entry-content table td {
  border: 1px solid rgba(139,111,66,.28);
  padding: .58rem .62rem;
}
/* Luxury blockquote (Gutenberg + classic) */
.entry-content blockquote,
.entry-content .wp-block-quote {
  position: relative;
  margin: 1.25rem 0;
  padding: 1.05rem 1.05rem 1.05rem 1.2rem;
  border-left: 4px solid rgba(207,167,93,.86);
  background: linear-gradient(180deg, rgba(251,247,239,.95), rgba(247,240,228,.92));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
  overflow: hidden;
}
.entry-content blockquote:before,
.entry-content .wp-block-quote:before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 64px;
  line-height: 1;
  color: rgba(207,167,93,.28);
  pointer-events: none;
}
.entry-content blockquote p,
.entry-content .wp-block-quote p {
  margin: 0;
  font-style: italic;
}
.entry-content blockquote cite,
.entry-content .wp-block-quote cite {
  display: block;
  margin-top: .65rem;
  font-style: normal;
  font-size: .92rem;
  opacity: .85;
}

/* Pagination lebih rapi */
.navigation.pagination {
  margin-top: 18px;
}
.navigation.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.navigation.pagination a,
.navigation.pagination span {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(139,111,66,.35);
  border-radius: 10px;
  background: #fff;
  color: #3b2f22;
  padding: 0 11px;
}
.navigation.pagination .current {
  background: linear-gradient(180deg, #ead4ab, #dab778);
  border-color: #c79a52;
  color: #2f2417;
}

/* Small desktop / tablet */
@media (max-width: 980px) {
  .post-card .thumb {
    aspect-ratio: 16 / 10;
  }
}

/* Mobile tune-up */
@media (max-width: 680px) {
  .single-card {
    padding: 14px 12px 18px;
    border-radius: 12px;
  }
  .entry-title {
    line-height: 1.2;
  }
  .entry-content img:not(.emoji):not(.avatar):not(.wp-smiley) {
    border-radius: 10px;
    outline-offset: 4px;
  }
  .entry-content p,
  .entry-content li {
    line-height: 1.75;
  }
}

/* Header logo default file */
.sws-logo-default {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  border-radius: 999px;
  display: block;
  padding: 3px;
  background: #f9f4ea;
}


/* =========================================
   Author line pada card blog
========================================= */
.post-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: .82rem;
  color: #7f6a55;
  border-bottom: 1px dashed rgba(139,111,66,.28);
  padding-bottom: 8px;
}
.post-author {
  font-weight: 600;
  letter-spacing: .1px;
}
.post-date {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* =========================================
   Author card premium (single post)
========================================= */
.author-card {
  position: relative;
  margin-top: 30px;
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(207,167,93,.46);
  background:
    linear-gradient(140deg, rgba(255,255,255,.96), rgba(248,241,229,.94));
  box-shadow:
    0 14px 30px rgba(35,24,14,.10),
    inset 0 0 0 1px rgba(255,255,255,.58);
  display: grid;
  grid-template-columns: minmax(116px, 140px) 1fr;
  gap: clamp(14px, 2vw, 22px);
  overflow: hidden;
  isolation: isolate;
}
.author-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(30deg, rgba(207,167,93,.11) 12%, transparent 12.5%, transparent 87%, rgba(207,167,93,.11) 87.5%, rgba(207,167,93,.11)),
    linear-gradient(150deg, rgba(207,167,93,.11) 12%, transparent 12.5%, transparent 87%, rgba(207,167,93,.11) 87.5%, rgba(207,167,93,.11)),
    linear-gradient(30deg, rgba(207,167,93,.07) 12%, transparent 12.5%, transparent 87%, rgba(207,167,93,.07) 87.5%, rgba(207,167,93,.07)),
    linear-gradient(150deg, rgba(207,167,93,.07) 12%, transparent 12.5%, transparent 87%, rgba(207,167,93,.07) 87.5%, rgba(207,167,93,.07)),
    linear-gradient(60deg, rgba(130,96,48,.06) 25%, transparent 25.5%, transparent 75%, rgba(130,96,48,.06) 75%, rgba(130,96,48,.06)),
    linear-gradient(60deg, rgba(130,96,48,.05) 25%, transparent 25.5%, transparent 75%, rgba(130,96,48,.05) 75%, rgba(130,96,48,.05));
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.55));
}

.author-avatar-wrap {
  margin: 0;
  align-self: start;
}
.author-avatar {
  width: 100%;
  max-width: 138px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid rgba(207,167,93,.68);
  outline: 1px solid rgba(148,111,59,.38);
  outline-offset: 5px;
  background: #fff;
  box-shadow:
    0 14px 28px rgba(31,22,14,.18),
    0 3px 7px rgba(31,22,14,.12);
}

.author-body > :first-child { margin-top: 0; }
.author-kicker {
  margin: 2px 0 4px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #8b7150;
  font-weight: 700;
}
.author-name {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #2f2417;
  line-height: 1.2;
}
.author-role {
  margin: 6px 0 10px;
  color: #6d563d;
  font-weight: 600;
  font-size: .94rem;
}
.author-bio {
  margin: 0;
  color: #3a2f23;
  line-height: 1.82;
  font-size: clamp(.98rem, .95rem + .1vw, 1.05rem);
}

.author-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}
.author-chips li {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(207,167,93,.46);
  background: rgba(255,252,246,.88);
  color: #594834;
  font-size: .82rem;
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.author-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.author-actions .btn {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .88rem;
  line-height: 1.1;
}
.author-actions .btn.ghost {
  border: 1px solid rgba(207,167,93,.56);
  background: rgba(255,255,255,.66);
  color: #4f3f2e;
}
.author-actions .btn.ghost:hover {
  background: #fff;
}

/* meta single */
.single-card .entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.single-card .entry-meta .meta-sep {
  color: #9b8264;
}

@media (max-width: 700px) {
  .author-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .author-avatar-wrap {
    justify-self: start;
  }
  .author-avatar {
    max-width: 118px;
  }
  .post-meta-row {
    gap: 6px;
    font-size: .78rem;
  }
}

/* =========================================
   Luxury Article Layout Upgrade (v1.5)
========================================= */
.single-card {
  position: relative;
  border: 1px solid rgba(199,159,87,.45);
  background:
    radial-gradient(circle at 8% 6%, rgba(207,167,93,.10), transparent 28%),
    radial-gradient(circle at 94% 3%, rgba(207,167,93,.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(248,241,229,.96));
}

.single-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(135deg, rgba(221,192,141,.50) 25%, transparent 25%) -10px 0/18px 18px,
    linear-gradient(225deg, rgba(221,192,141,.50) 25%, transparent 25%) -10px 0/18px 18px,
    linear-gradient(315deg, rgba(221,192,141,.25) 25%, transparent 25%) 0 0/18px 18px,
    linear-gradient(45deg, rgba(221,192,141,.25) 25%, transparent 25%) 0 0/18px 18px,
    rgba(48,39,31,.92);
}

.single-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(207,167,93,.18);
  pointer-events: none;
}

.single-card .entry-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.single-card .entry-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(240px, 56%);
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(207,167,93,.95), rgba(207,167,93,.15));
}

.single-card .entry-meta {
  margin-top: 2px;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px dashed rgba(139,111,66,.32);
  border-radius: 12px;
  background: rgba(255,255,255,.62);
}

/* Lebar baca ideal agar terasa editoral premium */
.single-card .entry-content {
  max-width: 72ch;
  margin-inline: auto;
}

/* Intro paragraph lebih elegan + dropcap */
.single-card .entry-content > p:first-of-type {
  font-size: clamp(1.04rem, 1.00rem + .25vw, 1.18rem);
  line-height: 1.9;
  color: #3b3023;
}
.single-card .entry-content > p:first-of-type::first-letter {
  float: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.25em;
  line-height: .84;
  margin: .05em .12em 0 0;
  color: #9f7332;
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

/* Heading hierarchy lebih mewah */
.single-card .entry-content h2,
.single-card .entry-content h3,
.single-card .entry-content h4 {
  position: relative;
}

.single-card .entry-content h2 {
  margin-top: 1.9em;
  margin-bottom: .7em;
  padding-bottom: .45rem;
  font-size: clamp(1.35rem, 1.2rem + .65vw, 1.95rem);
}
.single-card .entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(207,167,93,.9), rgba(207,167,93,.18));
}
.single-card .entry-content h2::before {
  content: "";
  position: absolute;
  left: 88px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cfa75d;
  box-shadow: 0 0 0 2px rgba(207,167,93,.22);
}

.single-card .entry-content h3 {
  margin-top: 1.6em;
  padding-left: .65rem;
  border-left: 3px solid rgba(207,167,93,.65);
  font-size: clamp(1.18rem, 1.04rem + .38vw, 1.45rem);
}

.single-card .entry-content h4 {
  margin-top: 1.45em;
  font-size: clamp(1.05rem, 1rem + .24vw, 1.2rem);
  letter-spacing: .2px;
  color: #4b3a28;
}

/* Link style elegan */
.single-card .entry-content a {
  color: #6d4c24;
  text-decoration: none;
  background-image: linear-gradient(90deg, rgba(207,167,93,.95), rgba(207,167,93,.95));
  background-size: 0 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color .2s ease, background-size .2s ease;
}
.single-card .entry-content a:hover {
  color: #4a3419;
  background-size: 100% 1.5px;
}

/* List style premium */
.single-card .entry-content ul,
.single-card .entry-content ol {
  margin-top: .2rem;
  margin-bottom: 1.2rem;
}
.single-card .entry-content ul li::marker {
  color: #b9893f;
}
.single-card .entry-content ol li::marker {
  color: #8a6839;
  font-weight: 700;
}

/* TOC box (manual / plugin friendly) */
.single-card .entry-content #ez-toc-container,
.single-card .entry-content .ez-toc-container,
.single-card .entry-content .toc,
.single-card .entry-content .table-of-contents {
  margin: 1rem 0 1.4rem;
  padding: .95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(207,167,93,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,241,230,.92));
  box-shadow: 0 10px 20px rgba(26,18,10,.06);
}

/* Table lebih classy */
.single-card .entry-content table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20,14,8,.06);
}
.single-card .entry-content table thead th {
  background: linear-gradient(180deg, #f2e4c7, #ebd6af);
  color: #46331d;
  font-weight: 700;
}
.single-card .entry-content table tbody tr:nth-child(even) {
  background: rgba(251,247,239,.65);
}

/* Blockquote: upgrade corner ornament */
.single-card .entry-content blockquote::after,
.single-card .entry-content .wp-block-quote::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  border-right: 1px solid rgba(207,167,93,.35);
  border-bottom: 1px solid rgba(207,167,93,.35);
  border-bottom-right-radius: 8px;
}

/* HR / separator */
.single-card .entry-content hr {
  border: 0;
  height: 1px;
  margin: 1.6rem 0;
  background: linear-gradient(90deg, transparent, rgba(207,167,93,.7), transparent);
}

/* Optional callout class: gunakan di editor sebagai Group + additional class "sws-callout" */
.single-card .entry-content .sws-callout {
  margin: 1rem 0 1.3rem;
  padding: .95rem 1rem;
  border-left: 4px solid rgba(207,167,93,.84);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(249,244,236,.88));
  box-shadow: 0 8px 18px rgba(22,15,10,.05);
}

@media (max-width: 780px) {
  .single-card::after {
    inset: 8px;
  }
  .single-card .entry-content {
    max-width: 100%;
  }
  .single-card .entry-content > p:first-of-type::first-letter {
    font-size: 2.55em;
    margin-top: .03em;
  }
  .single-card .entry-title::after {
    width: min(210px, 65%);
  }
}

@media (max-width: 560px) {
  .single-card::before {
    height: 6px;
  }
  .single-card .entry-content > p:first-of-type {
    font-size: 1.03rem;
  }
  .single-card .entry-content > p:first-of-type::first-letter {
    font-size: 2.2em;
    line-height: .88;
    margin-right: .1em;
  }
}


/* =========================================
   Luxury Article Pattern & Post Nav Refinement (v1.6)
========================================= */
.single-card {
  background:
    radial-gradient(circle at 8% 8%, rgba(217,179,114,.16), transparent 24%),
    radial-gradient(circle at 92% 6%, rgba(181,136,69,.12), transparent 22%),
    repeating-linear-gradient(-45deg, rgba(160,126,77,.03) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,241,229,.96));
}

/* Kertas isi dibedakan dari outer paper agar lebih mewah */
.single-card .entry-content {
  position: relative;
  padding: clamp(12px, 2vw, 18px) clamp(12px, 2.2vw, 20px);
  border-radius: 14px;
  border: 1px solid rgba(207,167,93,.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(207,167,93,.10), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(252,247,238,.88));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 8px 20px rgba(27,19,11,.05);
}

.single-card .entry-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: .42;
  background-image:
    radial-gradient(rgba(173,132,78,.08) .85px, transparent .85px),
    repeating-linear-gradient(35deg, rgba(176,135,81,.04) 0 2px, transparent 2px 11px);
  background-size: 13px 13px, auto;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.45));
}

/* Variasi pattern khusus area yang sering panjang */
.single-card .entry-content #ez-toc-container,
.single-card .entry-content .ez-toc-container,
.single-card .entry-content .toc,
.single-card .entry-content .table-of-contents {
  background:
    linear-gradient(160deg, rgba(255,255,255,.95), rgba(248,241,230,.93)),
    repeating-linear-gradient(-45deg, rgba(169,132,78,.05) 0 2px, transparent 2px 10px);
}

.single-card .entry-content blockquote,
.single-card .entry-content .wp-block-quote {
  background:
    linear-gradient(180deg, rgba(253,249,241,.98), rgba(246,238,224,.95));
  border: 1px solid rgba(207,167,93,.32);
}

/* Navigasi next/prev: tinggi seragam + label + lebih premium */
.post-nav {
  margin-top: 28px;
  gap: 12px;
  align-items: stretch;
}
.post-nav.is-single {
  grid-template-columns: 1fr;
}
.post-nav > div {
  display: flex;
  min-width: 0;
}
.post-nav a {
  position: relative;
  flex: 1 1 auto;
  min-height: 98px;
  padding: 30px 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(207,167,93,.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,241,229,.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.78),
    0 10px 20px rgba(28,19,10,.06);
  font-weight: 600;
  line-height: 1.45;
  color: #3f2f1f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-nav .prev a::before,
.post-nav .next a::before {
  position: absolute;
  top: 10px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9a7c53;
  font-weight: 700;
}
.post-nav .prev a::before {
  content: "Artikel Sebelumnya";
  left: 14px;
}
.post-nav .next a::before {
  content: "Artikel Selanjutnya";
  right: 14px;
}
.post-nav .next a {
  text-align: right;
}
.post-nav a:hover {
  border-color: rgba(193,145,73,.58);
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 780px) {
  .single-card .entry-content {
    padding: 11px 11px 12px;
    border-radius: 12px;
  }
  .post-nav a {
    min-height: 88px;
    padding-top: 28px;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 560px) {
  .post-nav a {
    min-height: 82px;
    padding-left: 12px;
    padding-right: 12px;
  }
}


/* =========================================
   Blog H1 + Page = Single look (v1.7)
========================================= */
.blog-page-head {
  margin: 0 0 18px;
  padding: clamp(14px, 1.8vw, 20px) clamp(14px, 2.2vw, 24px);
  border: 1px solid rgba(199,159,87,.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 0%, rgba(207,167,93,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,241,229,.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 10px 22px rgba(26,18,10,.05);
}
.blog-page-head .archive-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.2;
  color: #2f2317;
  position: relative;
  padding-bottom: 10px;
}
.blog-page-head .archive-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(220px, 55%);
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(207,167,93,.95), rgba(207,167,93,.15));
}
.blog-page-head .archive-subtitle {
  margin: 10px 0 0;
  color: #6f5a43;
  font-size: .98rem;
  line-height: 1.72;
  max-width: 72ch;
}

/* Samakan rasa Page dengan Single Article */
.page-card {
  max-width: min(900px, 100%);
  margin-inline: auto;
}
.page-card .entry-content {
  max-width: 72ch;
  margin-inline: auto;
}

/* jika pakai page template panjang, spacing dibikin konsisten */
.page-card .entry-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.page-card .entry-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(240px, 56%);
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(207,167,93,.95), rgba(207,167,93,.15));
}

/* Bagian kontak / info di page jadi seragam dengan artikel */
.page-card .entry-content h2,
.page-card .entry-content h3,
.page-card .entry-content h4 {
  position: relative;
}
.page-card .entry-content h2 {
  margin-top: 1.9em;
  margin-bottom: .7em;
  padding-bottom: .45rem;
  font-size: clamp(1.35rem, 1.2rem + .65vw, 1.95rem);
}
.page-card .entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(207,167,93,.9), rgba(207,167,93,.18));
}
.page-card .entry-content h2::before {
  content: "";
  position: absolute;
  left: 88px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cfa75d;
  box-shadow: 0 0 0 2px rgba(207,167,93,.22);
}
.page-card .entry-content h3 {
  margin-top: 1.6em;
  padding-left: .65rem;
  border-left: 3px solid rgba(207,167,93,.65);
  font-size: clamp(1.18rem, 1.04rem + .38vw, 1.45rem);
}
.page-card .entry-content h4 {
  margin-top: 1.45em;
  font-size: clamp(1.05rem, 1rem + .24vw, 1.2rem);
  letter-spacing: .2px;
  color: #4b3a28;
}

@media (max-width: 780px) {
  .blog-page-head {
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 12px;
  }
  .page-card .entry-content {
    max-width: 100%;
  }
}
