/* ============================================================
   SF-60 Froggie - Product Page Design System
   Matches the HTML Manual design language
   For use on synthrilla.com/downloads/new-synthrilla-bass-box/
   ============================================================ */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  --sf-crimson: #CA1339;
  --sf-crimson-dark: #8a0d28;
  --sf-crimson-glow: rgba(202, 19, 57, 0.15);
  --sf-bg-dark: #0a0a0a;
  --sf-bg-card: #1a1a1a;
  --sf-bg-card-hover: #222;
  --sf-bg-section: #111;
  --sf-text: #d0d0d0;
  --sf-text-bright: #f0f0f0;
  --sf-text-muted: #888;
  --sf-text-dim: #555;
  --sf-success: #34D399;
  --sf-warning: #E8A838;
  --sf-border: #333;
  --sf-border-subtle: #222;
  --sf-radius: 12px;
  --sf-radius-sm: 6px;
  --sf-font-stack: 'SynthrillaTTFN', SynthrillaTTFN, Helvetica, Arial, sans-serif;
  --sf-font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --sf-max-width: 1100px;
  --sf-gutter: 24px;
}

/* ── Base: Scope everything under .sf-product ── */
.sf-product {
  font-family: var(--sf-font-stack);
  color: var(--sf-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sf-product *,
.sf-product *::before,
.sf-product *::after {
  box-sizing: border-box;
}

/* ── Section Container ── */
.sf-section {
  max-width: var(--sf-max-width);
  margin: 0 auto;
  padding: 60px var(--sf-gutter);
}

.sf-section + .sf-section {
  border-top: 1px solid var(--sf-border-subtle);
}

/* ── Typography ── */
.sf-product h1,
.sf-product h2,
.sf-product h3,
.sf-product h4 {
  font-family: var(--sf-font-stack);
  line-height: 1.2;
}

.sf-product h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--sf-text-bright);
  margin-bottom: 16px;
}

.sf-product h2 .accent {
  color: var(--sf-crimson);
}

.sf-product h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--sf-text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.sf-product p {
  color: #b0b0b0;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.sf-section-intro {
  border-left: 3px solid var(--sf-crimson);
  padding-left: 18px;
  margin-bottom: 30px;
  color: var(--sf-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Hero Section ── */
.sf-hero {
  max-width: var(--sf-max-width);
  margin: 0 auto;
  padding: 80px var(--sf-gutter) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Text/Price/Button on the LEFT, Image on the RIGHT */
.sf-hero-image {
  order: 2;
}

.sf-hero-image + div,
.sf-hero > div:not(.sf-hero-image) {
  order: 1;
}

.sf-hero-image img,
.sf-hero-image a img {
  width: 100%;
  border-radius: var(--sf-radius) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid var(--sf-border-subtle);
}

.sf-hero-brand {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sf-crimson);
  margin-bottom: 12px;
}

.sf-hero-title {
  font-size: 42px;
  font-weight: 600;
  color: var(--sf-text-bright);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.sf-hero-title .accent {
  color: var(--sf-crimson);
}

.sf-hero-title .sf-hero-version {
  font-size: 14px;
  font-weight: 400;
  color: var(--sf-text-muted);
  vertical-align: middle;
  letter-spacing: 0;
}

.sf-hero-subtitle {
  font-size: 18px;
  color: var(--sf-text-muted);
  margin-bottom: 8px;
}

.sf-hero-meta {
  font-size: 13px;
  color: var(--sf-text-dim);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.sf-hero-meta span {
  margin: 0 6px;
  color: #333;
}

/* ── CTA Button ── */
.sf-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: white;
  font-family: var(--sf-font-stack);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.sf-cta:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.4);
  color: white;
  text-decoration: none;
}

.sf-cta:active {
  transform: translateY(0);
}

.sf-cta-secondary {
  background: transparent;
  border: 1px solid var(--sf-border);
  color: var(--sf-text);
  box-shadow: none;
}

.sf-cta-secondary:hover {
  background: var(--sf-bg-card);
  border-color: var(--sf-text-muted);
  color: var(--sf-text-bright);
  box-shadow: none;
}

.sf-price {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.sf-price-note {
  font-size: 14px;
  color: var(--sf-text-muted);
  margin-bottom: 20px;
}

/* ── Feature Grid ── */
.sf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sf-feature-card {
  background: var(--sf-bg-card);
  border: 1px solid var(--sf-border-subtle);
  border-radius: var(--sf-radius);
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}

.sf-feature-card:hover {
  border-color: var(--sf-border);
  background: var(--sf-bg-card-hover);
}

.sf-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.sf-feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--sf-text-bright);
  margin: 0 0 6px 0;
}

.sf-feature-card p {
  font-size: 14px;
  color: var(--sf-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Signal Flow ── */
.sf-signal-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 24px;
  background: #0d0d0d;
  border: 1px solid var(--sf-border-subtle);
  border-radius: var(--sf-radius);
}

.sf-flow-block {
  background: var(--sf-bg-card);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  text-align: center;
  white-space: nowrap;
}

.sf-flow-block.active {
  border-color: var(--sf-crimson);
  color: var(--sf-text-bright);
  background: rgba(202, 19, 57, 0.08);
}

.sf-flow-arrow {
  color: #444;
  font-size: 18px;
}

/* ── Accordion ── */
.sf-accordion {
  border: 1px solid var(--sf-border-subtle);
  border-radius: var(--sf-radius);
  overflow: hidden;
  margin-bottom: 4px;
}

.sf-accordion + .sf-accordion {
  margin-top: -1px;
}

.sf-accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--sf-bg-card);
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--sf-font-stack);
  font-size: 16px;
  font-weight: 600;
  color: var(--sf-text-bright);
  text-align: left;
  transition: background 0.2s;
}

