
/* ── Layout wrapper blog ── */
.blog-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ── Post Grid 2 kolom ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── Post Card ── */
.post-card {
  background: #f6f6f6;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
}

.post-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e2e8f0;
  display: block;
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-thumb .no-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #94a3b8;
  font-size: 40px;
}

/* Category badge */
.post-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
 
  text-transform: uppercase;
  color: #1a73e8;
 
  margin-bottom: 10px;
  text-decoration: none;
}


.post-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #111827;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color .2s;
}
.post-card-title:hover { color: #2563eb; }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #64748b;
  margin-top: auto;
}
.post-card-meta span { display: flex; align-items: center; gap: 5px; }
.post-card-meta i { font-size: 11px; color: #94a3b8; }

/* ── Pagination ── */
.blog-pagination {
  grid-column: 1 / 2;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  list-style: none;
}
.blog-pagination .page-numbers li { list-style: none; }
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: all .2s;
}
.blog-pagination .page-numbers a:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.blog-pagination .page-numbers span.current { background: #2563eb; color: #fff; border-color: #2563eb; }
.blog-pagination .page-numbers .dots { border: none; }

/* ── No posts ── */
.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}
.no-posts i { font-size: 48px; margin-bottom: 16px; display: block; }
.no-posts h3 { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 8px; }

/* ── SIDEBAR ── */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget {
  background: #f6f6f6;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}
.sidebar-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a73e8;
  display: inline-block;
}

