.bike-hotspot-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.bike-hotspot-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  filter: contrast(1.08) saturate(0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.bike-hotspot {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid #f2b544;
  background: #0d0d0d;
  box-shadow:
    0 0 0 6px rgba(223, 165, 39, 0.2),
    0 0 25px rgba(223, 165, 39, 0.85);
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bike-hotspot::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  border: 1px solid rgba(223, 165, 39, 0.45);
  animation: bikePulse 1.8s infinite;
}

.bike-hotspot:hover,
.bike-hotspot.active {
  transform: translate(-50%, -50%) scale(1.18);
  background: #dfa527;
  box-shadow:
    0 0 0 8px rgba(223, 165, 39, 0.24),
    0 0 38px rgba(223, 165, 39, 1);
}

@keyframes bikePulse {
  0% {
    transform: scale(0.75);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.bike-info-panel {
  background:
    linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(5, 5, 5, 0.98));
  border: 1px solid rgba(223, 165, 39, 0.35);
  border-radius: 18px;
  padding: 32px;
  color: #e7e0d2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  min-height: 360px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.bike-info-panel.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.bike-info-panel .bike-kicker {
  margin: 0 0 10px;
  color: #dfa527;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.bike-info-panel h3 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.bike-info-panel p {
  font-size: 16px;
  line-height: 1.7;
  color: #c9c0b0;
}

.bike-meta {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.bike-meta div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 12px;
}

.bike-meta strong {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.bike-meta span {
  color: #dfa527;
  text-align: right;
}

@media (max-width: 767px) {
  .bike-hotspot {
    width: 18px;
    height: 18px;
  }

  .bike-info-panel {
    margin-top: 24px;
    padding: 24px;
    min-height: auto;
  }
}

/* blog module STARTS HERE */
.metal-journal-blog {
  counter-reset: journal-card;
}

/* Individual post card */
.metal-journal-blog article.et_pb_post {
  counter-increment: journal-card;
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 34px 30px 32px !important;
  border: 1px solid rgba(223, 165, 39, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(223, 165, 39, 0.13), transparent 34%),
    linear-gradient(145deg, #131313, #080808);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Big 01 / 02 / 03 number */
.metal-journal-blog article.et_pb_post::before {
  content: counter(journal-card, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(223, 165, 39, 0.9);
  text-shadow: 0 0 22px rgba(223, 165, 39, 0.25);
}

/* Copper line at bottom */
.metal-journal-blog article.et_pb_post::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(223, 165, 39, 0.75),
    transparent
  );
  opacity: 0.75;
}

.metal-journal-blog article.et_pb_post:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 165, 39, 0.65);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 28px rgba(223, 165, 39, 0.24);
}

/* Hide featured image */
.metal-journal-blog .entry-featured-image-url {
  display: none !important;
}

/* Date / meta */
.metal-journal-blog .post-meta {
  margin: 0 0 14px !important;
  font-family: Oswald, Arial, sans-serif;
  font-size: 13px !important;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfa527 !important;
}

.metal-journal-blog .post-meta a {
  color: #dfa527 !important;
}

/* Title */
.metal-journal-blog .entry-title {
  margin: 0 0 16px !important;
  padding: 0 !important;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1.05 !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.metal-journal-blog .entry-title,
.metal-journal-blog .entry-title a {
  color: #fff !important;
  text-decoration: none;
}

/* Excerpt */
.metal-journal-blog .post-content,
.metal-journal-blog .post-content p {
  color: #a79f91 !important;
  font-size: 15px;
  line-height: 1.75;
}

/* Read more */
.metal-journal-blog .more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: Oswald, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dfa527 !important;
}

.metal-journal-blog .more-link::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.metal-journal-blog article.et_pb_post:hover .more-link::after {
  transform: translateX(5px);
}

/* the blog page */
/* blog page title */
/* Posts page title — copied/matched to the Milwaukee Metal hero vibe */
.pw-posts-title,
.et_pb_module_header.text-glow.pw-posts-title {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px #ff5e00;
  font-size: 5rem;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
  transform: scaleY(1.5);
  padding-top: 0.2em;
}
.pw-posts-kicker {
  color: #dfa527;
  letter-spacing: 12px;
  font-weight: 800;
  text-shadow: 0.08em 0em rgba(0,0,0,0.4)
}


/* Mobile title tuning */
@media (max-width: 767px) {
  .pw-posts-title,
  .et_pb_module_header.text-glow.pw-posts-title {
    font-size: clamp(44px, 16vw, 72px) !important;
    line-height: 0.88 !important;
    margin-bottom: 34px !important;
  }
}
/* end title */
/* PW posts page — full-width homepage-style blog cards */

.pw-home-style-posts,
.pw-classic-post-list {
  --pw-black: #070707;
  --pw-card: rgba(14, 14, 14, 0.86);
  --pw-copper: #d8a03b;
  --pw-copper-soft: rgba(216, 160, 59, 0.34);
  --pw-text: #f4efe5;
  --pw-muted: #c8bca9;
  --pw-border: rgba(216, 160, 59, 0.35);
}

/* Force single column */
.pw-home-style-posts .et_pb_ajax_pagination_container,
.pw-classic-post-list .et_pb_ajax_pagination_container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 46px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Full-width post card */
.pw-home-style-posts article.et_pb_post,
.pw-classic-post-list article.et_pb_post {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin: 0 !important;
  padding: clamp(32px, 5vw, 64px) !important;
  border: 1px solid var(--pw-border) !important;
  border-radius: 22px !important;
  background: #111 !important;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Featured image becomes the background */
.pw-home-style-posts .entry-featured-image-url,
.pw-classic-post-list .entry-featured-image-url {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
  background: #050505;
}

.pw-home-style-posts .entry-featured-image-url img,
.pw-classic-post-list .entry-featured-image-url img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.16) saturate(0.82);
  transform: scale(1.02);
  transition:
    transform 0.45s ease,
    filter 0.45s ease,
    opacity 0.45s ease;
}

/* Dark overlay so text is readable */
.pw-home-style-posts article.et_pb_post::before,
.pw-classic-post-list article.et_pb_post::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.22), transparent 34%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.82) 38%,
      rgba(0, 0, 0, 0.48) 72%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.25) 58%,
      rgba(0, 0, 0, 0.72) 100%
    );
  pointer-events: none;
}

