/*
Theme Name: Rizvi Theme
Theme URI: https://t.me/qasimkarbalaei
Author: Rizvi
Author URI: https://t.me/qasimkarbalaei
Description: Professional wrestling & sports entertainment theme. White theme, 1045px container, 3-column grid, 300px sidebar, fully responsive, SEO optimized.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: rizvi-theme
Tags: entertainment, sports, responsive, custom-menu, featured-images, seo, white
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --ww-red:      #cc0000;
  --ww-red-h:    #aa0000;
  --ww-bg:       #f5f5f5;
  --ww-white:    #ffffff;
  --ww-border:   #e0e0e0;
  --ww-border-l: #f0f0f0;
  --ww-text:     #222222;
  --ww-muted:    #999999;
  --ww-footer:   #111111;
  --ww-sidebar:  #f7f7f7;
  --ww-w:        1045px;
  --ww-sb:       300px;
  --ww-gap:      15px;
  --ww-r:        4px;
  --ww-t:        0.15s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ww-bg);
  color: var(--ww-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ww-text); text-decoration: none; transition: color var(--ww-t); }
a:hover { color: var(--ww-red); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* =============================================
   CONTAINER
============================================= */
.ww-container {
  max-width: var(--ww-w);
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* =============================================
   HEADER
============================================= */
#site-header {
  background: var(--ww-white);
  border-bottom: 3px solid var(--ww-red);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 54px;
  max-width: var(--ww-w);
  margin: 0 auto;
  padding: 0 15px;
}

/* ── LOGO ── */
.site-logo { flex-shrink: 0; margin-right: 16px; }
.site-logo a { display: flex; align-items: center; text-decoration: none; }

/* Custom logo image */
.site-logo .custom-logo-link img { max-height: 44px; width: auto; display: block; }

/* Text logo — no circle */
.logo-text {
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #111;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.logo-text span { color: var(--ww-red); }

/* ── NAV ── */
.nav-wrap { flex: 1; overflow: hidden; display: flex; align-items: center; min-width: 0; }

#primary-menu { display: flex; list-style: none; align-items: center; flex-wrap: nowrap; padding: 0; margin: 0; }
#primary-menu > li { padding: 0; margin: 0; }
#primary-menu .sub-menu { display: none !important; }

#primary-menu > li > a {
  display: block;
  padding: 6px 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  border-radius: var(--ww-r);
  transition: background var(--ww-t), color var(--ww-t);
  text-decoration: none;
}

#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a { background: var(--ww-red); color: #fff; }

/* ── SEARCH BTN ── */
.search-icon-btn {
  background: none;
  border: 1px solid var(--ww-border);
  color: #999;
  width: 32px; height: 32px;
  border-radius: var(--ww-r);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; margin-left: 12px;
  transition: all var(--ww-t); padding: 0;
}
.search-icon-btn:hover { background: var(--ww-red); border-color: var(--ww-red); color: #fff; }
.search-icon-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; display: block; }

/* ── MOBILE TOGGLE ── */
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--ww-border); color: #888;
  width: 32px; height: 32px; border-radius: var(--ww-r);
  align-items: center; justify-content: center;
  cursor: pointer; margin-left: 8px; flex-shrink: 0; padding: 0;
}
.nav-toggle svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; display: block; }

/* =============================================
   SEARCH DROPDOWN
============================================= */
.search-dropdown { display: none; background: #fafafa; border-bottom: 1px solid var(--ww-border); width: 100%; }
.search-dropdown.open { display: block; }
.search-dropdown-inner { padding: 9px 15px; max-width: var(--ww-w); margin: 0 auto; }
.search-dropdown-inner form { display: flex; background: var(--ww-white); border: 1px solid var(--ww-border); border-radius: var(--ww-r); overflow: hidden; }
.search-dropdown-inner input[type="search"] { background: transparent; border: none; outline: none; color: var(--ww-text); padding: 9px 13px; font-size: 13px; flex: 1; min-width: 0; font-family: inherit; }
.search-dropdown-inner input::placeholder { color: #bbb; }
.search-dropdown-inner button { background: var(--ww-red); border: none; color: #fff; padding: 9px 16px; cursor: pointer; font-size: 12px; font-weight: 700; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.search-dropdown-inner button:hover { background: var(--ww-red-h); }

/* =============================================
   LAYOUT
============================================= */
#content-area { padding: 14px 0 30px; width: 100%; }

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr var(--ww-sb);
  gap: var(--ww-gap);
  align-items: start;
}

#main-content { min-width: 0; width: 100%; }

/* =============================================
   POST GRID
============================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.post-card {
  background: var(--ww-white);
  border: 1px solid var(--ww-border);
  border-radius: var(--ww-r);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: border-color var(--ww-t), transform var(--ww-t), box-shadow var(--ww-t);
}

.post-card:hover { border-color: var(--ww-red); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(204,0,0,.1); }

/* 16:9 thumb using padding trick */
.post-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #f0f0f0;
}

.post-card-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  display: block;
}

