/* Builder container ONLY */
.ckb-container {
    max-width: 960px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 24px 32px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.16);
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;

}

/* Public kit must be fluid */
.ckb-public-kit .ckb-container {
    max-width: 100%;
    margin: 0 auto;
}


.ckb-container h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.ckb-container h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.ckb-container h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.ckb-container label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.ckb-container input[type="text"],
.ckb-container input[type="number"],
.ckb-container input[type="email"],
.ckb-container input[type="color"],
.ckb-container input[type="file"],
.ckb-container textarea,
.ckb-container select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    font-size: 0.95rem;
    margin-top: 4px;
    box-sizing: border-box;
    background: #ffffff;
}

.ckb-container textarea {
    resize: vertical;
}

.ckb-button {
    display: inline-block;
    border-radius: 999px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(135deg, #075238, #EEA713);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 8px;
    transition: transform 0.05s ease, box-shadow 0.1s ease, opacity 0.1s ease;
    box-shadow: 0 10px 20px rgba(7, 82, 56, 0.3);
}

.ckb-button:hover {
    opacity: 0.96;
    transform: translateY(-1px);
}

.ckb-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(7, 82, 56, 0.25);
}

.ckb-button.ckb-loading {
    opacity: 0.8;
    cursor: wait;
    position: relative;
}

.ckb-button.ckb-loading::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    border-top-color: rgba(255,255,255,1);
    animation: ckb-spin 0.7s linear infinite;
}

@keyframes ckb-spin {
    to { transform: rotate(360deg); }
}

.ckb-step {
    display: none;
}

.ckb-step-active {
    display: block;
}

.ckb-steps-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.ckb-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid #cbd5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #64748b;
}

.ckb-step-dot-active {
    border-color: #075238;
    background: #075238;
    color: #ffffff;
}

.ckb-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.ckb-two-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.ckb-service-row {
    border-radius: 14px;
    border: 1px dashed #cbd5f5;
    padding: 12px;
    margin-bottom: 12px;
    background: #f8fafc;
}

.ckb-helper-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 10px;
}

.ckb-testimonial-row {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 10px;
    margin-bottom: 10px;
    background: #f9fafb;
}

.ckb-preview-box {
    margin-top: 12px;
    padding: 16px;
    border-radius: 14px;
    background: #f1f5f9;
    font-size: 0.9rem;
}

.ckb-preview-note {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #64748b;
}

.ckb-message {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.ckb-message.ckb-success {
    background: #ecfdf3;
    color: #166534;
}

.ckb-message.ckb-error {
    background: #fef2f2;
    color: #b91c1c;
}

.ckb-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    font-size: 0.95rem;
}

.ckb-table th,
.ckb-table td {
    border: 1px solid #e2e8f0;
    padding: 8px 10px;
}

.ckb-table th {
    background: #f8fafc;
    text-align: left;
}

/* ===== Services & Rates POP ===== */
.ckb-services-section h3{
  font-size: 1.25rem;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #075238, #EEA713);
  box-shadow: 0 14px 26px rgba(7, 82, 56, 0.22);
}