.sf-accordion-header:hover {
  background: var(--sf-bg-card-hover);
}

.sf-accordion-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--sf-crimson);
  opacity: 0.5;
  width: 32px;
  flex-shrink: 0;
}

.sf-accordion-title {
  flex: 1;
}

.sf-accordion-arrow {
  font-size: 12px;
  color: var(--sf-text-dim);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.sf-accordion.open .sf-accordion-arrow {
  transform: rotate(180deg);
}

.sf-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--sf-bg-dark);
}

.sf-accordion.open .sf-accordion-body {
  max-height: 3000px;
}

.sf-accordion-content {
  padding: 24px;
}

.sf-accordion-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 12px 0;
  border: 1px solid var(--sf-border-subtle);
}

.sf-accordion-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.sf-accordion-content thead th {
  text-align: left;
  font-weight: 600;
  color: var(--sf-crimson);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-bottom: 2px solid #2a2a2a;
}

.sf-accordion-content tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid #1a1a1a;
  color: #b0b0b0;
}

.sf-accordion-content tbody tr:hover {
  background: rgba(202, 19, 57, 0.04);
}

.sf-accordion-content .param-name {
  font-weight: 600;
  color: var(--sf-text);
  white-space: nowrap;
}

.sf-accordion-content .param-range {
  color: var(--sf-text-muted);
  font-family: var(--sf-font-mono);
  font-size: 12px;
}

.sf-accordion-content ul {
  margin: 10px 0 16px 20px;
  color: #b0b0b0;
}

.sf-accordion-content li {
  margin-bottom: 6px;
  font-size: 14px;
}

.sf-accordion-content li strong {
  color: var(--sf-text);
}

/* ── Info Boxes (in Accordions) ── */
.sf-tip {
  background: linear-gradient(135deg, #0d1a0d 0%, #0a150a 100%);
  border: 1px solid #1a3a1a;
  border-left: 3px solid var(--sf-success);
  border-radius: var(--sf-radius-sm);
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 14px;
}

.sf-tip .label {
  color: var(--sf-success);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sf-tip p {
  color: #8fbc8f;
  margin-bottom: 0;
  font-size: 14px;
}

.sf-note {
  background: linear-gradient(135deg, #1a1408 0%, #151008 100%);
  border: 1px solid #3a2a10;
  border-left: 3px solid var(--sf-warning);
  border-radius: var(--sf-radius-sm);
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 14px;
}

.sf-note .label {
  color: var(--sf-warning);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sf-note p {
  color: #c4a868;
  margin-bottom: 0;
  font-size: 14px;
}

/* ── Specs Grid ── */
.sf-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.sf-spec-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--sf-bg-card);
  border: 1px solid var(--sf-border-subtle);
  border-radius: var(--sf-radius);
  padding: 20px;
}

.sf-spec-icon {
  width: 40px;
  height: 40px;
  background: #0d0d0d;
  border: 1px solid var(--sf-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sf-spec-label {
  font-size: 11px;
  color: var(--sf-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.sf-spec-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--sf-text);
}

/* ── Version History ── */
.sf-version-timeline {
  position: relative;
  padding-left: 28px;
}

.sf-version-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--sf-border-subtle);
}

.sf-version-item {
  position: relative;
  padding-bottom: 32px;
}

.sf-version-item:last-child {
  padding-bottom: 0;
}

.sf-version-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sf-crimson);
  border: 2px solid var(--sf-bg-dark);
}

