/**
 * Post Maker Single Page Styles
 * Matches reference design from rpcbadminton.lovable.app
 */

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */

.post-maker-single-breadcrumb {
	width: 100%;
	background: #0f0f1e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 12px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.post-maker-single-breadcrumb-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
}

.post-maker-single-breadcrumb-link {
	color: #b0b8c4;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
	letter-spacing: 0.3px;
}

.post-maker-single-breadcrumb-link:hover {
	color: #00ff88;
}

.post-maker-single-breadcrumb-separator {
	color: #6b7280;
}
/* =========================================================
   (KEEP YOUR BREADCRUMB CSS AS-IS ABOVE THIS LINE)
   ========================================================= */

/* Theme tokens to match the screenshot */
:root{
  --rpc-bg-1:#061424;
  --rpc-bg-2:#071a2b;
  --rpc-bg-3:#03101e;

  --rpc-card: rgba(10, 24, 38, 0.62);
  --rpc-card-border: rgba(255,255,255,.10);

  --rpc-text:#e7eef7;
  --rpc-muted:#b7c3d3;

  --rpc-accent:#a4c837;              /* lime from screenshot */
  --rpc-accent-soft: rgba(164,200,55,.22);
  --rpc-accent-soft-2: rgba(164,200,55,.12);
}

/* ============================================
   SINGLE POST LAYOUT (background like screenshot)
   ============================================ */

.post-maker-single-main{
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 50% 35%, rgba(164,200,55,.10), transparent 60%),
    radial-gradient(1200px 700px at 20% 10%, rgba(0,160,255,.10), transparent 55%),
    linear-gradient(180deg, var(--rpc-bg-1) 0%, var(--rpc-bg-2) 45%, var(--rpc-bg-3) 100%);
  overflow: hidden;
}

/* ============================================
   HERO (tinted image + large Orbitron title)
   ============================================ */

.post-maker-single-hero{
  width: 100%;
  max-width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
  background: #0b1a2a;
}

/* image */
.post-maker-single-hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* screenshot-style dark teal overlay */
.post-maker-single-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(6,20,36,.88) 0%, rgba(6,20,36,.62) 55%, rgba(6,20,36,.35) 100%),
    radial-gradient(900px 500px at 60% 40%, rgba(0,210,170,.14), transparent 60%);
  pointer-events:none;
}

/* angled divider under hero like screenshot */
.post-maker-single-hero::after{
  content:"";
  position:absolute;
  left:-2%;
  right:-2%;
  bottom:-48px;
  height: 110px;
  background: linear-gradient(180deg, rgba(4,14,26,0) 0%, rgba(4,14,26,.85) 45%, rgba(4,14,26,1) 100%);
  transform: skewY(-4deg);
  transform-origin: left;
  pointer-events:none;
}

/* Hero content overlay (left aligned) */
.post-maker-single-hero-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 22px 64px;
  color: var(--rpc-text);
  background: none; /* we use ::before overlay now */
  z-index: 2;
}

.post-maker-single-hero-category{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: var(--rpc-accent);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 8px 14px;
  background: rgba(164,200,55,.12);
  border: 1px solid rgba(164,200,55,.35);
  border-radius: 999px; /* pill like screenshot */
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}

.post-maker-single-hero-title{
  font-size: 56px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  color: #ffffff;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.post-maker-single-hero-description{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(231,238,247,.88);
  margin: 0 0 18px 0;
  max-width: 680px;
}

.post-maker-single-hero-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 18px;
  margin-top: 14px;
}

.post-maker-single-hero-date{
  color: rgba(231,238,247,.80);
  font-weight: 500;
  font-size: 14px;
  display:flex;
  align-items:center;
  gap: 8px;
}

.post-maker-single-date-icon{
  color: var(--rpc-accent);
  flex-shrink: 0;
}

.post-maker-single-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.post-maker-single-hero-tag{
  font-size: 12px;
  color: var(--rpc-accent);
  background: rgba(164,200,55,.10);
  border: 1px solid rgba(164,200,55,.28);
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .45px;
  font-weight: 700;
  transition: all .25s ease;
  backdrop-filter: blur(10px);
}