.ckb-services-section .ckb-table{
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.ckb-services-section .ckb-table thead th{
  background: linear-gradient(135deg, rgba(7,82,56,0.95), rgba(238,167,19,0.95));
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  font-weight: 700;
}

.ckb-services-section .ckb-table td{
  background: #ffffff;
}

.ckb-services-section .ckb-table tbody tr:nth-child(even) td{
  background: #f8fafc;
}

.ckb-services-section .ckb-table td:last-child{
  font-weight: 800;
  color: #075238;
}


/* Public kit */

.ckb-public-kit {
    --ckb-accent: #075238;
    --ckb-bg: #f9f5ee;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background: radial-gradient(circle at top left, rgba(238,167,19,0.18), transparent 60%),
                radial-gradient(circle at bottom right, rgba(7,82,56,0.18), transparent 55%),
                var(--ckb-bg);
    padding: 32px 16px;
}

.ckb-public-inner {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px 26px 32px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    border-top: 6px solid var(--ckb-accent);
}

/* header */

.ckb-public-kit-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.ckb-public-photo {
    width: 180px;
    height: 180px;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid rgba(7, 82, 56, 0.35);
    background: #e2e8f0;
}

.ckb-public-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ckb-public-heading h1 {
    font-size: 2.1rem;
    margin: 0 0 4px;
}

.ckb-public-heading .ckb-tagline {
    font-size: 1rem;
    color: #475569;
}

.ckb-public-heading .ckb-meta-line {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 4px;
}

.ckb-public-heading .ckb-accent-pill {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(7, 82, 56, 0.08);
    color: #075238;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Contact + share row */

.ckb-public-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
}

.ckb-public-contact {
    font-size: 0.85rem;
    color: #475569;
}

.ckb-public-contact span {
    margin-right: 12px;
}

.ckb-public-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ckb-share-button {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    border: 1px solid rgba(148,163,184,0.7);
    background: #ffffff;
    cursor: pointer;
}

/* Stats row */

.ckb-public-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.ckb-public-stat-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 10px 12px;
    text-align: center;
}

.ckb-public-stat-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ckb-public-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 4px;
}

/* Sections */
.ckb-public-section {
  margin-top: 22px;
}

.ckb-public-section h3{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ckb-accent), #EEA713);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.10);
  letter-spacing: 0.02em;
}


/* Portfolio */

.ckb-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.ckb-portfolio-grid img {
    width: 100%;
    border-radius: 14px;
    height: 150px;
    object-fit: cover;
}

/* Testimonials */

.ckb-testimonial-item {
    background: #f8fafc;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.ckb-testimonial-name {
    margin-top: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #075238;
}

/* Charts */

.ckb-chart-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.ckb-chart-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 0.88rem;
}

.ckb-chart-row {
    display: grid;
    grid-template-columns: minmax(60px, 80px) 1fr 40px;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.ckb-chart-label {
    font-size: 0.8rem;
    color: #64748b;
}

.ckb-chart-bar {
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    height: 8px;
}

.ckb-chart-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #075238, #EEA713);
}

.ckb-chart-value {
    font-size: 0.8rem;
    text-align: right;
    color: #0f172a;
}

/* Pie/line variants (simple visual differences) */

.chart-pie .ckb-chart-bar {
    height: 22px;
    border-radius: 999px;
}

.chart-line .ckb-chart-bar {
    height: 3px;
}

/* Buttons row on public kit */

.ckb-public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.ckb-print-button {
    margin-left: 8px;
}

/* Footer note */