.sf-version-item:not(:first-child)::before {
  background: var(--sf-border);
}

.sf-version-badge {
  display: inline-block;
  background: rgba(202, 19, 57, 0.12);
  color: var(--sf-crimson);
  font-weight: 700;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 8px;
}

.sf-version-item:not(:first-child) .sf-version-badge {
  background: rgba(255, 255, 255, 0.05);
  color: var(--sf-text-muted);
}

.sf-version-date {
  font-size: 13px;
  color: var(--sf-text-dim);
}

.sf-version-changes {
  margin-top: 8px;
  padding: 0;
  list-style: none;
}

.sf-version-changes li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--sf-text-muted);
}

.sf-version-changes li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--sf-success);
  font-weight: 700;
}

/* ── FAQ ── */
.sf-faq-item {
  border-bottom: 1px solid var(--sf-border-subtle);
  padding: 20px 0;
}

.sf-faq-item:last-child {
  border-bottom: none;
}

.sf-faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--sf-text-bright);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: var(--sf-font-stack);
}

.sf-faq-question:hover {
  color: var(--sf-crimson);
}

.sf-faq-toggle {
  font-size: 18px;
  color: var(--sf-text-dim);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.sf-faq-item.open .sf-faq-toggle {
  transform: rotate(45deg);
}

.sf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sf-faq-item.open .sf-faq-answer {
  max-height: 500px;
}

.sf-faq-answer p {
  padding-top: 12px;
  font-size: 15px;
  color: #b0b0b0;
}

/* ── Video Embed ── */
.sf-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--sf-radius);
  border: 1px solid var(--sf-border-subtle);
}