.post-maker-single-hero-tag:hover{
  background: rgba(164,200,55,.16);
  border-color: rgba(164,200,55,.45);
  transform: translateY(-1px);
}

.post-maker-single-date-badge{
  position:absolute;
  bottom: 22px;
  right: 22px;
  background: rgba(7,18,30,.68);
  color: rgba(255,255,255,.92);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  z-index: 3;
}

/* ============================================
   CONTENT AREA (center glass card like screenshot)
   ============================================ */

.post-maker-single-container{
  max-width: 980px;
  margin: 0 auto;
  padding: 78px 20px 84px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Hide duplicate title/meta section if your template outputs it under hero */
.post-maker-single-meta,
.post-maker-single-title{
  display:none;
}

/* Make the content block become the “glass card” */
.post-maker-single-content{
  max-width: 740px;
  margin: 0 auto;
  padding: 34px 42px;
  border-radius: 14px;
  background: var(--rpc-card);
  border: 1px solid var(--rpc-card-border);
  box-shadow:
    0 18px 50px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  font-size: 14px;
  line-height: 1.85;
  color: rgba(231,238,247,.86);
}

.post-maker-single-content p{
  margin: 0 0 16px 0;
}

/* headings in content */
.post-maker-single-content h1,
.post-maker-single-content h2,
.post-maker-single-content h3,
.post-maker-single-content h4,
.post-maker-single-content h5,
.post-maker-single-content h6{
  color: #ffffff;
  margin-top: 26px;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.25;
}

/* links */
.post-maker-single-content a{
  color: var(--rpc-accent);
  text-decoration: none;
  font-weight: 700;
}

.post-maker-single-content a:hover{
  text-decoration: underline;
}

/* blockquote */
.post-maker-single-content blockquote{
  border-left: 4px solid var(--rpc-accent);
  padding-left: 18px;
  margin: 18px 0;
  color: rgba(183,195,211,.95);
  font-style: italic;
}

/* ============================================
   CTA BUTTON (GET IN TOUCH look)
   Works for WP buttons + normal anchors
   ============================================ */

/* Gutenberg */
.post-maker-single-content .wp-block-buttons,
.post-maker-single-content .wp-block-button{
  margin-top: 22px;
  text-align: center;
}

.post-maker-single-content .wp-block-button__link,
.post-maker-single-content .wp-element-button,
.post-maker-single-content a.button,
.post-maker-single-content a.wp-element-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 24px;
  border-radius: 12px;
  background: var(--rpc-accent);
  color: #071420;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  border: 1px solid rgba(0,0,0,.15);
  box-shadow:
    0 10px 26px rgba(164,200,55,.22),
    0 0 0 6px rgba(164,200,55,.08);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  text-decoration: none;
}

.post-maker-single-content .wp-block-button__link:hover,
.post-maker-single-content .wp-element-button:hover,
.post-maker-single-content a.button:hover,
.post-maker-single-content a.wp-element-button:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow:
    0 14px 34px rgba(164,200,55,.28),
    0 0 0 8px rgba(164,200,55,.10);
}

/* ============================================
   TAGS + NAVIGATION (keep subtle)
   ============================================ */

.post-maker-single-tags{
  max-width: 740px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  gap: 10px;
}

.post-maker-single-tags-label{
  color: rgba(183,195,211,.85);
}