/* Search */
.sidebar-search { display: flex; }
.sidebar-search input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.sidebar-search input[type="search"]:focus { border-color: #2563eb; }
.sidebar-search button {
  padding: 10px 16px;
  background: #d7d7d7;
    color: #5e5e5e;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.sidebar-search button:hover { }

/* Category list */
.cat-list { display: flex; flex-direction: column; gap: 2px; }
.cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
 
 
  transition: background .2s;
  text-decoration: none;
}
.cat-list-item:hover { }
.cat-list-item a {
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.cat-list-item:hover a { color: #2563eb; }
.cat-count {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Recent posts */
.recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
}
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-thumb {
  width: 64px; height: 52px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
}
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recent-thumb .no-thumb-sm {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #94a3b8;
}
.recent-info .title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  transition: color .2s;
}
.recent-post-item:hover .recent-info .title { color: #2563eb; }
.recent-info .date { font-size: 12px; color: #64748b; }

/* Widget bantuan */
.widget-help {
  background: linear-gradient(145deg, #0d0021, #430e58);
  border: none;
  text-align: center;
}
.widget-help .help-icon { font-size: 32px; color: #fff; margin-bottom: 10px; }
.widget-help .help-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.widget-help .help-desc { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 18px; line-height: 1.55; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-1px); }

/* ── SINGLE POST ── */
.single-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.single-content { min-width: 0; }
.single-header { margin-bottom: 28px; }
.single-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.single-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  color: #111827;
  margin-bottom: 14px;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
}
.single-meta span { display: flex; align-items: center; gap: 6px; }
.single-meta i { color: #94a3b8; }
.single-thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/8;
}
.single-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.entry-content { font-size: 14px; line-height: 1.8; color: #1e293b; }
.entry-content h1,.entry-content h2,.entry-content h3,
.entry-content h4,.entry-content h5,.entry-content h6 {
  font-weight: 700; color: #111827;
  margin: 28px 0 14px; line-height: 1.3;
}
.entry-content h2 { font-size: 22px; }
.entry-content h3 { font-size: 19px; }
.entry-content p { margin-bottom: 18px; }
.entry-content a { color: #2563eb; }
.entry-content a:hover { text-decoration: underline; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.entry-content li { margin-bottom: 6px; }
.entry-content img { border-radius: 8px; margin: 20px 0; max-width: 100%; }
.entry-content blockquote {
  border-left: 4px solid #2563eb;
  padding: 14px 20px;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: #64748b;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.entry-content th, .entry-content td { border: 1px solid #e2e8f0; padding: 10px 14px; text-align: left; }
.entry-content th { background: #f8fafc; font-weight: 700; }

/* Post nav */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}
.post-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: all .2s;
  max-width: 48%;
}
.post-nav a:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.post-nav .nav-next { margin-left: auto; text-align: right; flex-direction: row-reverse; }

/* ── PAGE ── */
.page-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.page-content { min-width: 0; }
.page-title { font-size: 28px; font-weight: 800; color: #111827; margin-bottom: 28px; }

/* ── 404 ── */
.not-found-wrapper {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
  padding: 0 24px;
}
.not-found-code { font-size: 120px; font-weight: 800; color: #2563eb; opacity: .15; line-height: 1; }
.not-found-title { font-size: 28px; font-weight: 800; color: #111827; margin-bottom: 12px; }
.not-found-desc { color: #64748b; margin-bottom: 32px; }
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-back-home:hover { background: #1d4ed8; transform: translateY(-1px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blog-wrapper, .single-wrapper, .page-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .single-title, .page-title { font-size: 22px; }
  .post-nav { flex-direction: column; }
  .post-nav a { max-width: 100%; }
  .post-nav .nav-next { margin-left: 0; text-align: left; flex-direction: row; }
}
@media (max-width: 480px) {
  .blog-wrapper, .single-wrapper, .page-wrapper { padding: 32px 16px; }
  .sidebar-widget { padding: 18px; }
}


/* ============================================================
   DEFAULT WORDPRESS WIDGETS
   (Archives, Categories, Recent Posts, Meta, dll)
   ============================================================ */

/* Reset list style yang keluar dari card */
.sidebar-widget ul,
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-widget ul li,
.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #374151;
}
.sidebar-widget ul li:last-child,
.widget ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar-widget ul li a,
.widget ul li a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-widget ul li a:hover,
.widget ul li a:hover {
  color: #2563eb;
}

/* Title widget default WordPress */
.sidebar-widget h2.widget-title,
.sidebar-widget h3.widget-title,
.widget h2.widget-title,
.widget h3.widget-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #2563eb;
  display: inline-block;
  letter-spacing: .3px;
}

/* Archives widget — tampilkan count rapi */
.widget_archive ul li,
.widget_categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 7px;
  border-bottom: none;
  transition: background .2s;
}
.widget_archive ul li:hover,
.widget_categories ul li:hover {
  background: #f8fafc;
}
.widget_archive ul li a,
.widget_categories ul li a {
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  flex: 1;
}
/* Count angka di belakang */
.widget_archive ul li a + a,
.widget_categories ul li .post-count,
.widget_categories ul li a + a {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 20px;
  min-width: 28px;
  text-align: center;
}

/* Recent posts widget default */
.widget_recent_entries ul li {
  padding: 8px 0;
}
.widget_recent_entries ul li a {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.45;
  display: block;
  justify-content: unset;
}
.widget_recent_entries ul li a:hover { color: #2563eb; }
.widget_recent_entries ul li .post-date {
  font-size: 11px;
  color: #94a3b8;
  display: block;
  margin-top: 3px;
}

/* Meta widget (Login, RSS dll) */
.widget_meta ul li a,
.widget_pages ul li a,
.widget_nav_menu ul li a {
  font-size: 14px;
}

/* Tag cloud */
.widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.widget_tag_cloud .tagcloud a {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px !important;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  border-radius: 20px;
  text-decoration: none;
  transition: all .2s;
}
.widget_tag_cloud .tagcloud a:hover {
  background: #2563eb;
  color: #fff;
}

/* Search widget default WP */
.widget_search .search-form {
  display: flex;
}
.widget_search .search-field {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.widget_search .search-field:focus { border-color: #2563eb; }
.widget_search .search-submit {
  padding: 10px 16px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  transition: background .2s;
}
.widget_search .search-submit:hover { background: #1d4ed8; }

/* ============================================================
   COMMENT SECTION
   ============================================================ */
.comments-area {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid #e2e8f0;
}

/* Judul komentar */
.comments-title,
.comment-reply-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}
.comment-reply-title {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}
.comment-reply-title small {
  font-size: 13px;
  font-weight: 400;
  margin-left: 10px;
}
.comment-reply-title small a {
  color: #2563eb;
  text-decoration: none;
}

/* Daftar komentar */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.comment-list .comment,
.comment-list .pingback {
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
  list-style: none;
}
.comment-list .comment:last-child { border-bottom: none; }

/* Children (nested comments) */
.comment-list .children {
  list-style: none;
  padding-left: 48px;
  margin: 12px 0 0 0;
  border-left: 2px solid #e2e8f0;
}

/* Wrapper komentar */
.comment-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Avatar */
.comment-body .avatar,
img.avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
}

/* Konten komentar */
.comment-content-wrapper { flex: 1; min-width: 0; }

.comment-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.comment-author .fn {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  font-style: normal;
}
.comment-author .fn a { color: inherit; text-decoration: none; }
.comment-author b { font-weight: 700; }

.comment-metadata {
  font-size: 12px;
  color: #94a3b8;
}
.comment-metadata a {
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s;
}
.comment-metadata a:hover { color: #2563eb; }

.comment-awaiting-moderation {
  font-size: 12px;
  color: #f59e0b;
  background: #fffbeb;
  padding: 3px 10px;
  border-radius: 4px;
  margin-left: 6px;
}

/* Isi teks komentar */
.comment-content p {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 8px;
}
.comment-content p:last-child { margin-bottom: 0; }

/* Tombol reply */
.reply {
  margin-top: 10px;
}
.comment-reply-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  transition: all .2s;
}
.comment-reply-link:hover {
  color: #2563eb;
  border-color: #2563eb;
  background: #eff6ff;
}

/* Edit link */
.comment-edit-link {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: none;
  margin-left: 8px;
}
.comment-edit-link:hover { color: #2563eb; }

/* ── FORM KOMENTAR ── */
.comment-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  margin-top: 24px;
}

/* Info login / logged in */
.comment-notes,
.logged-in-as {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.55;
}
.logged-in-as a { color: #2563eb; text-decoration: none; }
.logged-in-as a:hover { text-decoration: underline; }
.required-field-message { font-size: 12px; color: #94a3b8; }

/* Fields wrapper */
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url,
.comment-form .comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

/* Label */
.comment-form label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.comment-form label .required {
  color: #ef4444;
  margin-left: 2px;
}

/* Input fields */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
#comment {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #1e293b;
  background: #ffffff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus,
#comment:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.comment-form textarea,
#comment {
  min-height: 130px;
}

/* Row 3 kolom (nama, email, url) */
.comment-form-fields-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Checkbox cookies */
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}
.comment-form-cookies-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px; height: 16px;
  accent-color: #2563eb;
  flex-shrink: 0;
}
.comment-form-cookies-consent label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 400;
}

/* Tombol submit */
.comment-form .form-submit { margin: 0; }
.comment-form input[type="submit"],
#submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
}
.comment-form input[type="submit"]:hover,
#submit:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* No comments */
.no-comments {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  padding: 20px 0;
  font-style: italic;
}

/* Responsive comment form */
@media (max-width: 640px) {
  .comment-form-fields-row { grid-template-columns: 1fr; }
  .comment-list .children { padding-left: 20px; }
  .comment-form { padding: 20px; }
}

.single-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 16px;
}
.single-breadcrumb a {
  color: #68748f;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.single-breadcrumb a:hover { text-decoration: underline; }
.single-breadcrumb .bc-sep { color: #cbd5e1; font-size: 10px; }
.single-breadcrumb .bc-current {
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}
.single-meta a { color: #68748f; text-decoration: none; font-weight: 600; }
.single-meta a:hover { text-decoration: underline; }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blog-wrapper, .single-wrapper, .page-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .single-title, .page-title { font-size: 22px; }
  .post-nav { flex-direction: column; }
  .post-nav a { max-width: 100%; }
  .post-nav .nav-next { margin-left: 0; text-align: left; flex-direction: row; }
}
@media (max-width: 480px) {
  .blog-wrapper, .single-wrapper, .page-wrapper { padding: 32px 16px; }
  .sidebar-widget { padding: 18px; }
}