/* Copper bottom line like the homepage cards */
.pw-home-style-posts article.et_pb_post::after,
.pw-classic-post-list article.et_pb_post::after {
  content: "";
  position: absolute;
  left: clamp(32px, 5vw, 64px);
  right: clamp(32px, 5vw, 64px);
  bottom: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--pw-copper),
    rgba(216, 160, 59, 0.25),
    transparent
  );
  box-shadow: 0 0 24px rgba(216, 160, 59, 0.32);
}

/* Keep text above image */
.pw-home-style-posts .entry-title,
.pw-home-style-posts .post-meta,
.pw-home-style-posts .post-content,
.pw-home-style-posts .more-link,
.pw-classic-post-list .entry-title,
.pw-classic-post-list .post-meta,
.pw-classic-post-list .post-content,
.pw-classic-post-list .more-link {
  position: relative;
  z-index: 3;
}

/* Title — readable, not crushed */
.pw-home-style-posts .entry-title,
.pw-classic-post-list .entry-title {
  max-width: 760px;
  margin: 0 0 14px !important;
  padding: 0 !important;
  font-family: Oswald, Impact, sans-serif !important;
  font-size: clamp(34px, 5vw, 72px) !important;
  line-height: 0.95 !important;
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
  text-transform: uppercase !important;
  text-shadow:
    0 4px 22px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(216, 160, 59, 0.18) !important;
}

.pw-home-style-posts .entry-title,
.pw-home-style-posts .entry-title a,
.pw-classic-post-list .entry-title,
.pw-classic-post-list .entry-title a {
  color: var(--pw-text) !important;
  text-decoration: none !important;
}

.pw-home-style-posts .entry-title a:hover,
.pw-classic-post-list .entry-title a:hover {
  color: var(--pw-copper) !important;
}

