/*
 * OG Hemp Blog System
 * Scoped styles for single posts and WordPress archives.
 */

:root {
  --og-blog-green: #2f8f43;
  --og-blog-green-dark: #1f6f33;
  --og-blog-leaf: #8cc640;
  --og-blog-ink: #1f2521;
  --og-blog-muted: #69736c;
  --og-blog-line: #dde6dc;
  --og-blog-paper: #fcfbf8;
  --og-blog-panel: #f3f7ef;
  --og-blog-sage: #e8f1df;
  --og-blog-shadow: 0 18px 45px rgba(31, 37, 33, 0.08);
}

body.single-post {
  background: var(--og-blog-paper);
}

/* Neutralize Shoptimizer theme container constraints on blog posts */
body.single-post #content.site-content .col-full,
body.single-post #content.site-content .shoptimizer-archive {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

body.single-post #primary.content-area.oghemp-blog-content {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-post #secondary.widget-area.oghemp-blog-sidebar {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.oghemp-blog-shell {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 40px 24px 72px !important;
  box-sizing: border-box !important;
}

.oghemp-blog-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  gap: 48px !important;
  align-items: start !important;
  width: 100% !important;
}

.oghemp-blog-layout .content-area,
.oghemp-blog-layout .site-main {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
}

.oghemp-blog-post-container {
  min-width: 0;
  width: 100%;
}

.blog-hero-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 440px;
  margin: 0 0 32px;
  overflow: hidden;
  border: 1px solid var(--og-blog-line);
  border-radius: 12px;
  background: var(--og-blog-panel);
  box-shadow: var(--og-blog-shadow);
}

.blog-hero-wrapper:empty {
  display: none;
}

.blog-hero-img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.clean-blog-wrap {
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--og-blog-ink);
  line-height: 1.78;
}

.blog-kicker.oghemp-breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}

.blog-kicker.oghemp-breadcrumbs .bc-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(47, 143, 67, 0.22);
  border-radius: 999px;
  background: var(--og-blog-sage);
  color: var(--og-blog-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.blog-kicker.oghemp-breadcrumbs .bc-pill:hover {
  background: var(--og-blog-green);
  color: #ffffff;
}

.blog-kicker.oghemp-breadcrumbs .bc-sep {
  color: var(--og-blog-muted);
  font-size: 12px;
  font-weight: 600;
  user-select: none;
}

.blog-title {
  max-width: none;
  margin: 0 0 18px;
  color: var(--og-blog-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--og-blog-line);
  border-bottom: 1px solid var(--og-blog-line);
  color: var(--og-blog-muted);
  font-size: 14px;
}

.blog-meta-bar .author-avatar img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.blog-meta-bar .author-info {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.blog-meta-bar .author-name {
  color: var(--og-blog-ink);
  font-weight: 700;
}

.blog-meta-bar .meta-separator {
  color: #a8b2aa;
}

.oghemp-entry-content {
  font-size: 18px;
}

.oghemp-entry-content > * {
  max-width: 720px;
}

.oghemp-entry-content p {
  margin: 0 0 22px;
  color: #333b36;
  font-size: 18px;
  line-height: 1.82;
}

.oghemp-entry-content h2,
.oghemp-entry-content h3,
.oghemp-entry-content h4 {
  max-width: 760px;
  color: var(--og-blog-ink);
  letter-spacing: 0;
}

.oghemp-entry-content h2 {
  margin: 46px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--og-blog-line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.18;
}

.oghemp-entry-content h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--og-blog-green), var(--og-blog-leaf));
  border-radius: 999px;
}

.oghemp-entry-content h3 {
  margin: 32px 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
}

.oghemp-entry-content h4 {
  margin: 26px 0 10px;
  font-size: 19px;
  font-weight: 700;
}

.oghemp-entry-content a {
  color: var(--og-blog-green-dark);
  font-weight: 650;
  text-decoration-color: rgba(47, 143, 67, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.oghemp-entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
}

.oghemp-entry-content img.alignright,
.clean-blog-wrap img.alignright {
  float: right;
  max-width: 46%;
  margin: 6px 0 20px 24px;
}

.oghemp-entry-content figure {
  margin: 34px 0;
}

.oghemp-entry-content figcaption {
  margin-top: 10px;
  color: var(--og-blog-muted);
  font-size: 14px;
  text-align: left;
}

.oghemp-entry-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--og-blog-green);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--og-blog-shadow);
  color: var(--og-blog-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.42;
}