.ckb-footer-note {
    text-align: center;
    margin-top: 26px;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* Mobile */

@media (max-width: 768px) {
    .ckb-container {
        margin: 16px;
        padding: 16px;
    }
    .ckb-public-kit-header {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .ckb-public-photo {
        margin-bottom: 8px;
    }
    .ckb-public-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .ckb-public-actions {
        justify-content: center;
    }
    
    @media (max-width: 640px) {

  .ckb-public-kit {
    padding: 16px 10px;
  }

  .ckb-public-inner {
    padding: 16px;
    border-radius: 18px;
  }

  .ckb-public-heading h1 {
    font-size: 1.5rem;
  }

  .ckb-public-stat-value {
    font-size: 1rem;
  }

  .ckb-price-grid,
  .ckb-chart-grid {
    grid-template-columns: 1fr;
  }

  .ckb-public-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ckb-public-actions .ckb-button {
    width: 100%;
    text-align: center;
  }
}

    
}

/* Print – only show kit, hide site wrapper */


/* PRINT FIX — ONLY PRINT THE KIT */
@media print {

    /* Hide everything by default */
    body * {
        visibility: hidden !important;
        overflow: hidden !important;
    }

    /* SHOW ONLY the media kit wrapper */
    .ckb-public-kit, 
    .ckb-public-kit * {
        visibility: visible !important;
    }

#ckb-kit-capture, 
#ckb-kit-capture * {
    visibility: visible !important;
}


    /* Force the kit to be the only content printed */
    .ckb-public-kit {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: var(--ckb-bg, #ffffff) !important;
    }

    /* REMOVE site header, menu, footer */
    header, footer, .site-header, .site-footer, .elementor-location-header {
        display: none !important;
        visibility: hidden !important;
    }
}

/* ===== PDF / PNG CAPTURE MODE ===== */
.ckb-capture-mode {
    width: 1200px !important;
    max-width: 1200px !important;
}

.ckb-capture-mode .ckb-public-inner {
    box-shadow: none !important;
}

/* ===== EXPORT MODE (PDF / PNG) ===== */
body.ckb-exporting .ckb-export-mode {
    width: 1200px !important;
    max-width: 1200px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
}

.ckb-export-mode .ckb-public-inner {
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 32px !important;
}

.ckb-export-mode .ckb-public-kit {
    padding: 0 !important;
    background: #ffffff !important;
}

/* Prevent charts & images from shrinking */
.ckb-export-mode canvas,
.ckb-export-mode img {
    max-width: 100% !important;
    height: auto !important;
}

/* Theme background upgrade (uses variables set in PHP) */
.ckb-public-kit{
  background:
    radial-gradient(circle at top left, var(--ckb-bg1), transparent 60%),
    radial-gradient(circle at bottom right, var(--ckb-bg2), transparent 55%),
    var(--ckb-bg);
}

/* Card background theme support */
.ckb-public-inner{
  background: var(--ckb-card, #fff);
}

/* Muted text theme support */
.ckb-public-heading .ckb-tagline,
.ckb-public-heading .ckb-meta-line,
.ckb-helper-text{
  color: var(--ckb-muted, #64748b);
}

/* Price cards */
.ckb-price-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.ckb-price-card{
  background: #f8fafc;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
}
.ckb-theme-dark .ckb-price-card{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.ckb-price-title{
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.ckb-price-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 6px 0;
  border-top: 1px dashed rgba(148,163,184,0.35);
}
.ckb-price-row:first-of-type{ border-top: none; }
.ckb-price-mid{
  background: rgba(7,82,56,0.08);
  padding: 8px 10px;
  border-radius: 12px;
  border-top: none;
  margin: 6px 0;
}

/* Charts layout */
.ckb-chart-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.ckb-chart-box{
  background: #f8fafc;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
}
.ckb-theme-dark .ckb-chart-box{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.ckb-chart-title{
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Dark theme text */
.ckb-theme-dark .ckb-public-inner{
  color: #e5e7eb;
}
.ckb-theme-dark .ckb-table th,
.ckb-theme-dark .ckb-table td{
  border-color: rgba(255,255,255,0.10);
}

/* =========================================================
   SECTION HEADINGS – COLORFUL & CLEAR
========================================================= */

.ckb-public-section > h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  padding-left: 16px;
  position: relative;
  color: #075238;
}

.ckb-public-section > h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 70%;
  border-radius: 6px;
  background: linear-gradient(180deg, #075238, #EEA713);
}

/* =========================================================
   SERVICES & RATES – SALES SECTION (MAIN MONEY AREA)
========================================================= */

.ckb-services-section > h3 {
  background: linear-gradient(135deg, #075238, #EEA713);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 16px 32px rgba(7,82,56,0.35);
}

/* Premium rate table */
.ckb-services-section .ckb-table {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  margin-top: 18px;
  box-shadow: 0 20px 45px rgba(15,23,42,0.15);
}

.ckb-services-section .ckb-table thead th {
  background: linear-gradient(135deg, #075238, #EEA713);
  color: #ffffff;
  padding: 16px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
}

.ckb-services-section .ckb-table td {
  padding: 14px 14px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.ckb-services-section .ckb-table td:first-child {
  font-weight: 700;
  color: #075238;
}

.ckb-services-section .ckb-table td:last-child {
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

/* =========================================================
   MOBILE – STACK RATE TABLE BEAUTIFULLY
========================================================= */

@media (max-width: 640px) {

  .ckb-services-section .ckb-table thead {
    display: none;
  }

  .ckb-services-section .ckb-table,
  .ckb-services-section .ckb-table tbody,
  .ckb-services-section .ckb-table tr,
  .ckb-services-section .ckb-table td {
    display: block;
    width: 100%;
  }

  .ckb-services-section .ckb-table tr {
    background: #ffffff;
    margin-bottom: 14px;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(15,23,42,0.10);
  }

  .ckb-services-section .ckb-table td {
    padding: 6px 8px;
  }

  .ckb-services-section .ckb-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 2px;
  }
}

/* =========================================================
   EXPORT MODE – KEEP STYLE IN PDF / PNG
========================================================= */

.ckb-export-mode .ckb-services-section > h3 {
  background: linear-gradient(135deg, #075238, #EEA713) !important;
  color: #ffffff !important;
}

.ckb-export-mode .ckb-table thead th {
  background: linear-gradient(135deg, #075238, #EEA713) !important;
  color: #ffffff !important;
}

/* =========================================================
   MAKE ALL SECTION HEADINGS COLORFUL (WEB + PDF/PNG)
========================================================= */
.ckb-public-section h3{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 14px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--ckb-accent), #EEA713) !important;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  letter-spacing: 0.02em;
}

/* =========================================================
   SERVICES & RATES – MOST “SALESY” SECTION
========================================================= */
.ckb-services-section h3{
  font-size: 1.35rem;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #075238, #EEA713) !important;
  box-shadow: 0 16px 34px rgba(7,82,56,0.30);
}

.ckb-services-section .ckb-table{
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

.ckb-services-section .ckb-table thead th{
  background: linear-gradient(135deg, rgba(7,82,56,0.98), rgba(238,167,19,0.98)) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 12px;
  font-size: 0.85rem;
}

.ckb-services-section .ckb-table td{
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 12px;
  font-size: 0.95rem;
  background: #ffffff;
}

.ckb-services-section .ckb-table tbody tr:nth-child(even) td{
  background: #f8fafc;
}

.ckb-services-section .ckb-table td:first-child{
  font-weight: 800;
  color: #075238;
}

.ckb-services-section .ckb-table td:last-child{
  font-weight: 900;
  white-space: nowrap;
  color: #0f172a;
}

/* Mobile stacked table labels (we added data-label in PHP) */
@media (max-width: 640px){
  .ckb-services-section .ckb-table thead{ display:none; }
  .ckb-services-section .ckb-table,
  .ckb-services-section .ckb-table tbody,
  .ckb-services-section .ckb-table tr,
  .ckb-services-section .ckb-table td{
    display:block;
    width:100%;
  }
  .ckb-services-section .ckb-table tr{
    margin-bottom: 14px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
    padding: 10px;
    background:#fff;
  }
  .ckb-services-section .ckb-table td{
    border:none;
    padding: 8px 10px;
  }
  .ckb-services-section .ckb-table td::before{
    content: attr(data-label);
    display:block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color:#64748b;
    margin-bottom: 2px;
  }
}

/* Keep colors when printing (also helps some PDF engines) */
#ckb-kit-capture, .ckb-public-inner{
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* ✅ EXPORT FIX — MAKE HEADINGS SHOW IN PDF/PNG */
.ckb-export-mode .ckb-public-section h3{
  background: #075238 !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  border-radius: 14px !important;
  font-weight: 900 !important;
}

.ckb-export-mode .ckb-public-section h3::before{
  display:none !important;
}

/* ===== EXPORT HEADING FIX ===== */
.ckb-export-mode h3,
.ckb-export-mode .ckb-public-section h3 {
  background: linear-gradient(135deg, #075238, #EEA713) !important;
  color: #ffffff !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  display: inline-block !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

/* Remove decorative bars that break canvas */
.ckb-export-mode h3::before {
  display: none !important;
}