/* Meta */
.pw-home-style-posts .post-meta,
.pw-classic-post-list .post-meta {
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: var(--pw-copper) !important;
  font-family: Oswald, Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.pw-home-style-posts .post-meta a,
.pw-classic-post-list .post-meta a {
  color: var(--pw-copper) !important;
}

/* Excerpt */
.pw-home-style-posts .post-content,
.pw-home-style-posts .post-content p,
.pw-classic-post-list .post-content,
.pw-classic-post-list .post-content p {
  max-width: 760px;
  color: var(--pw-muted) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

/* Read more */
.pw-home-style-posts .more-link,
.pw-classic-post-list .more-link {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  gap: 10px;
  margin-top: 20px !important;
  padding: 11px 18px !important;
  border: 1px solid rgba(216, 160, 59, 0.56) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.38) !important;
  color: var(--pw-copper) !important;
  font-family: Oswald, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.pw-home-style-posts .more-link::after,
.pw-classic-post-list .more-link::after {
  content: "→";
  font-size: 17px;
  line-height: 1;
}

.pw-home-style-posts .more-link:hover,
.pw-classic-post-list .more-link:hover {
  background: var(--pw-copper) !important;
  color: #080808 !important;
  transform: translateX(4px);
}

/* Hover image movement */
.pw-home-style-posts article.et_pb_post:hover .entry-featured-image-url img,
.pw-classic-post-list article.et_pb_post:hover .entry-featured-image-url img {
  transform: scale(1.07);
  filter: grayscale(0.08) contrast(1.22) saturate(1);
}

/* Mobile */
@media (max-width: 767px) {
  .pw-home-style-posts .et_pb_ajax_pagination_container,
  .pw-classic-post-list .et_pb_ajax_pagination_container {
    gap: 32px;
  }

  .pw-home-style-posts article.et_pb_post,
  .pw-classic-post-list article.et_pb_post {
    min-height: 390px;
    padding: 30px 24px !important;
    border-radius: 18px !important;
  }

  .pw-home-style-posts article.et_pb_post::before,
  .pw-classic-post-list article.et_pb_post::before {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.76) 55%,
        rgba(0, 0, 0, 0.42) 100%
      );
  }

  .pw-home-style-posts article.et_pb_post::after,
  .pw-classic-post-list article.et_pb_post::after {
    left: 24px;
    right: 24px;
  }

  .pw-home-style-posts .entry-title,
  .pw-classic-post-list .entry-title {
    font-size: clamp(32px, 11vw, 48px) !important;
    line-height: 1 !important;
  }

  .pw-home-style-posts .post-content,
  .pw-home-style-posts .post-content p,
  .pw-classic-post-list .post-content,
  .pw-classic-post-list .post-content p {
    font-size: 16px !important;
  }
}
/* PW blog card title — match orange-glow-effect style from homepage */

.pw-home-style-posts .entry-title,
.pw-classic-post-list .entry-title {
  max-width: 760px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;

  font-family: inherit !important;
  font-size: 30px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;

  color: #d8a03b !important;
  text-shadow:
    0 0 8px rgba(216, 160, 59, 0.75),
    0 0 18px rgba(216, 160, 59, 0.45),
    0 0 34px rgba(216, 160, 59, 0.25),
    0 3px 14px rgba(0, 0, 0, 0.95) !important;
}

.pw-home-style-posts .entry-title a,
.pw-classic-post-list .entry-title a {
  color: #d8a03b !important;
  text-decoration: none !important;
  text-shadow: inherit !important;
}

.pw-home-style-posts .entry-title a:hover,
.pw-classic-post-list .entry-title a:hover {
  color: #f0b94a !important;
}
/* Featured image as full card background */

.pw-home-style-posts article.et_pb_post,
.pw-classic-post-list article.et_pb_post {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  min-height: 440px;
  padding: clamp(32px, 5vw, 64px) !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  border: 1px solid rgba(216, 160, 59, 0.35) !important;
  border-radius: 22px !important;
  background: #080808 !important;
}

/* This is the missing bit */
.pw-home-style-posts article.et_pb_post .et_pb_image_container,
.pw-classic-post-list article.et_pb_post .et_pb_image_container {
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;

  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  border-radius: 22px !important;
}

/* The featured image link fills the card */
.pw-home-style-posts article.et_pb_post .entry-featured-image-url,
.pw-classic-post-list article.et_pb_post .entry-featured-image-url {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

/* The actual image fills the card */
.pw-home-style-posts article.et_pb_post .entry-featured-image-url img,
.pw-classic-post-list article.et_pb_post .entry-featured-image-url img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;

  filter: grayscale(0.15) contrast(1.15) saturate(0.9);
  transform: scale(1.03);
}

/* Hide Divi image overlay icon */
.pw-home-style-posts article.et_pb_post .et_overlay,
.pw-classic-post-list article.et_pb_post .et_overlay {
  display: none !important;
}