.post-maker-single-tag{
  color: var(--rpc-accent);
  background: rgba(164,200,55,.10);
  border: 1px solid rgba(164,200,55,.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
}

.post-maker-single-tag:hover{
  background: rgba(164,200,55,.14);
  border-color: rgba(164,200,55,.40);
}

.post-maker-single-navigation{
  max-width: 740px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.post-maker-single-nav-link{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,24,38,.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.post-maker-single-nav-link:hover{
  border-color: rgba(164,200,55,.35);
  background: rgba(10,24,38,.55);
}

/* ============================================
   RESPONSIVE (match screenshot proportions)
   ============================================ */

@media (max-width: 768px){
  .post-maker-single-hero{ height: 380px; }

  .post-maker-single-hero-title{
    font-size: 38px;
    letter-spacing: .6px;
  }

  .post-maker-single-hero-content{
    padding: 36px 16px 46px;
  }

  .post-maker-single-container{
    padding: 56px 16px 70px;
  }

  .post-maker-single-content{
    padding: 26px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .post-maker-single-hero{ height: 320px; }

  .post-maker-single-hero-title{
    font-size: 32px;
  }

  .post-maker-single-hero-category{
    padding: 6px 12px;
    font-size: 11px;
  }

  .post-maker-single-content{
    padding: 22px 16px;
  }

  .post-maker-single-date-badge{
    bottom: 14px;
    right: 14px;
    padding: 8px 12px;
    border-radius: 10px;
  }
}
/* Back button below hero */
.post-maker-hero-back {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 20px;
}

.post-maker-hero-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 14px;

  background: rgba(10, 24, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  color: var(--rpc-accent);
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;

  transition: all 0.25s ease;
}

.post-maker-hero-back-btn:hover {
  background: rgba(10, 24, 38, 0.75);
  border-color: var(--rpc-accent);
  box-shadow: 0 0 0 4px var(--rpc-accent-soft);
  transform: translateY(-1px);
}
/* ================================
   FIX: Previous AGM button styling
   ================================ */

/* Base button look (match Return button exactly) */
.post-maker-single-nav-prev,
.post-maker-single-nav-prev:link,
.post-maker-single-nav-prev:visited {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  padding: 16px 22px; /* match return button height */
  border-radius: 14px;

  background: rgba(10, 24, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: var(--rpc-accent) !important;
  text-decoration: none !important;

  font-family: "Orbitron", sans-serif;   /* 🔥 important */
  font-weight: 600;
  letter-spacing: 0.08em;                /* match return */
  text-transform: uppercase;             /* match return */
  font-size: 14px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: all 0.25s ease;
}

/* Remove title text (Raw AGM title etc) */
.post-maker-single-nav-prev .post-maker-single-nav-title {
  display: none !important;
}

/* Style label only */
.post-maker-single-nav-prev .post-maker-single-nav-label {
  color: var(--rpc-accent) !important;
  font-size: 14px;
  text-decoration: none !important;
}

/* Remove ugly browser defaults */
.post-maker-single-nav-prev span {
  color: inherit !important;
  text-decoration: none !important;
}

/* Hover effect (same as green return button) */
.post-maker-single-nav-prev:hover {
  background: rgba(10, 24, 38, 0.75);
  border-color: var(--rpc-accent);
  box-shadow: 0 0 0 3px rgba(164, 200, 55, 0.18);
  transform: translateY(-1px);
}

/* Active click */
.post-maker-single-nav-prev:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Kill browser link underline in all states */
.post-maker-single-nav-prev *,
.post-maker-single-nav-prev:hover *,
.post-maker-single-nav-prev:active * {
  text-decoration: none !important;
}
/* Kill underline on NEXT / RETURN button completely */
.post-maker-single-nav-next,
.post-maker-single-nav-next:link,
.post-maker-single-nav-next:visited,
.post-maker-single-nav-next:hover,
.post-maker-single-nav-next:active {
  text-decoration: none !important;
}

/* Kill underline on pseudo element text */
.post-maker-single-nav-next::before {
  text-decoration: none !important;
}

/* Safety: kill underline on all inner spans */
.post-maker-single-nav-next *,
.post-maker-single-nav-next:hover *,
.post-maker-single-nav-next:active * {
  text-decoration: none !important;
}

/* Optional: ensure cursor & click behavior stays clean */
.post-maker-single-nav-next {
  cursor: pointer;
}
/* =========================================
   FIX: Single page gallery image cropping
   Applies to: .post-maker-single-gallery
   ========================================= */

.post-maker-single-gallery,
.post-maker-single-gallery * {
  box-sizing: border-box;
}

.post-maker-single-gallery-item,
.post-maker-single-gallery-link {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

.post-maker-single-gallery img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;   /* important */
  object-position: center !important;
}

/* If some CSS is forcing a fixed height somewhere */
@media (max-width: 767px) {
  .post-maker-single-gallery-item,
  .post-maker-single-gallery-link,
  .post-maker-single-gallery img {
    min-height: 0 !important;
    max-height: none !important;
  }
}



.post-maker-single-header {
    margin-bottom: 30px;
    text-align: left;
}

.post-maker-single-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.post-maker-single-date {
    font-size: 14px;
    opacity: 0.7;
    display: block;
}
.post-maker-single .post-maker-single-hero-title {
  display: none !important;
}
.post-maker-single .post-maker-single-hero-content,
.post-maker-single .post-maker-single-date-badge{
  display:none !important;
}

.post-maker-single-header{
  max-width: 740px;
  margin: 10px auto 26px;
  padding: 0 6px;
}

.post-maker-single-title{
  display:block !important; /* important, overrides earlier hidden rule */
  font-family: "Orbitron", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.post-maker-single-date{
  color: rgba(231,238,247,.70);
  font-size: 14px;
}
.post-maker-single .post-maker-single-hero-content,
.post-maker-single .post-maker-single-date-badge{
  display:none !important;
}
.post-maker-single-hero-category { display:none !important; }
.post-maker-single .post-maker-single-hero-content,
.post-maker-single .post-maker-single-date-badge{
  display:none !important;
}
.post-maker-single-title{
  display:block !important;
}
.post-maker-single-header{
  max-width: 740px;
  margin: 0 auto 26px;
  padding: 0 6px;
  text-align:left;
}

.post-maker-single-title{
  font-family: "Orbitron", sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-maker-single-subtitle{
  margin: 0 0 14px 0;
  color: rgba(231,238,247,.80);
  font-size: 16px;
  line-height: 1.7;
}

.post-maker-single-date-row{
  display:flex;
  align-items:center;
  gap: 8px;
}

.post-maker-single-date-icon{
  color: var(--rpc-accent);
}

.post-maker-single-date{
  color: rgba(231,238,247,.70);
  font-size: 14px;
}
/* HERO: hide everything text/overlay, keep only image */
.post-maker-single .post-maker-single-hero-content,
.post-maker-single .post-maker-single-date-badge {
  display: none !important;
}

/* Also remove the dark overlay tint if you want pure image */
.post-maker-single .post-maker-single-hero::before {
  display: none !important;
}
.post-maker-single-title { display:none; }
/* Keep our custom header visible */
.post-maker-single-header--primary .post-maker-single-title,
.post-maker-single-header--primary .post-maker-single-date,
.post-maker-single-header--primary .post-maker-single-subtitle {
  display: block !important;
}

/* Hide any OTHER H1 titles that appear outside our primary header */
.post-maker-single.post-maker-single h1:not(.post-maker-single-title) {
  display: none !important;
}
/* If there are multiple .post-maker-single-title, hide all except the one inside primary header */
.post-maker-single .post-maker-single-title {
  display: none !important;
}
.post-maker-single .post-maker-single-header--primary .post-maker-single-title {
  display: block !important;
}
.post-maker-single .post-maker-single-hero-content,
.post-maker-single .post-maker-single-date-badge{
  display:none !important;
}
/* Hide all titles by default */
.post-maker-single .post-maker-single-title{
  display:none !important;
}

/* Show only the primary one */
.post-maker-single .post-maker-single-header--primary .post-maker-single-title{
  display:block !important;
}
/* HERO: hide all overlay text */
.post-maker-single .post-maker-single-hero-content,
.post-maker-single .post-maker-single-date-badge{
  display:none !important;
}

/* TITLES: show only the primary header title */
.post-maker-single .post-maker-single-title{
  display:none !important;
}
.post-maker-single .post-maker-single-header--primary .post-maker-single-title{
  display:block !important;
}

/* Optional: if editor added title again inside content */
.post-maker-single .post-maker-single-content > h1:first-child,
.post-maker-single .post-maker-single-content > h2:first-child{
  display:none !important;
}
/* HERO: show only EVENTS badge */
.post-maker-single .post-maker-single-hero-content > * {
  display: none !important;
}
.post-maker-single .post-maker-single-hero-content .post-maker-single-hero-category {
  display: inline-flex !important;
}
.post-maker-single .post-maker-single-date-badge {
  display: none !important;
}

/* TITLES: keep only one main title below hero */
.post-maker-single .post-maker-single-title {
  display: none !important;
}
.post-maker-single .post-maker-single-header--primary .post-maker-single-title {
  display: block !important;
}

/* Optional: hide duplicate heading added inside editor content */
.post-maker-single .post-maker-single-content > h1:first-child,
.post-maker-single .post-maker-single-content > h2:first-child {
  display: none !important;
}
/* Reduce gap between hero and heading */
.post-maker-single-container {
  padding: 40px 20px 84px !important;
}
/* Make heading area wider */
.post-maker-single-header {
  max-width: 1100px !important;
  margin: 0 auto 30px;
  padding: 0 20px;
}

/* Make title larger + more impactful */
.post-maker-single-title {
  font-size: 64px !important;
  line-height: 1.05;
  max-width: 100%;
}

/* Subtitle wider too */
.post-maker-single-subtitle {
  max-width: 900px;
}
/* Tablet */
@media (max-width: 1024px) {
  .post-maker-single-title {
    font-size: 42px !important;
    line-height: 1.1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .post-maker-single-title {
    font-size: 32px !important;
    line-height: 1.15;
    letter-spacing: 0.5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .post-maker-single-title {
    font-size: 26px !important;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) {

  .post-maker-single-header {
    max-width: 1400px !important;
  }

  .post-maker-single-title {
    font-size: 72px !important;
    letter-spacing: 1.5px;
  }

}
@media (min-width: 1200px) {

  .post-maker-single-header {
    max-width: 1400px !important;
  }

  .post-maker-single-title {
    font-size: 72px !important;
    letter-spacing: 1.5px;
  }

}
/* Tablet */
@media (max-width: 1024px) {

  .post-maker-single-content {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  .post-maker-single-content p,
  .post-maker-single-content li,
  .post-maker-single-content span {
    font-size: 12px !important;
  }

}

/* Mobile */
@media (max-width: 768px) {

  .post-maker-single-content {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  .post-maker-single-content p,
  .post-maker-single-content li,
  .post-maker-single-content span {
    font-size: 11px !important;
  }

}


/* Navigation buttons layout */
.post-maker-single-navigation-wrapper{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Make label a flex row so arrow can sit right */
.post-maker-single-nav-label{
  display:flex;
  align-items:center;
  gap: 10px;
  width: 100%;
}

/* push NEXT arrow to far right if needed */
.post-maker-single-nav-next .post-maker-single-nav-label{
  justify-content: space-between;
}

/* keep PREV aligned left */
.post-maker-single-nav-prev .post-maker-single-nav-label{
  justify-content: flex-start;
}

/* arrow styling */
.pm-nav-arrow{
  font-size: 18px;
  line-height: 1;
  display:inline-flex;
  align-items:center;
}
.post-maker-single-navigation-wrapper{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.post-maker-single-nav-label{
  display:flex;
  align-items:center;
  gap: 10px;
  width: 100%;
}

.post-maker-single-nav-next .post-maker-single-nav-label{
  justify-content: space-between;
}

.post-maker-single-nav-prev .post-maker-single-nav-label{
  justify-content: flex-start;
}

.pm-nav-arrow{
  font-size: 18px;
  line-height: 1;
  display:inline-flex;
  align-items:center;
}
.post-maker-single-nav-next::before {
    content: none;
}
.post-maker-single-nav-next::before {
    content: "Next →";
}
/* FINAL: force NEXT label */
.post-maker-single-nav-next::before{
  content: "Next →" !important;
  display: inline-block !important;
}


/* adjust this value to your real header height */
body.single-post-maker,
body.single_post_maker{
  --rpc-header-h: 104px;
}

body.single-post-maker #wp-content-area,
body.single_post_maker #wp-content-area{
  padding-top: var(--rpc-header-h);
}