.oghemp-entry-content pre,
.blog-content pre {
  max-width: 100%;
  margin: 28px 0;
  padding: 18px;
  overflow-x: auto;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #eef3ec;
  color: var(--og-blog-ink);
}

.oghemp-entry-content code,
.blog-content code {
  padding: 2px 7px;
  border-radius: 4px;
  background: #eef3ec;
  color: #a33b2f;
  font-family: Monaco, Menlo, "Ubuntu Mono", monospace;
  font-size: 0.88em;
}

.oghemp-entry-content ul,
.oghemp-entry-content ol {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.oghemp-entry-content li {
  position: relative;
  margin: 0 0 10px;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
  line-height: 1.58;
  box-shadow: 0 8px 22px rgba(31, 37, 33, 0.04);
}

.oghemp-entry-content li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--og-blog-green);
  box-shadow: 0 0 0 5px rgba(47, 143, 67, 0.12);
}

.oghemp-entry-content ol {
  counter-reset: og-blog-list;
}

.oghemp-entry-content ol > li {
  counter-increment: og-blog-list;
}

.oghemp-entry-content ol > li::before {
  content: counter(og-blog-list);
  top: 12px;
  left: 14px;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  box-shadow: none;
}

.oghemp-entry-content table {
  display: block;
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
}

.oghemp-entry-content th,
.oghemp-entry-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--og-blog-line);
  text-align: left;
}

.oghemp-entry-content th {
  background: var(--og-blog-sage);
  color: var(--og-blog-ink);
  font-weight: 800;
}

.oghemp-entry-content details,
.clean-blog-wrap details {
  margin: 14px 0;
  overflow: hidden;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
}

.oghemp-entry-content details summary,
.clean-blog-wrap details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  background: var(--og-blog-panel);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.oghemp-entry-content details summary::-webkit-details-marker,
.clean-blog-wrap details summary::-webkit-details-marker {
  display: none;
}

.oghemp-entry-content details summary::after,
.clean-blog-wrap details summary::after {
  content: "+";
  color: var(--og-blog-green);
  font-size: 21px;
  font-weight: 700;
}

.oghemp-entry-content details[open] summary::after,
.clean-blog-wrap details[open] summary::after {
  content: "-";
}

.oghemp-entry-content details > :not(summary),
.clean-blog-wrap details > :not(summary) {
  padding: 16px 18px;
}

.blog-intro,
.note,
.oghemp-note {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid rgba(47, 143, 67, 0.22);
  border-radius: 8px;
  background: var(--og-blog-panel);
  color: var(--og-blog-ink);
}

.blog-intro {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.62;
}

.note strong,
.oghemp-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--og-blog-green-dark);
}

.pros-cons-grid,
.oghemp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.pros-column,
.cons-column,
.oghemp-card {
  padding: 22px;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 37, 33, 0.05);
}

.pros-column {
  border-color: rgba(47, 143, 67, 0.26);
  background: var(--og-blog-panel);
}

.pros-column h4,
.cons-column h4,
.oghemp-card h4 {
  margin-top: 0;
  color: var(--og-blog-ink);
}

.process-steps {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}

.step-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--og-blog-green);
  color: #fff;
  font-weight: 800;
}

.step-content h4 {
  margin: 0 0 6px;
}

.step-content p {
  margin: 0;
}

.oghemp-post-tags,
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.oghemp-post-tags {
  margin: 34px 0 0;
}