/* Dark readability overlay */
.pw-home-style-posts article.et_pb_post::before,
.pw-classic-post-list article.et_pb_post::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.22), transparent 34%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.84) 45%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.72) 100%
    );

  pointer-events: none;
}

/* Keep text above the image */
.pw-home-style-posts article.et_pb_post .entry-title,
.pw-home-style-posts article.et_pb_post .post-meta,
.pw-home-style-posts article.et_pb_post .post-content,
.pw-home-style-posts article.et_pb_post .more-link,
.pw-classic-post-list article.et_pb_post .entry-title,
.pw-classic-post-list article.et_pb_post .post-meta,
.pw-classic-post-list article.et_pb_post .post-content,
.pw-classic-post-list article.et_pb_post .more-link {
  position: relative !important;
  z-index: 2 !important;
}
/* end blog page */


/** single post styling **/
/* =========================================================
   PW.KIWI.NZ — SINGLE POST STYLING
   Scoped only to individual blog posts
   ========================================================= */

body.single-post {
  --pw-black: #070707;
  --pw-panel: rgba(12, 12, 12, 0.92);
  --pw-copper: #d8a03b;
  --pw-copper-bright: #f0b94a;
  --pw-text: #f4efe5;
  --pw-muted: #c8bca9;
  --pw-border: rgba(216, 160, 59, 0.32);
}

/* Main page background */
body.single-post #main-content {
  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.12), transparent 32%),
    linear-gradient(180deg, #080808 0%, #050505 100%) !important;
}

/* Main Divi content container */
body.single-post #main-content .container {
  max-width: 1180px;
  width: 90%;
  padding-top: 80px;
  padding-bottom: 90px;
}

/* Remove default Divi sidebar divider */
body.single-post #main-content .container::before {
  display: none !important;
}

/* Main article area */
body.single-post #left-area {
  width: 100% !important;
  padding-right: 0 !important;
}

/* Hide sidebar for now — cleaner post layout */
body.single-post #sidebar {
  display: none !important;
}

/* Article shell */
body.single-post article.et_pb_post {
  position: relative;
  overflow: hidden;
  margin: 0 auto !important;
  padding: clamp(28px, 5vw, 64px) !important;

  border: 1px solid var(--pw-border);
  border-radius: 24px;

  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.96), rgba(5, 5, 5, 0.98));

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

/* Title wrapper */
body.single-post .et_post_meta_wrapper {
  max-width: 960px;
}

/* Single post title — match orange glow feel */
body.single-post .entry-title {
  margin: 0 0 18px !important;
  padding: 0 !important;

  color: var(--pw-copper) !important;

  font-family: inherit !important;
  font-size: clamp(36px, 6vw, 76px) !important;
  line-height: 1.02 !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  text-transform: uppercase !important;

  text-shadow:
    0 0 8px rgba(216, 160, 59, 0.72),
    0 0 22px rgba(216, 160, 59, 0.42),
    0 0 42px rgba(216, 160, 59, 0.18),
    0 4px 18px rgba(0, 0, 0, 0.95) !important;
}

/* Post meta */
body.single-post .post-meta {
  margin: 0 0 34px !important;
  color: var(--pw-muted) !important;

  font-size: 14px !important;
  line-height: 1.5 !important;
}

body.single-post .post-meta a {
  color: var(--pw-copper) !important;
  text-decoration: none !important;
}

body.single-post .post-meta a:hover {
  color: var(--pw-copper-bright) !important;
}

/* Featured image */
body.single-post .et_post_meta_wrapper img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;

  margin: 34px 0 46px !important;

  border-radius: 22px;
  border: 1px solid rgba(216, 160, 59, 0.24);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.62),
    0 0 34px rgba(216, 160, 59, 0.13);

  filter: contrast(1.12) saturate(0.9);
}

/* Main content width */
body.single-post .entry-content {
  max-width: 900px;
  color: var(--pw-text);
}

/* Paragraphs */
body.single-post .entry-content p {
  color: var(--pw-muted) !important;
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 1.45em;
}

/* Headings inside post */
body.single-post .entry-content h2,
body.single-post .entry-content h3,
body.single-post .entry-content h4 {
  color: var(--pw-copper) !important;
  margin-top: 1.4em;
  margin-bottom: 0.55em;

  font-weight: 800;
  text-transform: uppercase;

  text-shadow:
    0 0 8px rgba(216, 160, 59, 0.55),
    0 0 22px rgba(216, 160, 59, 0.22);
}

