:root{
  --bg:#efefef;
  --card:#ffffff;
  --ink:#121212;
  --muted:#666;
  --line:#d9d9d9;
  --top:#2e2e2e;
  --accent:#ff6b9a;
  --shadow:0 4px 18px rgba(0,0,0,.08);
  --radius:8px;
  --container:1120px;
}
html{box-sizing:border-box}
*,*:before,*:after{box-sizing:inherit}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.45;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
#maskotKiri,#maskotKanan,.maskotKiri,.maskotKanan{display:none!important}
a[href*="wp-login.php"], a[href*="wp-login.php?action=logout"], .wp-loginout, .login, .logout{display:none!important}
.container{max-width:var(--container);margin:0 auto;padding:0 14px}
.site{min-height:100vh;display:flex;flex-direction:column}
.site-main{flex:1}
.grid{display:grid;grid-template-columns:1fr 330px;gap:16px;align-items:start}
@media (max-width:980px){.grid{grid-template-columns:1fr}}
.topbar{
  position:sticky;top:0;z-index:999;
  background:var(--top);
  border-bottom:2px solid var(--accent);
}
.topbar .row{
  display:flex;align-items:center;gap:10px;
  min-height:52px;
}
.brand{display:flex;align-items:center}
.brand .title{color:#fff;font-weight:900;letter-spacing:.2px;white-space:nowrap}
@media (min-width: 861px){
  .nav{
    display:flex;
    align-items:center;
    height:44px;
    flex:1 1 auto;            
    overflow:hidden;          
  }
  .nav ul{
    display:flex;
    align-items:center;
    gap:0;                    
    margin:0;
    padding:0;
    list-style:none;
    white-space:nowrap;
  }
  .nav ul li{
    position:relative;
  }
  .nav ul li a{
    color:rgba(255,255,255,.82);
    display:block;
    text-align:left;
    line-height:25px;
    font-size:12px;
    padding:10px 13px;
    text-decoration:none;
    position:relative;
  }
  .nav ul li a:hover::after,
  .nav ul .current-menu-item > a::after,
  .nav ul li > a[aria-current="page"]::after{
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-bottom:5px solid var(--accent);
    content:"";
    position:absolute;
    bottom:0;
    left:45%;
  }
  .nav ul li ul{
    position:absolute;
    top:37px;
    left:0;
    display:none;
    z-index:9999;
    box-shadow:0 2px 2px rgba(0,0,0,.4);
    padding:0;
    margin:0;
    list-style:none;
    min-width:160px;
  }
  .nav ul li:hover > ul{ display:block; }
  .nav ul li ul li a{
    display:block;
    min-width:110px;
    padding:6px 12px;
    line-height:20px;
    background:rgba(0,0,0,.70);
    font-size:12px;
    color:#fff;
  }
  .nav ul li ul li a:hover{
    background:rgba(0,0,0,.90);
    text-decoration:none;
  }
  .spacer{ flex:1 1 auto; }
  .search-wrap{
    display:flex;
    align-items:center;
    gap:6px;
    flex:0 0 auto;
  }
  .search-wrap form{
    display:flex;
    align-items:center;
    gap:6px;
  }
  .search-wrap form #s{
    background:#828080;
    border:0;
    color:#e8e8e8;
    padding:8px;
    transition:all .7s ease 0s;
    margin:0;                 
    border-radius:2px;
    height:34px;
  }
  .search-wrap button[type="submit"]{
    height:34px;
    padding:0 12px;
    border-radius:5px;
    background:var(--accent);
    color:#fff;
    font-weight:700;
  }
}
.spacer{flex:1}
.search-wrap{display:flex;align-items:center;gap:8px}
.search-wrap form{display:flex;align-items:center;gap:8px}
.search-wrap input[type="search"]{
  width:min(360px,48vw);
  height:36px;padding:0 10px;
  border-radius:6px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff;outline:none;
}
.search-wrap input::placeholder{color:rgba(255,255,255,.7)}
.search-wrap button[type="submit"]{
  height:36px;padding:0 12px;
  border-radius:6px;border:0;
  background:var(--accent);color:#fff;
  font-weight:900;cursor:pointer;
}
.dark-toggle{
  height:36px;width:40px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  color:#fff;cursor:pointer;
}
.dark-toggle:hover{background:rgba(255,255,255,.10)}
.burger{
  display:none;
  width:42px;height:36px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  align-items:center;justify-content:center;
}
.burger span{display:block;width:20px;height:2px;background:#fff;position:relative}
.burger span:before,.burger span:after{
  content:"";position:absolute;left:0;width:20px;height:2px;background:#fff;
}
.burger span:before{top:-6px}
.burger span:after{top:6px}

@media (max-width:860px){
  .nav{display:none}
  .burger{display:flex}
  .search-wrap input[type="search"]{width:min(420px,55vw)}
}
.offcanvas-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.45);
  opacity:0;pointer-events:none;transition:.2s;z-index:998;
}
.offcanvas{
  position:fixed;top:0;left:0;height:100vh;width:min(86vw,360px);
  background:#1f1f1f;color:#fff;
  transform:translateX(-102%);transition:.22s;z-index:999;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
  display:flex;flex-direction:column;
}
.offcanvas .head{
  padding:14px;border-bottom:1px solid rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.offcanvas .close{
  width:38px;height:34px;border-radius:8px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);color:#fff;cursor:pointer;
}
.offcanvas nav ul{margin:0;padding:0;list-style:none}
.offcanvas nav li a{
  display:block;padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-weight:800;
}
.offcanvas nav li a:hover{background:rgba(255,255,255,.06)}
.offcanvas .foot{margin-top:auto;padding:12px 14px;color:rgba(255,255,255,.7);font-size:13px}
body.is-menu-open .offcanvas{transform:translateX(0)}
body.is-menu-open .offcanvas-backdrop{opacity:1;pointer-events:auto}
.hero{padding:14px 0 8px}
.hero .banner{
  min-height:78px;border-radius:var(--radius);
  background:linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.20));
  box-shadow:var(--shadow);
  position:relative;overflow:hidden;
}
.hero .banner .text{padding:14px 16px;color:#fff;font-weight:900}
.hero .banner .cta{
  position:absolute;right:12px;top:12px;
  background:#ffcc45;color:#111;font-weight:900;
  border-radius:10px;padding:10px 14px;
  border:2px solid rgba(255,255,255,.55);
}
.reco{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  line-height:40px;
  height:40px;
  background:#333;
  font-size:13px;
  margin:0;
  padding:0;
  letter-spacing:0;
  border-radius:5px;
  box-shadow:0 2px 2px rgba(0,0,0,.16), 0 0 0 rgba(0,0,0,.23);
  display:flex;
  align-items:center;
  margin-top: 10px;
}
.reco .label{
  flex:0 0 auto;
  font-size:13px;
  background:var(--accent); 
  color:#fff;
  padding:0 10px;
  font-weight:700;
  height:40px;
  display:flex;
  align-items:center;
}
.reco .marquee{
  flex:1 1 auto;
  position:relative;
  height:40px;
  overflow:hidden;
  padding:0 10px;
  display:flex;
  align-items:center;
}
.reco-item{
  position:absolute;
  left:10px;
  right:10px;
  transition:transform .28s ease, opacity .28s ease;
}
.reco-item.is-out{ transform:translateY(-10px); opacity:0; }
.reco-item.is-in { transform:translateY(10px); opacity:0; }
.reco a.reco-link{
  color:#fff;
  font-weight:600;
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.reco a.reco-link:hover{
  color:#fff;
  text-decoration:underline;
}
@media (max-width:860px){
  .reco{ border-radius:0; } 
}
.section{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;border:1px solid var(--line);
}
.section + .section{margin-top:14px}
.section .section-head{
  padding:10px 12px;
  background:#2f2f2f;color:#fff;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  font-weight:900;letter-spacing:.2px;
}
.section .section-body{padding:12px}
.site{
  background:transparent;
}
.container{
  max-width:1080px;  
  margin:0 auto;
  padding:0 10px;
}
.grid{
  display:grid;
  grid-template-columns: 1fr 300px; 
  gap:10px;
  align-items:start;
}
@media (max-width:980px){
  .grid{ grid-template-columns:1fr; }
}
.section{
  background:#fff;
  border-radius:5px;
  box-shadow:0 2px 2px rgba(0,0,0,.16), 0 0 0 rgba(0,0,0,.23);
  border:0;
  overflow:hidden;
}
.section + .section{
  margin-top:10px;
}
.section .section-head{
  background:#333;
  color:#fff;
  padding:10px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.section .section-body{
  padding:10px;
}
.thumb-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:10px;
}
@media (max-width:980px){ .thumb-grid{ grid-template-columns:repeat(4,1fr);} }
@media (max-width:720px){ .thumb-grid{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:420px){ .thumb-grid{ grid-template-columns:repeat(2,1fr);} }
.thumb-card{
  display:block;
  border-radius:5px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 0 0 1px rgba(0,0,0,.08);
  transition:background .15s ease;
}
.thumb-card:hover{
  background:#f7f4f4;
}
.thumb-card .img{
  width:100%;
  aspect-ratio: 4/3;
  background:#eee;
  overflow:hidden;
}
.thumb-card .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.thumb-card .cap{
  background:#333;
  color:#fff;
  padding:6px 8px;
  font-size:11px;
  font-weight:700;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  border-bottom-left-radius:5px;
  border-bottom-right-radius:5px;
}
.ep-item{
  overflow:hidden;
  padding:10px;
  background:#fff;
  border-bottom:1px solid rgba(204,204,204,.55);
  display:flex;
  gap:10px;
  border-radius:0;
}
.ep-item:hover{
  background:#f7f4f4; 
}
.ep-thumb{
  width:122px;
  height:70px;
  overflow:hidden;
  border-radius:5px;
  flex:0 0 auto;
  background:#eee;
}
.ep-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:5px;
}
.ep-thumb:empty{
  background:linear-gradient(135deg,#eee,#f9f9f9);
}
.ep-meta{
  flex:1 1 auto;
  overflow:hidden;
}
.ep-meta .title{
  font-size:13px;
  font-weight:700;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.ep-meta .title a{
  color:#333;
}
.ep-meta .title a:hover{
  color:var(--accent);
  text-decoration:none;
}
.ep-meta .sub{
  font-size:12px;
  color:#777;
  margin-top:6px;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.ep-meta .tag{
  display:inline-block;
  margin-top:8px;
  background:var(--accent);
  color:#fff;
  padding:3px 7px;
  border-radius:5px;  
  font-weight:700;
  font-size:12px;
}
@media (max-width:520px){
  .ep-thumb{ width:92px; height:62px; }
  .ep-meta .title{ font-size:13px; }
}
.sidebar .widget{
  background:#fff;
  border-radius:5px;
  box-shadow:0 2px 2px rgba(0,0,0,.16), 0 0 0 rgba(0,0,0,.23);
  overflow:hidden;
  margin-bottom:10px;
  border:0;
}
.sidebar .widget-title{
  margin:0;
  padding:10px;
  background:#333;
  color:#fff;
  font-size:14px;
  font-weight:400;
  letter-spacing:1px;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
}
.sidebar .widget-body{
  padding:10px;
}
.sidebar ul{
  margin:0;
  padding:0;
}
.sidebar li{
  padding:7px 0;
  border-bottom:1px solid rgba(0,0,0,.07);
}
.sidebar li:last-child{
  border-bottom:0;
}
.sidebar li a{
  color:#6f6f6f;
}
.sidebar li a:hover{
  color:var(--accent);
  text-decoration:none;
}
.search-wrap{
  display:flex;
  align-items:center;
  gap:6px;
}
.search-wrap form{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0;
}
.search-wrap input[type="search"]{
  height:34px;
  padding:0 10px;
  border:0;
  border-radius:2px;
  background:#828080;
  color:#e8e8e8;
  width:220px;           
  max-width:360px;
}
.search-wrap input[type="search"]::placeholder{
  color:#d6d4d4;
}
.search-wrap button[type="submit"]{
  height:34px;
  padding:0 12px;
  border:0;
  border-radius:5px;
  background:var(--accent); 
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.search-wrap button[type="submit"]:hover{
  filter:brightness(.95);
}
.dark-toggle{
  height:34px;
  width:34px;
  border-radius:4px;
  border:1px solid #373737;
  background:#181818;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}
.dark-toggle img{
  width:18px;
  height:18px;
  display:block;
}
.dark-toggle:hover{
  background:#222;
}
@media (max-width: 980px){
  .search-wrap input[type="search"]{
    width:min(45vw, 360px);
  }
}
@media (max-width: 520px){
  .search-wrap{
    gap:5px;
  }
  .search-wrap input[type="search"]{
    width:52vw;        /* biar muat */
    max-width:none;
  }
  .search-wrap button[type="submit"]{
    padding:0 10px;
  }
}
article.section.section,
article.section,
section.section{
  background:#fff;
  border-radius:5px;
  box-shadow:0 2px 2px rgba(0,0,0,.16), 0 0 0 rgba(0,0,0,.23);
  overflow:hidden;
  border:0;
}
article.section .section-head,
section.section .section-head{
  background:#333;
  color:#fff;
  padding:10px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
article.section .section-body,
section.section .section-body{
  padding:15px;
}
article.section .section-body > div > img,
article.section .wp-post-image{
  border-radius:5px;
  display:block;
}
article.section .section-body > div[style*="max-width"]{
  max-width:520px !important;
  margin:0 auto 12px auto !important;
}
.content{
  font-size:13px;
  line-height:1.6;
  color:#333;
}
.content p{
  margin:0 0 10px 0;
}
.content img,
.content iframe,
.content video,
.content embed{
  max-width:100%;
  border-radius:5px;
}
.content a{
  color:var(--accent);
  font-weight:600;
}
.content a:hover{
  text-decoration:underline;
}
article.section .section-body > div[style*="margin-top:16px"]{
  margin-top:12px !important;
}
article.section .section-body > div[style*="margin-top:16px"] .section{
  box-shadow:none;            
  border:1px solid rgba(0,0,0,.08);
}
article.section .section-body > div[style*="margin-top:16px"] .section .section-head{
  background:#333;
  color:#fff;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}
article.section .section-body > div[style*="margin-top:16px"] .thumb-grid{
  grid-template-columns:repeat(4,1fr) !important;
}
@media (max-width:720px){
  article.section .section-body > div[style*="margin-top:16px"] .thumb-grid{
    grid-template-columns:repeat(3,1fr) !important;
  }
}
@media (max-width:420px){
  article.section .section-body > div[style*="margin-top:16px"] .thumb-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }
}
article.section .section-body > div[style*="margin-top:18px"]{
  margin-top:14px !important;
}
article.section .section-body > div[style*="margin-top:18px"] > h3{
  margin:0 0 10px 0 !important;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
}
article.section [data-emoji-bar]{
  display:flex !important;
  gap:6px !important;
  flex-wrap:wrap !important;
  margin:8px 0 12px 0 !important;
}
article.section [data-emoji-bar] .tag{
  background:#f5f5f5;
  border-radius:5px;
  padding:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.15s ease;
}
article.section [data-emoji-bar] .tag:hover{
  background:var(--accent);
}
article.section [data-emoji-bar] .tag img{
  width:18px;
  height:18px;
}
.commentlist{
  list-style:none;
  padding:0;
  margin:0;
  background:#fff;
  border-radius:5px;
  box-shadow:0 2px 2px rgba(0,0,0,.16), 0 0 0 rgba(0,0,0,.23);
  padding:10px 15px;
}
.commentlist .comment{
  border-bottom:1px solid rgba(0,0,0,.07);
  padding:12px 0;
}
.commentlist .comment:last-child{ border-bottom:0; }
.comment.bypostauthor{
  background:#fff7f9;
  border-left:3px solid var(--accent);
  padding-left:12px;
  border-radius:4px;
}
.comment-reply-link{
  display:inline-block;
  margin-top:8px;
  background:var(--accent);
  color:#fff;
  padding:5px 10px;
  border-radius:5px;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.comment-reply-link:hover{ background:#d85a82; }
.comment-respond{
  background:#fff;
  border-radius:5px;
  box-shadow:0 2px 2px rgba(0,0,0,.16), 0 0 0 rgba(0,0,0,.23);
  padding:15px;
  margin-top:12px;
}
.comment-respond textarea{
  width:100%;
  border:1px solid #ddd;
  border-radius:5px;
  padding:10px;
  font-size:13px;
  background:#fafafa;
}
.comment-respond textarea:focus{
  outline:none;
  border-color:var(--accent);
  background:#fff;
}
.comment-respond input[type="submit"]{
  background:var(--accent);
  color:#fff;
  border:0;
  padding:8px 14px;
  border-radius:5px;
  font-weight:700;
  cursor:pointer;
  margin-top:10px;
}
.comment-respond input[type="submit"]:hover{
  background:#d85a82;
}
.comment-respond .logged-in-as,
.comment-respond .required-field-message{
  display:none !important;
}
.site-footer{
  background:#333;
  color:#fff;
  margin-top:20px;
  padding:14px 0;
  font-size:13px;
  text-align:center;
  border-top:2px solid var(--accent);
}
.site-footer .container{
  max-width:1080px;
  margin:0 auto;
  padding:0 10px;
}
.site-footer a{
  color:#fff;
  font-weight:600;
}
.site-footer a:hover{
  color:var(--accent);
  text-decoration:none;
}
body.is-dark .site-footer,
.wp-night-mode-on .site-footer{
  background:#2b2b2b;       
  color:#fff;
  border-top:2px solid var(--accent);
}
body.is-dark .site-footer a,
.wp-night-mode-on .site-footer a{
  color:#fff;
}
body.is-dark .site-footer a:hover,
.wp-night-mode-on .site-footer a:hover{
  color:var(--accent);
}
body.is-dark,
.wp-night-mode-on{
  background-color:#1f1f1f !important;
  color:#fff;
}
body.is-dark .topbar,
.wp-night-mode-on .topbar{
  background:#333;
  border-bottom:2px solid var(--accent);
}
body.is-dark .section,
body.is-dark article.section,
body.is-dark .sidebar .widget,
body.is-dark .commentlist,
body.is-dark .comment-respond,
body.is-dark .reco,
.wp-night-mode-on .section,
.wp-night-mode-on article.section,
.wp-night-mode-on .sidebar .widget,
.wp-night-mode-on .commentlist,
.wp-night-mode-on .comment-respond,
.wp-night-mode-on .reco{
  background:#363636;
  color:#fff;
  border:0;
  box-shadow:none;
}
body.is-dark .ep-item:hover,
body.is-dark .thumb-card:hover,
body.is-dark .commentlist .comment:hover,
.wp-night-mode-on .ep-item:hover,
.wp-night-mode-on .thumb-card:hover,
.wp-night-mode-on .commentlist .comment:hover{
  background:#383838;
}
body.is-dark .section-head,
body.is-dark .sidebar .widget-title,
.wp-night-mode-on .section-head,
.wp-night-mode-on .sidebar .widget-title{
  background:#fe6b99;
  color:#fff;
}
body.is-dark .ep-item,
body.is-dark .thumb-card,
body.is-dark .commentlist .comment,
.wp-night-mode-on .ep-item,
.wp-night-mode-on .thumb-card,
.wp-night-mode-on .commentlist .comment{
  background:#464646;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}
body.is-dark .thumb-card .cap,
.wp-night-mode-on .thumb-card .cap{
  background:#fe6b99;
  color:#fff;
}
body.is-dark a,
.wp-night-mode-on a{
  color:#fff;
}
body.is-dark .ep-meta .title a,
body.is-dark .content a,
body.is-dark .sidebar li a,
.wp-night-mode-on .ep-meta .title a,
.wp-night-mode-on .content a,
.wp-night-mode-on .sidebar li a{
  color:#fff;
}
body.is-dark .ep-meta .title a:hover,
body.is-dark .content a:hover,
body.is-dark .sidebar li a:hover,
.wp-night-mode-on .ep-meta .title a:hover,
.wp-night-mode-on .content a:hover,
.wp-night-mode-on .sidebar li a:hover{
  color:var(--accent);
  text-decoration:underline;
}
body.is-dark .ep-meta .sub,
body.is-dark .comment-metadata,
.wp-night-mode-on .ep-meta .sub,
.wp-night-mode-on .comment-metadata{
  color:#d0d0d0;
}
body.is-dark .reco,
.wp-night-mode-on .reco{
  background:#333;
}
body.is-dark .reco .label,
.wp-night-mode-on .reco .label{
  background:var(--accent);
}
body.is-dark .reco a,
.wp-night-mode-on .reco a{
  color:#fff;
}
body.is-dark .search-wrap input[type="search"],
.wp-night-mode-on .search-wrap input[type="search"]{
  background:#828080;
  color:#fff;
}
body.is-dark .search-wrap input::placeholder,
.wp-night-mode-on .search-wrap input::placeholder{
  color:#e0e0e0;
}
body.is-dark .dark-toggle,
.wp-night-mode-on .dark-toggle{
  background:#181818;
  border:1px solid #373737;
}
body.is-dark .comment-respond textarea,
.wp-night-mode-on .comment-respond textarea{
  background:#404040;
  border:1px solid #555;
  color:#fff;
}
body.is-dark .comment-respond textarea:focus,
.wp-night-mode-on .comment-respond textarea:focus{
  border-color:var(--accent);
}
body.is-dark .comment.bypostauthor,
.wp-night-mode-on .comment.bypostauthor{
  background:#404040;
  border-left:3px solid var(--accent);
  border-radius:4px;
}
body.is-dark [data-emoji-bar] .tag,
.wp-night-mode-on [data-emoji-bar] .tag{
  background:#404040;
}
body.is-dark [data-emoji-bar] .tag:hover,
.wp-night-mode-on [data-emoji-bar] .tag:hover{
  background:var(--accent);
}
body.is-dark .sidebar li,
.wp-night-mode-on .sidebar li{
  border-bottom:1px solid rgba(255,255,255,.08);
}
body.is-dark .nav ul li ul li a,
.wp-night-mode-on .nav ul li ul li a{
  background:#464646;
}
body.is-dark .nav ul li ul li a:hover,
.wp-night-mode-on .nav ul li ul li a:hover{
  background:#383838;
}
body.is-dark article.section,
.wp-night-mode-on article.section{
  background:#363636;
  color:#fff;
}
body.is-dark article.section > .section-head,
.wp-night-mode-on article.section > .section-head{
  background:#333;
  color:#fff;
}
body.is-dark article.section > .section-body,
.wp-night-mode-on article.section > .section-body{
  color:#fff;
}
body.is-dark article.section .content,
.wp-night-mode-on article.section .content{
  color:#fff;
}
body.is-dark article.section .content p,
.wp-night-mode-on article.section .content p{
  color:#fff;
}
body.is-dark article.section .content a,
.wp-night-mode-on article.section .content a{
  color:#fff;
  font-weight:600;
}
body.is-dark article.section .content a:hover,
.wp-night-mode-on article.section .content a:hover{
  color:var(--accent);
  text-decoration:underline;
}
body.is-dark article.section .wp-post-image,
.wp-night-mode-on article.section .wp-post-image{
  border:1px solid rgba(255,255,255,.10);
  border-radius:5px;
}
body.is-dark article.section .section-body .section,
.wp-night-mode-on article.section .section-body .section{
  background:#404040; 
  border:0;
  box-shadow:none;
}
body.is-dark article.section .section-body .section .section-head,
.wp-night-mode-on article.section .section-body .section .section-head{
  background:#2f2f2f;
  color:#fff;
}
body.is-dark article.section .section-body .section .section-body,
.wp-night-mode-on article.section .section-body .section .section-body{
  background:transparent;
}
body.is-dark article.section .section-body .thumb-card,
.wp-night-mode-on article.section .section-body .thumb-card{
  background:#464646;
  border:0;
}
body.is-dark article.section .section-body .thumb-card:hover,
.wp-night-mode-on article.section .section-body .thumb-card:hover{
  background:#383838;
}
body.is-dark article.section .section-body .thumb-card .cap,
.wp-night-mode-on article.section .section-body .thumb-card .cap{
  background:#333;
  color:#fff;
}
body.is-dark article.section .section-body > div[style*="margin-top:18px"] > h3,
.wp-night-mode-on article.section .section-body > div[style*="margin-top:18px"] > h3{
  color:#fff;
}
body.is-dark article.section [data-emoji-bar] .tag,
.wp-night-mode-on article.section [data-emoji-bar] .tag{
  background:#404040;
}
body.is-dark article.section [data-emoji-bar] .tag:hover,
.wp-night-mode-on article.section [data-emoji-bar] .tag:hover{
  background:var(--accent);
}
body.is-dark article.section .commentlist,
.wp-night-mode-on article.section .commentlist{
  background:#464646;
  box-shadow:none;
  border:0;
}
body.is-dark article.section .commentlist .comment,
.wp-night-mode-on article.section .commentlist .comment{
  background:#464646;
  border-bottom:1px solid rgba(255,255,255,.08);
}
body.is-dark article.section .commentlist .comment:hover,
.wp-night-mode-on article.section .commentlist .comment:hover{
  background:#383838;
}
body.is-dark article.section .comment-metadata,
.wp-night-mode-on article.section .comment-metadata{
  color:#e0e0e0;
}
body.is-dark article.section .comment-content,
.wp-night-mode-on article.section .comment-content{
  color:#fff;
}
body.is-dark article.section .comment.bypostauthor,
.wp-night-mode-on article.section .comment.bypostauthor{
  background:#404040;
  border-left:3px solid var(--accent);
}
body.is-dark article.section .comment-respond,
.wp-night-mode-on article.section .comment-respond{
  background:#404040;
  box-shadow:none;
  border:0;
}
body.is-dark article.section .comment-respond textarea,
.wp-night-mode-on article.section .comment-respond textarea{
  background:#2f2f2f;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
}
body.is-dark article.section .comment-respond textarea:focus,
.wp-night-mode-on article.section .comment-respond textarea:focus{
  border-color:var(--accent);
}
body.is-dark article.section .comment-respond input[type="submit"],
.wp-night-mode-on article.section .comment-respond input[type="submit"]{
  background:var(--accent);
  color:#fff;
}