.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-thumb .no-thumb {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #eee;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255,255,255,0);
  background: rgba(204,0,0,0);
  transition: all var(--ww-t);
}
.post-card:hover .play-overlay { color: rgba(255,255,255,.9); background: rgba(204,0,0,.35); }

.cat-badge {
  position: absolute;
  top: 5px; left: 5px;
  background: var(--ww-red); color: #fff;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; padding: 2px 6px;
  border-radius: 2px; letter-spacing: .5px; z-index: 1;
}

.post-card-body { padding: 8px 9px; }

.post-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ww-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  display: block;
}

/* =============================================
   PAGINATION
============================================= */
.ww-pagination { display: flex; gap: 4px; margin-top: 14px; justify-content: center; flex-wrap: wrap; }
.ww-pagination a, .ww-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; height: 30px; padding: 0 8px;
  border-radius: var(--ww-r); font-size: 12px; font-weight: 600;
  border: 1px solid var(--ww-border); color: #888; background: var(--ww-white);
  transition: all var(--ww-t);
}
.ww-pagination a:hover, .ww-pagination span.current { background: var(--ww-red); border-color: var(--ww-red); color: #fff; }

/* =============================================
   SEO TEXT BLOCK
============================================= */
.seo-text-block {
  background: var(--ww-white); border: 1px solid var(--ww-border);
  border-left: 3px solid var(--ww-red); border-radius: var(--ww-r);
  padding: 14px 16px; margin-top: 14px;
}
.seo-text-block h2 { font-size: 13px; font-weight: 700; color: #111; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.seo-text-block p { font-size: 12px; color: #666; line-height: 1.8; }

/* =============================================
   CATEGORY BANNER
============================================= */
.category-banner {
  background: var(--ww-white); border: 1px solid var(--ww-border);
  border-left: 4px solid var(--ww-red); border-radius: var(--ww-r);
  padding: 12px 16px; margin-bottom: 13px;
}
.category-banner h1 { font-size: 18px; font-weight: 700; color: #111; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.category-banner p { font-size: 11px; color: var(--ww-muted); }

/* =============================================
   SEARCH RESULTS
============================================= */
.search-results-header { background: var(--ww-white); border: 1px solid var(--ww-border); border-radius: var(--ww-r); padding: 14px 16px; margin-bottom: 13px; }
.search-form-inline { display: flex; background: #f5f5f5; border: 1px solid var(--ww-border); border-radius: var(--ww-r); overflow: hidden; margin-bottom: 9px; }
.search-form-inline input { background: transparent; border: none; outline: none; color: var(--ww-text); padding: 9px 13px; font-size: 13px; flex: 1; min-width: 0; font-family: inherit; }
.search-form-inline button { background: var(--ww-red); border: none; color: #fff; padding: 9px 16px; cursor: pointer; font-size: 12px; font-weight: 700; text-transform: uppercase; flex-shrink: 0; }
.search-count { font-size: 12px; color: var(--ww-muted); }
.search-count span { color: var(--ww-red); font-weight: 700; }

.no-results-wrap { background: var(--ww-white); border: 1px solid var(--ww-border); border-radius: var(--ww-r); padding: 50px 20px; text-align: center; }
.no-results-wrap h2 { font-size: 18px; color: #111; margin-bottom: 8px; }
.no-results-wrap p { font-size: 13px; color: var(--ww-muted); }

/* =============================================
   SINGLE POST
============================================= */
.single-post-wrap {
  background: var(--ww-white);
  border: 1px solid var(--ww-border);
  border-radius: var(--ww-r);
  overflow: hidden;
  width: 100%;
}

/* Title first — no border below */
.single-post-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  padding: 16px 16px 6px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Meta below title */
.single-post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 14px;
  flex-wrap: wrap;
}

.single-post-cat {
  background: var(--ww-red); color: #fff;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; padding: 3px 9px;
  border-radius: 2px; letter-spacing: .5px; text-decoration: none;
}

.meta-sep { color: #ddd; font-size: 12px; }

.meta-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--ww-muted);
}
.meta-item svg { width: 12px; height: 12px; stroke: var(--ww-red); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Content — top border only */
.single-post-content {
  padding: 14px 16px;
  font-size: 13px;
  color: #444;
  line-height: 1.85;
  border-top: 1px solid var(--ww-border-l);
  border-bottom: 1px solid var(--ww-border-l);
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.single-post-content p { margin-bottom: 10px; }
.single-post-content p:last-child { margin-bottom: 0; }
.single-post-content h2, .single-post-content h3 { margin: 16px 0 8px; color: #111; font-weight: 700; }
.single-post-content a { color: var(--ww-red); }
.single-post-content img { max-width: 100%; height: auto; border-radius: var(--ww-r); margin: 10px 0; }

/* Responsive video embed */
.single-post-content iframe,
.single-post-content embed,
.single-post-content object { max-width: 100%; }

.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 12px 0; background: #000; border-radius: var(--ww-r); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── SHARE BUTTONS ── */
.share-bar {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.share-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: #aaa; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0; }

.sh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 5px; padding: 6px 12px; border-radius: var(--ww-r);
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; border: none; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: opacity var(--ww-t); text-decoration: none; height: 30px;
  font-family: inherit;
}
.sh-btn:hover { opacity: .82; }
.sh-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.sh-btn-txt { display: inline; }
.sh-fb { background: #1877f2; color: #fff; }
.sh-tg { background: #0088cc; color: #fff; }
.sh-wa { background: #25d366; color: #fff; }
.sh-cp { background: #f0f0f0; color: #666; border: 1px solid #ddd; }

/* ── RELATED POSTS ── */
.related-posts { margin-top: 14px; }
.section-title { font-size: 13px; font-weight: 700; text-transform: uppercase; color: #111; letter-spacing: .5px; margin-bottom: 9px; padding-bottom: 7px; border-bottom: 2px solid var(--ww-border); display: flex; align-items: center; }
.section-title::before { content: ''; display: inline-block; width: 3px; height: 13px; background: var(--ww-red); margin-right: 8px; border-radius: 2px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }

/* =============================================
   SIDEBAR
============================================= */
#sidebar { min-width: 0; width: 100%; }
.sidebar { display: flex; flex-direction: column; gap: 12px; }

.widget {
  background: var(--ww-white);
  border: 1px solid var(--ww-border);
  border-radius: var(--ww-r);
  overflow: hidden;
}

.widget-title {
  background: var(--ww-red); color: #fff;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 9px 12px; margin: 0;
  display: block;
}

.widget-body { padding: 10px; }

/* ── Categories — no count ── */
.cat-list-item {
  display: flex;
  align-items: center;
  padding: 7px 10px;
  background: var(--ww-sidebar);
  border-radius: 3px;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background var(--ww-t), color var(--ww-t);
  display: block;
}
.cat-list-item:last-child { margin-bottom: 0; }
.cat-list-item:hover, .cat-list-item.current-cat { background: var(--ww-red); color: #fff; }

/* ── Latest Shows ── */
.latest-show-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 7px 0;
  border-bottom: 1px solid var(--ww-border-l);
  text-decoration: none;
}
.latest-show-item:first-child { padding-top: 0; }
.latest-show-item:last-child { border-bottom: none; padding-bottom: 0; }

.show-bullet { width: 6px; height: 6px; background: var(--ww-red); border-radius: 50%; flex-shrink: 0; margin-top: 4px; }

.show-item-title {
  font-size: 11px; color: #333; line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0; font-weight: 500;
  transition: color var(--ww-t);
}
.latest-show-item:hover .show-item-title { color: var(--ww-red); }

/* =============================================
   STATIC PAGES
============================================= */
.static-page-wrap { background: var(--ww-white); border: 1px solid var(--ww-border); border-radius: var(--ww-r); overflow: hidden; }
.static-page-header { border-bottom: 1px solid var(--ww-border-l); padding: 16px 18px; }
.static-page-header h1 { font-size: 22px; font-weight: 700; color: #111; border-left: 4px solid var(--ww-red); padding-left: 12px; }
.static-page-content { padding: 18px; font-size: 13px; color: #444; line-height: 1.85; word-wrap: break-word; }
.static-page-content p { margin-bottom: 12px; }
.static-page-content p:last-child { margin-bottom: 0; }
.static-page-content h2 { font-size: 14px; font-weight: 700; color: #111; text-transform: uppercase; letter-spacing: .5px; margin: 18px 0 8px; padding-bottom: 5px; border-bottom: 1px solid var(--ww-border-l); }
.static-page-content a { color: var(--ww-red); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 4px; }
.form-field label { font-size: 10px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: .5px; }
.form-field input, .form-field textarea {
  background: #f7f7f7; border: 1px solid var(--ww-border);
  border-radius: var(--ww-r); padding: 9px 12px;
  font-size: 13px; color: var(--ww-text); outline: none;
  font-family: inherit; transition: border-color var(--ww-t); width: 100%;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--ww-red); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--ww-red); color: #fff; border: none; padding: 10px 28px; border-radius: var(--ww-r); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; align-self: flex-start; transition: background var(--ww-t); font-family: inherit; }
.form-submit:hover { background: var(--ww-red-h); }

/* Blog List */
.blog-list-item { display: flex; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--ww-border-l); text-decoration: none; transition: background var(--ww-t); }
.blog-list-item:last-child { border-bottom: none; }
.blog-list-item:hover { background: #fafafa; }
.blog-list-thumb { width: 90px; height: 60px; border-radius: var(--ww-r); overflow: hidden; flex-shrink: 0; background: #f0f0f0; }
.blog-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-list-info { flex: 1; min-width: 0; }
.blog-list-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color var(--ww-t); }
.blog-list-item:hover .blog-list-title { color: var(--ww-red); }
.blog-list-meta { font-size: 10px; color: #bbb; margin-bottom: 4px; }
.blog-list-excerpt { font-size: 12px; color: #777; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* 404 */
.error-404-wrap { background: var(--ww-white); border: 1px solid var(--ww-border); border-radius: var(--ww-r); padding: 60px 20px; text-align: center; }
.error-code { font-size: 100px; font-weight: 900; color: var(--ww-red); line-height: 1; opacity: .7; margin-bottom: 10px; }
.error-404-wrap h2 { font-size: 22px; color: #111; margin-bottom: 8px; text-transform: uppercase; }
.error-404-wrap p { font-size: 13px; color: var(--ww-muted); margin-bottom: 20px; }
.btn-home { display: inline-block; background: var(--ww-red); color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; padding: 10px 28px; border-radius: var(--ww-r); letter-spacing: 1px; transition: background var(--ww-t); }
.btn-home:hover { background: var(--ww-red-h); color: #fff; }

/* =============================================
   FOOTER — 1 line
============================================= */
#site-footer { background: var(--ww-footer); border-top: 3px solid var(--ww-red); margin-top: 20px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 12px 0; }
.footer-copy { font-size: 11px; color: #666; }
.footer-nav { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-nav a { font-size: 11px; color: #666; text-decoration: none; transition: color var(--ww-t); }
.footer-nav a:hover { color: var(--ww-red); }

/* =============================================
   RESPONSIVE — TABLET 1000px
============================================= */
@media (max-width: 1000px) {
  :root { --ww-sb: 260px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* =============================================
   RESPONSIVE — TABLET 768px
============================================= */
@media (max-width: 768px) {
  .content-wrapper { grid-template-columns: 1fr; gap: 14px; }
  #sidebar { order: 2; }
  .nav-wrap { display: none; }
  .nav-toggle { display: flex; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .single-post-title { font-size: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .logo-text { font-size: 19px; }

  /* Mobile nav open */
  .nav-wrap.nav-open {
    display: flex;
    position: absolute;
    top: 57px; left: 0; right: 0;
    background: var(--ww-white);
    border-bottom: 2px solid var(--ww-red);
    z-index: 999;
    padding: 8px 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
  }
  .nav-wrap.nav-open #primary-menu { flex-wrap: wrap; gap: 4px; }
}

/* =============================================
   RESPONSIVE — MOBILE 480px
============================================= */
@media (max-width: 480px) {
  .ww-container { padding: 0 12px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .single-post-title { font-size: 16px; padding: 12px 14px 5px; }
  .single-post-meta { padding: 0 14px 12px; }
  .single-post-content { padding: 12px 14px; }
  .share-bar { padding: 9px 14px; }
  .sh-btn-txt { display: none; }
  .sh-btn { padding: 6px 9px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .logo-text { font-size: 17px; }
  .header-inner { padding: 0 12px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE 380px
============================================= */
@media (max-width: 380px) {
  .posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .single-post-title { font-size: 15px; }
}