body.single-post .entry-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

body.single-post .entry-content h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.14;
}

/* Links in content */
body.single-post .entry-content a {
  color: var(--pw-copper-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.single-post .entry-content a:hover {
  color: var(--pw-text);
}

/* Images inside post content */
body.single-post .entry-content img {
  border-radius: 18px;
  border: 1px solid rgba(216, 160, 59, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

/* Comment area */
body.single-post #comment-wrap {
  max-width: 900px;
  margin-top: 58px;
  padding-top: 42px;

  border-top: 1px solid rgba(216, 160, 59, 0.24);
}

body.single-post #comment-wrap h1,
body.single-post #comment-wrap h2,
body.single-post #comment-wrap h3,
body.single-post #reply-title {
  color: var(--pw-copper) !important;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(216, 160, 59, 0.55),
    0 0 20px rgba(216, 160, 59, 0.2);
}

/* Comment form fields */
body.single-post #commentform input[type="text"],
body.single-post #commentform input[type="email"],
body.single-post #commentform input[type="url"],
body.single-post #commentform textarea {
  width: 100%;

  background: rgba(0, 0, 0, 0.46) !important;
  color: var(--pw-text) !important;

  border: 1px solid rgba(216, 160, 59, 0.28) !important;
  border-radius: 12px;

  padding: 14px 16px !important;
}

body.single-post #commentform input:focus,
body.single-post #commentform textarea:focus {
  border-color: var(--pw-copper) !important;
  outline: none;
  box-shadow: 0 0 18px rgba(216, 160, 59, 0.18);
}

/* Submit comment button */
body.single-post #commentform .form-submit .et_pb_button,
body.single-post #commentform input[type="submit"],
body.single-post .form-submit button {
  border: 1px solid rgba(216, 160, 59, 0.56) !important;
  border-radius: 999px !important;

  background: rgba(0, 0, 0, 0.4) !important;
  color: var(--pw-copper) !important;

  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  padding: 12px 22px !important;
}

body.single-post #commentform input[type="submit"]:hover,
body.single-post .form-submit button:hover {
  background: var(--pw-copper) !important;
  color: var(--pw-black) !important;
}

/* Mobile */
@media (max-width: 767px) {
  body.single-post #main-content .container {
    width: 92%;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  body.single-post article.et_pb_post {
    padding: 26px 22px !important;
    border-radius: 18px;
  }

  body.single-post .entry-title {
    font-size: clamp(34px, 13vw, 54px) !important;
    line-height: 1.04 !important;
  }

  body.single-post .et_post_meta_wrapper img {
    margin: 26px 0 34px !important;
    border-radius: 16px;
    max-height: 360px;
  }

  body.single-post .entry-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}
/* =========================================================
   PW.KIWI.NZ — SINGLE POST BORDER / GLOW POLISH
   Add after the main single-post CSS
   ========================================================= */

/* Main article glowing card */
body.single-post article.et_pb_post {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;

  border: 1px solid rgba(216, 160, 59, 0.42) !important;
  border-radius: 24px !important;

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.68),
    0 0 42px rgba(216, 160, 59, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 0 42px rgba(216, 160, 59, 0.045) !important;
}

/* Subtle copper glow wash, like the post cards */
body.single-post article.et_pb_post::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.20), transparent 34%),
    radial-gradient(circle at bottom left, rgba(216, 160, 59, 0.08), transparent 38%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.99));

  pointer-events: none;
}

/* Copper bottom line matching archive cards */
body.single-post article.et_pb_post::after {
  content: "";
  position: absolute;
  left: clamp(28px, 5vw, 64px);
  right: clamp(28px, 5vw, 64px);
  bottom: 0;
  z-index: 1;

  height: 4px;

  background: linear-gradient(
    90deg,
    #d8a03b,
    rgba(216, 160, 59, 0.28),
    transparent
  );

  box-shadow:
    0 0 18px rgba(216, 160, 59, 0.48),
    0 0 36px rgba(216, 160, 59, 0.22);
}