.oghemp-post-tags .tag {
  padding: 7px 12px;
  border: 1px solid rgba(47, 143, 67, 0.26);
  border-radius: 999px;
  background: #fff;
  color: var(--og-blog-green-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.oghemp-author-box,
.oghemp-blog-share,
.oghemp-blog-cta,
.blog-post-nav .prev-post,
.blog-post-nav .next-post {
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 37, 33, 0.05);
}

.oghemp-author-box {
  margin: 42px 0;
  padding: 24px;
}

.author-bio-content {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
}

.author-avatar-large img {
  display: block;
  width: 82px;
  height: 82px;
  border-radius: 50%;
}

.author-bio-text h4,
.author-bio-text h5 {
  margin: 0 0 6px;
}

.author-bio-text h4 {
  color: var(--og-blog-green-dark);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.author-bio-text h5 {
  color: var(--og-blog-ink);
  font-size: 20px;
}

.author-website {
  display: inline-flex;
  margin-top: 10px;
  color: var(--og-blog-green-dark);
  font-weight: 750;
}

.oghemp-blog-share {
  margin: 34px 0;
  padding: 22px;
}

.oghemp-blog-share h4 {
  margin: 0 0 14px;
  color: var(--og-blog-ink);
  font-size: 16px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(47, 143, 67, 0.24);
  border-radius: 8px;
  background: var(--og-blog-panel);
  color: var(--og-blog-green-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.share-btn.facebook,
.share-btn.linkedin,
.share-btn.whatsapp,
.share-btn.x {
  background: var(--og-blog-ink);
  color: #fff;
}

.share-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.oghemp-blog-cta {
  margin: 42px 0;
  padding: 30px;
  background: linear-gradient(135deg, var(--og-blog-green-dark), var(--og-blog-green));
  color: #fff;
  text-align: left;
}

.oghemp-blog-cta h4 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.oghemp-blog-cta p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--og-blog-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.blog-cta-btn:hover {
  background: var(--og-blog-paper);
  color: var(--og-blog-green-dark);
  text-decoration: none;
}

.blog-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0;
}

.blog-post-nav .prev-post,
.blog-post-nav .next-post {
  padding: 18px;
}

.blog-post-nav a {
  color: var(--og-blog-ink);
  font-weight: 750;
  text-decoration: none;
}

.blog-related {
  margin: 46px 0 0;
}

.blog-related h3 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.blog-related-grid .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-related-grid .col-md-4 {
  width: auto;
  max-width: none;
  padding: 0;
}

.related-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
}

.blog-related-card,
.related-card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-related-card:hover,
.related-card:hover {
  box-shadow: var(--og-blog-shadow);
  transform: translateY(-3px);
}

.related-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.related-card-content {
  padding: 15px;
}

.related-card-title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.related-card-meta {
  color: var(--og-blog-muted);
  font-size: 13px;
}

.blog-comments {
  margin: 42px 0;
}

.blog-comments .comment-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.blog-comments .comment {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
}

.blog-comments .comment-author {
  color: var(--og-blog-green-dark);
  font-weight: 800;
}

.blog-comments .comment-meta {
  margin-bottom: 10px;
  color: var(--og-blog-muted);
  font-size: 14px;
}

.blog-comments .comment-respond {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
}

.oghemp-blog-sidebar {
  position: sticky;
  top: 110px;
  min-width: 0;
}

.oghemp-blog-sidebar .widget {
  margin: 0 0 18px;
  padding: 20px;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 37, 33, 0.05);
}

.oghemp-blog-sidebar .widget-title,
.oghemp-blog-sidebar h2,
.oghemp-blog-sidebar h3 {
  margin: 0 0 14px;
  color: var(--og-blog-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.oghemp-blog-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.oghemp-blog-sidebar li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--og-blog-line);
}

.oghemp-blog-sidebar li:last-child {
  border-bottom: 0;
}

.oghemp-blog-sidebar a {
  color: var(--og-blog-ink);
  font-weight: 650;
  text-decoration: none;
}

.oghemp-blog-sidebar a:hover {
  color: var(--og-blog-green-dark);
}

.archive .content-area,
.blog .content-area,
.category .content-area,
.tag .content-area {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 28px 70px;
}

.archive article,
.blog article,
.category article,
.tag article {
  margin: 0 0 22px;
  padding: 24px;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 37, 33, 0.05);
}

.archive .entry-title,
.blog .entry-title,
.category .entry-title,
.tag .entry-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.18;
}

@media (max-width: 1024px) {
  .oghemp-blog-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .oghemp-blog-sidebar {
    position: static;
  }
}

   /* ==========================================================================
   New Blog Layout & Sidebar Alignment
   ========================================================================== */

/* Blog Shell: Restricts max-width and centers the page to create LHS/RHS margins */
.oghemp-blog-shell {
  max-width: 1200px; /* Enforces maximum page width */
  margin: 0 auto;    /* Centers the layout, creating even margins on LHS and RHS */
  padding: 0 20px;   /* Standard padding for smaller screens */
  box-sizing: border-box;
}