.sf-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Badges ── */
.sf-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sf-badge-vst { background: #1a1a2e; color: #6C63FF; border: 1px solid #2a2a4e; }
.sf-badge-au { background: #1a2a1a; color: var(--sf-success); border: 1px solid #1a3a1a; }
.sf-badge-mac { background: #1a1a1a; color: #ccc; border: 1px solid #333; }
.sf-badge-win { background: #1a1a2a; color: #70a0ff; border: 1px solid #1a2a3a; }

/* ── Bottom CTA Section ── */
.sf-bottom-cta {
  text-align: center;
  padding: 60px var(--sf-gutter);
  max-width: var(--sf-max-width);
  margin: 0 auto;
}

.sf-bottom-cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.sf-bottom-cta p {
  font-size: 16px;
  color: var(--sf-text-muted);
  margin-bottom: 28px;
}

/* ── Two Column Layout ── */
.sf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 16px 0;
}

.sf-col-card {
  background: var(--sf-bg-section);
  border: 1px solid var(--sf-border-subtle);
  border-radius: 8px;
  padding: 18px;
}

.sf-col-card h4 {
  margin-top: 0;
  color: var(--sf-crimson);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ── Workflow Steps ── */
.sf-workflow {
  counter-reset: sf-step;
  margin: 16px 0;
}

.sf-workflow-step {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.sf-workflow-step::before {
  counter-increment: sf-step;
  content: counter(sf-step);
  width: 28px;
  height: 28px;
  background: var(--sf-crimson);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.sf-workflow-step strong {
  color: var(--sf-text);
  display: block;
  margin-bottom: 3px;
}

/* ── Keyboard shortcut ── */
.sf-product kbd {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 2px 7px;
  font-family: var(--sf-font-mono);
  font-size: 12px;
  color: #ddd;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .sf-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px var(--sf-gutter) 32px;
    text-align: center;
  }

  .sf-hero-image {
    order: -1;  /* Image on top on mobile */
    max-width: 260px;
    margin: 0 auto;
  }

  .sf-hero > div:not(.sf-hero-image) {
    order: 0;  /* Text/button below image on mobile */
  }

  .sf-hero-title {
    font-size: 32px;
  }

  .sf-hero-subtitle {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .sf-hero-meta {
    margin-bottom: 16px;
  }

  .sf-hero-badges {
    justify-content: center !important;
  }

  .sf-hero .sf-price-note {
    text-align: center;
  }

  /* Mobile: center the purchase button (text is also centered) */
  body.single-download.postid-6507 .sf-hero .edd_download_purchase_form,
  body.single-download.postid-6507 .sf-hero .edd_purchase_submit_wrapper {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sf-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sf-specs-grid {
    grid-template-columns: 1fr;
  }

  .sf-two-col {
    grid-template-columns: 1fr;
  }

  .sf-signal-flow {
    gap: 4px;
    padding: 16px;
  }

  .sf-flow-block {
    font-size: 11px;
    padding: 6px 10px;
  }

  .sf-section {
    padding: 40px var(--sf-gutter);
  }
}

@media (max-width: 480px) {
  .sf-feature-grid {
    grid-template-columns: 1fr;
  }

  .sf-hero-title {
    font-size: 28px;
  }

  .sf-accordion-header {
    padding: 14px 16px;
    font-size: 14px;
  }

  .sf-accordion-content {
    padding: 16px;
  }
}

/* ══════════════════════════════════════════════════
   Astra Theme / EDD Overrides
   Hide default EDD elements, enforce dark background
   ══════════════════════════════════════════════════ */

/* Hide default EDD product thumbnail (hero has its own image) */
.single-download .edd_download_image,
.single-download .entry-header,
.single-download .ast-single-post-order > .ast-single-post-featured-section,
body.single-download.postid-6507 .ast-single-post-featured-section,
body.single-download.postid-6507 .post-thumb.ast-article-image-container--wide {
  display: none !important;
}

/* Ensure dark background on the entire page */
body.single-download.postid-6507 {
  background-color: #0a0a0a !important;
}

body.single-download.postid-6507 .site-content,
body.single-download.postid-6507 #content,
body.single-download.postid-6507 .ast-container,
body.single-download.postid-6507 .entry-content {
  background-color: transparent !important;
}

/* Remove default Astra content padding/margins */
body.single-download.postid-6507 .site-content > .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}

body.single-download.postid-6507 .entry-content {
  margin: 0 !important;
}

/* Reduce Astra's default header-to-content gap */
body.single-download.postid-6507 main,
body.single-download.postid-6507 .site-main {
  margin-top: 0 !important;
}

/* Alternating section backgrounds: odd = subtle dark overlay, even = transparent */
body.single-download.postid-6507 .elementor > .e-con:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.4) !important;
}
body.single-download.postid-6507 .elementor > .e-con:nth-child(even) {
  background-color: transparent !important;
}
/* Hero (first container): always transparent */
body.single-download.postid-6507 .elementor > .e-con:first-child {
  background-color: transparent !important;
}

/* Hide breadcrumbs on this page */
body.single-download.postid-6507 .ast-breadcrumbs-wrapper,
body.single-download.postid-6507 .ast-breadcrumbs-inner,
body.single-download.postid-6507 nav.breadcrumb-trail.breadcrumbs {
  display: none !important;
}

/* EDD purchase buttons: inherit global pill-style (30px radius, green border)
   No overrides needed — global CSS handles the design */

/* Hide post navigation at the bottom */
body.single-download.postid-6507 .ast-single-post-navigation,
body.single-download.postid-6507 .post-navigation,
body.single-download.postid-6507 nav.navigation.post-navigation {
  display: none !important;
}

/* Fix: Override global opacity (global CSS sets 0.8 on .edd-submit) */
body.single-download.postid-6507 .edd-submit,
body.single-download.postid-6507 .edd-add-to-cart {
  opacity: 1 !important;
}

/* Fix: Remove #main margins for full-width product page layout */
body.single-download.postid-6507 #main {
  margin: 0 !important;
  padding: 0 !important;
}

/* Fix: Hide the default EDD purchase form outside our custom layout */
body.single-download.postid-6507 .entry-content > .edd_download_purchase_form {
  display: none !important;
}

/* Hero: Left-align purchase button on desktop only */
@media (min-width: 769px) {
  body.single-download.postid-6507 .sf-hero .edd_download_purchase_form,
  body.single-download.postid-6507 .sf-hero .edd_purchase_submit_wrapper {
    display: flex !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

/* Hero button area: spacing below */
body.single-download.postid-6507 .sf-hero .edd_download_purchase_form {
  margin-bottom: 12px !important;
}

/* Featured image / Beitragsbild: rounded corners */
body.single-download.postid-6507 .edd_download_image img,
.edd_download_image img[src*="synthrilla-froggie"] {
  border-radius: 12px !important;
}

/* Bottom CTA: Slightly larger button, keep global pill style */
body.single-download.postid-6507 .sf-bottom-cta .edd-submit,
body.single-download.postid-6507 .sf-bottom-cta .edd-add-to-cart {
  padding: 16px 48px !important;
  font-size: 18px !important;
}

/* Remove EDD sidebar elements if present */
body.single-download.postid-6507 .edd_download_purchase_form .edd_price_options,
body.single-download.postid-6507 .edd-meta {
  color: var(--sf-text-muted, #888) !important;
}