/* Featured image gets its own framed glow */
body.single-post .et_post_meta_wrapper img {
  border: 1px solid rgba(216, 160, 59, 0.38) !important;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.62),
    0 0 32px rgba(216, 160, 59, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

/* Content headings get a small left copper rail */
body.single-post .entry-content h2,
body.single-post .entry-content h3 {
  position: relative;
  padding-left: 18px;
}

body.single-post .entry-content h2::before,
body.single-post .entry-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 4px;

  border-radius: 999px;
  background: #d8a03b;

  box-shadow:
    0 0 12px rgba(216, 160, 59, 0.72),
    0 0 26px rgba(216, 160, 59, 0.28);
}

/* Comment area as a secondary glowing panel */
body.single-post #comment-wrap {
  border: 1px solid rgba(216, 160, 59, 0.28) !important;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 42px) !important;

  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.11), transparent 32%),
    linear-gradient(145deg, rgba(16, 16, 16, 0.88), rgba(4, 4, 4, 0.94));

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(216, 160, 59, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

/* Mobile border tuning */
@media (max-width: 767px) {
  body.single-post article.et_pb_post {
    border-radius: 18px !important;
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.62),
      0 0 26px rgba(216, 160, 59, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
  }

  body.single-post article.et_pb_post::after {
    left: 24px;
    right: 24px;
  }

  body.single-post #comment-wrap {
    border-radius: 16px;
  }
}
/* =========================================================
   PW.KIWI.NZ — SINGLE POST CONTENT PANEL
   Adds structure/glow around the actual article content
   ========================================================= */

body.single-post .entry-content {
  position: relative;
  max-width: 920px;

  margin-top: 46px;
  padding: clamp(26px, 4vw, 46px) !important;

  border: 1px solid rgba(216, 160, 59, 0.28);
  border-radius: 20px;

  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(14, 14, 14, 0.86), rgba(4, 4, 4, 0.94));

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(216, 160, 59, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

/* Top copper line */
body.single-post .entry-content::before {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 46px);
  right: clamp(24px, 4vw, 46px);
  top: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    #d8a03b,
    rgba(216, 160, 59, 0.28),
    transparent
  );

  box-shadow:
    0 0 14px rgba(216, 160, 59, 0.5),
    0 0 30px rgba(216, 160, 59, 0.18);
}

/* Paragraph readability */
body.single-post .entry-content p {
  max-width: 820px;
  color: #c8bca9 !important;

  font-size: 18px !important;
  line-height: 1.85 !important;

  margin-bottom: 1.45em;
}