/* Flexbox Layout: Displays columns side-by-side on desktop, stacks on mobile */
@media (min-width: 1025px) {
  .oghemp-blog-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; /* gutter spacing between content and sidebar */
  }

  /* Main Blog Content Column */
  .oghemp-blog-content {
    flex: 1;
    min-width: 0;
    float: none !important;  /* Override default theme floats */
    width: auto !important;  /* Let flex handle width */
  }

  /* RHS Blog Sidebar Column */
  .oghemp-blog-sidebar {
    width: 300px !important; /* Set your desired sidebar width here */
    flex-shrink: 0;
    float: none !important;  /* Override default theme floats */
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  .oghemp-blog-shell {
    padding: 28px 18px 54px;
  }

  .blog-title {
    max-width: none;
    font-size: 38px;
  }

  .blog-meta-bar {
    align-items: flex-start;
  }

  .oghemp-entry-content p {
    font-size: 17px;
  }

  .oghemp-entry-content img.alignright,
  .clean-blog-wrap img.alignright {
    float: none;
    max-width: 100%;
    margin: 22px 0;
  }

  .oghemp-entry-content h2 {
    font-size: 27px;
  }

  .pros-cons-grid,
  .oghemp-card-grid,
  .blog-post-nav,
  .blog-related-grid .row {
    grid-template-columns: 1fr;
  }

  .author-bio-content,
  .step-item {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Category & Archive Page Margins and Layout Alignments
   ========================================================================== */
.category .site-content .col-full,
.archive.category .site-content .col-full {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .category .site-content .col-full,
  .archive.category .site-content .col-full {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px !important;
  }

  .category .site-content .col-full #primary,
  .archive.category .site-content .col-full #primary {
    flex: 1 !important;
    min-width: 0 !important;
    float: none !important;
    width: auto !important;
  }

  .category .site-content .col-full #secondary,
  .archive.category .site-content .col-full #secondary {
    width: 300px !important;
    flex-shrink: 0 !important;
    float: none !important;
    margin: 0 !important;
  }
}

/* Decorative Line Pointers with Pulse Animation (Page 18 - Power of Hemp) */
.elementor-18 .elementor-widget-html .line,
.elementor-18 .elementor-widget-html .line1 {
  width: 20%;
  border-top: 3px dotted #3c6;
  position: absolute;
  display: inline-block;
  z-index: 10;
}

.elementor-18 .elementor-widget-html .line {
  right: -100px;
  top: 50%;
}

.elementor-18 .elementor-widget-html .line1 {
  left: -100px;
  top: 50%;
}

.elementor-18 .elementor-widget-html .head {
  margin: 100px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(51, 204, 102, 0.8);
  animation: oghemp-pulse 1s infinite !important;
}

.elementor-18 .elementor-widget-html .line .head,
.elementor-18 .elementor-widget-html .line1 .head {
  width: 15px;
  height: 15px;
  border: 3px solid #3c6;
  border-radius: 50%;
  margin-top: -8px;
  margin-right: -15px;
  float: right;
}

@keyframes oghemp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 204, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(51, 204, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(51, 204, 102, 0);
  }
}

@media only screen and (max-width: 480px) {
  .elementor-18 .elementor-widget-html .line,
  .elementor-18 .elementor-widget-html .line1,
  .elementor-18 .elementor-widget-html .head {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .oghemp-blog-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .oghemp-blog-shell {
    padding: 24px 16px 48px;
  }
}

/* Sibling Silo Navigation Footer Grid */
.oghemp-silo-nav {
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--og-blog-line);
}

.silo-nav-title {
  margin: 0 0 24px;
  color: var(--og-blog-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.silo-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.silo-nav-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--og-blog-line);
  border-radius: 8px;
  background: var(--og-blog-panel);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s ease;
}

.silo-nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 143, 67, 0.4);
  box-shadow: 0 8px 24px rgba(31, 37, 33, 0.06);
}

.silo-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.silo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.silo-nav-card:hover .silo-card-image img {
  transform: scale(1.05);
}

.silo-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.silo-card-cat-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--og-blog-green);
  font-weight: 700;
  margin-bottom: 8px;
  padding: 2px 6px;
  background: rgba(47, 143, 67, 0.08);
  border-radius: 4px;
}

.silo-card-title {
  margin: 0 0 8px;
  color: var(--og-blog-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.silo-card-meta {
  margin-top: auto;
  color: var(--og-blog-muted);
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .silo-nav-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Answer Engine Optimization (AEO) summary block */
.oghemp-aeo-summary {
  margin: 32px 0;
  padding: 24px;
  background-color: rgba(47, 143, 67, 0.04);
  border-left: 4px solid var(--og-blog-green);
  border-radius: 4px;
}

.aeo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--og-blog-green);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.aeo-spark-icon {
  flex-shrink: 0;
}

.aeo-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.aeo-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--og-blog-ink);
  margin-bottom: 12px;
}

.aeo-list li:last-child {
  margin-bottom: 0;
}

/* Copy Link Button Feedback State */
.share-btn.copy-link.copied {
  background-color: var(--og-blog-green) !important;
  color: #ffffff !important;
  border-color: var(--og-blog-green) !important;
  display: inline-flex !important;
}

.share-btn.copy-link.copied span,
.share-btn.copy-link.copied i {
  color: #ffffff !important;
  display: inline-block !important;
}