/* Headings inside content */
body.single-post .entry-content h2 {
  color: #d8a03b !important;

  margin-top: 0.4em;
  margin-bottom: 0.65em;

  font-size: clamp(28px, 4vw, 44px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  text-transform: uppercase;

  text-shadow:
    0 0 8px rgba(216, 160, 59, 0.55),
    0 0 22px rgba(216, 160, 59, 0.22);
}

body.single-post .entry-content h3,
body.single-post .entry-content h4 {
  color: #d8a03b !important;

  margin-top: 1.5em;
  margin-bottom: 0.55em;

  font-weight: 800 !important;
  text-transform: uppercase;

  text-shadow:
    0 0 8px rgba(216, 160, 59, 0.45),
    0 0 18px rgba(216, 160, 59, 0.18);
}

/* Add separation between major sections */
body.single-post .entry-content h2:not(:first-child) {
  padding-top: 34px;
  border-top: 1px solid rgba(216, 160, 59, 0.18);
}

/* Lists, if used later */
body.single-post .entry-content ul,
body.single-post .entry-content ol {
  max-width: 820px;
  margin: 0 0 1.6em 1.3em;
  color: #c8bca9 !important;
}

body.single-post .entry-content li {
  margin-bottom: 0.65em;
  font-size: 18px;
  line-height: 1.75;
}

/* Blockquotes, if used later */
body.single-post .entry-content blockquote {
  max-width: 820px;
  margin: 34px 0;
  padding: 24px 28px;

  border-left: 4px solid #d8a03b;
  border-radius: 14px;

  background: rgba(216, 160, 59, 0.07);
  color: #f4efe5;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(216, 160, 59, 0.08);
}

body.single-post .entry-content blockquote p {
  color: #f4efe5 !important;
  font-size: 20px !important;
  line-height: 1.65 !important;
}

/* Mobile */
@media (max-width: 767px) {
  body.single-post .entry-content {
    margin-top: 34px;
    padding: 24px 20px !important;
    border-radius: 16px;
  }

  body.single-post .entry-content p,
  body.single-post .entry-content li {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  body.single-post .entry-content h2 {
    font-size: clamp(25px, 8vw, 34px) !important;
  }
}
/* =========================================================
   PW.KIWI.NZ — SINGLE POST CONTENT PANEL
   Divi 5 / Theme Builder safe version
   ========================================================= */

/* Target the actual post content area across normal WP + Divi layouts */
body.single-post article.et_pb_post > :is(
  .entry-content,
  .post-content,
  .et_pb_post_content,
  .et_builder_inner_content
) {
  position: relative !important;

  max-width: 920px !important;
  margin-top: 46px !important;
  padding: clamp(26px, 4vw, 46px) !important;

  border: 1px solid rgba(216, 160, 59, 0.32) !important;
  border-radius: 20px !important;

  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(14, 14, 14, 0.92), rgba(4, 4, 4, 0.96)) !important;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(216, 160, 59, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

/* Fallback: if Divi wraps content in normal page modules */
body.single-post :is(
  .et_pb_post_content,
  .et_pb_module.et_pb_post_content,
  .et-l--post .et_pb_post_content
) {
  position: relative !important;

  max-width: 920px !important;
  margin-top: 46px !important;
  padding: clamp(26px, 4vw, 46px) !important;

  border: 1px solid rgba(216, 160, 59, 0.32) !important;
  border-radius: 20px !important;

  background:
    radial-gradient(circle at top right, rgba(216, 160, 59, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(14, 14, 14, 0.92), rgba(4, 4, 4, 0.96)) !important;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(216, 160, 59, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}


/* Body text inside the content panel */
body.single-post article.et_pb_post :is(
  .entry-content,
  .post-content,
  .et_pb_post_content,
  .et_builder_inner_content
) p {
  max-width: 820px;

  color: #c8bca9 !important;
  font-size: 18px !important;
  line-height: 1.85 !important;

  margin-bottom: 1.45em;
}

/* Content headings */
body.single-post article.et_pb_post :is(
  .entry-content,
  .post-content,
  .et_pb_post_content,
  .et_builder_inner_content
) h2,
body.single-post article.et_pb_post :is(
  .entry-content,
  .post-content,
  .et_pb_post_content,
  .et_builder_inner_content
) h3 {
  color: #d8a03b !important;

  margin-top: 1.4em;
  margin-bottom: 0.65em;
  padding-left: 18px;

  font-weight: 800 !important;
  text-transform: uppercase;

  border-left: 4px solid #d8a03b;

  text-shadow:
    0 0 8px rgba(216, 160, 59, 0.55),
    0 0 22px rgba(216, 160, 59, 0.22);
}
/* =========================================================
   PW.KIWI.NZ — SINGLE POST CONTENT TEXT COLOUR
   Make article text/headings white
   ========================================================= */

body.single-post .entry-content,
body.single-post .entry-content p,
body.single-post .entry-content li,
body.single-post .entry-content span,
body.single-post .entry-content div {
  color: #f4efe5 !important;
}

body.single-post .entry-content h1,
body.single-post .entry-content h2,
body.single-post .entry-content h3,
body.single-post .entry-content h4,
body.single-post .entry-content h5,
body.single-post .entry-content h6 {
  color: #ffffff !important;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(216, 160, 59, 0.16) !important;
}

/* If Divi is using a different post-content wrapper */
body.single-post .et_pb_post_content,
body.single-post .et_pb_post_content p,
body.single-post .et_pb_post_content li,
body.single-post .et_pb_post_content span,
body.single-post .et_pb_post_content div {
  color: #f4efe5 !important;
}

body.single-post .et_pb_post_content h1,
body.single-post .et_pb_post_content h2,
body.single-post .et_pb_post_content h3,
body.single-post .et_pb_post_content h4,
body.single-post .et_pb_post_content h5,
body.single-post .et_pb_post_content h6 {
  color: #ffffff !important;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(216, 160, 59, 0.16) !important;
}

/* Keep links copper so they still stand out */
body.single-post .entry-content a,
body.single-post .et_pb_post_content a {
  color: #d8a03b !important;
}

body.single-post .entry-content a:hover,
body.single-post .et_pb_post_content a:hover {
  color: #ffffff !important;
} /** end single post **/


/* -------------------------------------------------------
   PW.NZ Harley post navigation
   Styles previous / next post links at bottom of blog posts
------------------------------------------------------- */

body.single-post .nav-single,
body.single-post .navigation,
body.single-post .post-navigation,
body.single-post .et_pb_posts_nav,
body.single-post nav[role="navigation"] {
  margin-top: 70px;
  padding-top: 35px;
  border-top: 1px solid rgba(216, 160, 59, 0.35);
}

/* Divi previous/next nav wrapper */
body.single-post .et_pb_posts_nav {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  align-items: stretch;
}

/* Individual previous/next links */
body.single-post .et_pb_posts_nav a,
body.single-post .nav-single a,
body.single-post .navigation a,
body.single-post .post-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 18px 26px;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.94), rgba(34, 22, 14, 0.92)),
    radial-gradient(circle at top left, rgba(216, 160, 59, 0.22), transparent 45%);
  color: #f4ead8 !important;
  border: 1px solid rgba(216, 160, 59, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.25;
  text-decoration: none !important;
  overflow: hidden;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

/* Dirty orange slash highlight */
body.single-post .et_pb_posts_nav a::before,
body.single-post .nav-single a::before,
body.single-post .navigation a::before,
body.single-post .post-navigation a::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 160, 59, 0.34),
    rgba(216, 160, 59, 0.08),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 320ms ease;
}

/* Grit texture / scratched overlay */
body.single-post .et_pb_posts_nav a::after,
body.single-post .nav-single a::after,
body.single-post .navigation a::after,
body.single-post .post-navigation a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.12) 43%, transparent 44%),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.055) 0,
      rgba(255,255,255,.055) 1px,
      transparent 1px,
      transparent 7px
    );
  mix-blend-mode: screen;
}

/* Text inside link */
body.single-post .et_pb_posts_nav .nav-label,
body.single-post .nav-single .nav-label,
body.single-post .navigation .nav-label,
body.single-post .post-navigation .nav-label {
  position: relative;
  z-index: 2;
}

/* Arrow */
body.single-post .et_pb_posts_nav .meta-nav,
body.single-post .nav-single .meta-nav,
body.single-post .navigation .meta-nav,
body.single-post .post-navigation .meta-nav {
  position: relative;
  z-index: 2;
  color: #d8a03b;
  font-size: 1.25em;
  margin-left: 8px;
  transition: transform 220ms ease;
}

/* Hover effect */
body.single-post .et_pb_posts_nav a:hover,
body.single-post .nav-single a:hover,
body.single-post .navigation a:hover,
body.single-post .post-navigation a:hover {
  transform: translateY(-4px);
  color: #ffffff !important;
  border-color: rgba(216, 160, 59, 0.95);
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.65),
    0 0 22px rgba(216, 160, 59, 0.24);
}

body.single-post .et_pb_posts_nav a:hover::before,
body.single-post .nav-single a:hover::before,
body.single-post .navigation a:hover::before,
body.single-post .post-navigation a:hover::before {
  left: 115%;
}

body.single-post .et_pb_posts_nav a:hover .meta-nav,
body.single-post .nav-single a:hover .meta-nav,
body.single-post .navigation a:hover .meta-nav,
body.single-post .post-navigation a:hover .meta-nav {
  transform: translateX(5px);
}

/* Previous / next alignment */
body.single-post .et_pb_posts_nav .nav-previous a,
body.single-post .nav-previous a,
body.single-post .previous a {
  text-align: left;
}

body.single-post .et_pb_posts_nav .nav-next a,
body.single-post .nav-next a,
body.single-post .next a {
  text-align: right;
}

/* Add labels above the post names */
body.single-post .et_pb_posts_nav .nav-previous a .nav-label::before,
body.single-post .nav-previous a .nav-label::before,
body.single-post .previous a .nav-label::before {
  content: "Previous ride";
  display: block;
  margin-bottom: 5px;
  color: #d8a03b;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

body.single-post .et_pb_posts_nav .nav-next a .nav-label::before,
body.single-post .nav-next a .nav-label::before,
body.single-post .next a .nav-label::before {
  content: "Next ride";
  display: block;
  margin-bottom: 5px;
  color: #d8a03b;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 767px) {
  body.single-post .et_pb_posts_nav {
    flex-direction: column;
  }

  body.single-post .et_pb_posts_nav a,
  body.single-post .nav-single a,
  body.single-post .navigation a,
  body.single-post .post-navigation a {
    width: 100%;
    justify-content: space-between;
    padding: 18px 20px;
  }
}
