/*
 Theme Name: ConsultingWP Child
 Theme URI: https://example.com/
 Description: Child theme for ConsultingWP – Dallas Stump Consulting
 Author: Dallas Stump
 Template: consultingwp
 Version: 1.3
*/

/* =========================================================
   Global reset / guardrails
   ========================================================= */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

#page, #content {
  margin: 0 !important;
  padding: 0 !important;
}

body.admin-bar { margin-top: 0 !important; }

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

img { max-width: 100%; height: auto; }

/* =========================================================
   DSC base
   ========================================================= */
.dsc-home {
  background-color: #020617;
  color: #e5e7eb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* Scope container sizing to YOUR sections so you don’t fight theme globals */
.dsc-section .container,
.dsc-section-alt .container,
.dsc-section-cta .container,
#dsc-strategy-call .container,
.ds-assessment-wrap {
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Neutralize theme/Bootstrap row/col drift inside DSC sections */
.dsc-home .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important; /* prevents “flex row” surprises */
}

.dsc-home [class*="col-"],
.dsc-home .col-md-10 {
  float: none !important;
  width: 100% !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =========================================================
   HERO
   ========================================================= */
.dsc-hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top left, #1d4ed8 0, #5b21b6 40%, #000000 85%);
  color: #ffffff;
}

.dsc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.dsc-hero-logo { max-width: 180px; height: auto; display: block; }

.dsc-hero-content { flex: 1 1 auto; max-width: 560px; }
.dsc-hero-title { font-size: 3rem; font-weight: 700; margin: 0 0 0.25em; }
.dsc-hero-subtitle { font-size: 1.6rem; font-weight: 500; margin: 0 0 0.75em; color: #bfdbfe; }
.dsc-hero-tagline { font-size: 1.2rem; font-weight: 500; margin: 0 0 0.75em; color: #e0e7ff; }
.dsc-hero-text { font-size: 1rem; margin: 0; max-width: 640px; }

.dsc-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

/* =========================================================
   Buttons
   ========================================================= */
.dsc-btn-cta {
  display: inline-block;
  padding: 0.9em 2.2em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #5b21b6, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  border: none;
  cursor: pointer;
}

.dsc-btn-cta:hover,
.dsc-btn-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.7);
  opacity: 0.95;
  color: #ffffff;
}

.dsc-btn-cta-main { white-space: nowrap; }

.dsc-btn-cta-secondary {
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(147,197,253,0.55);
  box-shadow: none;
}
.dsc-btn-cta-secondary:hover,
.dsc-btn-cta-secondary:focus {
  background: rgba(2, 6, 23, 0.45);
  border-color: rgba(147,197,253,0.85);
}

/* =========================================================
   Sections + dividers
   ========================================================= */
.dsc-section,
.dsc-section-alt,
.dsc-section-cta { position: relative; }

.dsc-section { padding: 80px 0; background-color: #020617; }
.dsc-section-alt { padding: 80px 0; background: radial-gradient(circle at top, #020617 0, #020617 40%, #000000 100%); }
.dsc-section-cta { padding: 80px 0; background: linear-gradient(135deg, #1d4ed8, #5b21b6); }

.dsc-section::before,
.dsc-section-alt::before,
.dsc-section-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5b21b6, #1d4ed8, #5b21b6);
  background-size: 200% 100%;
  animation: dsc-divider-shift 6s linear infinite;
  opacity: 0.7;
}

.dsc-section:first-of-type::before { display: none; }

@keyframes dsc-divider-shift {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.dsc-section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center !important;
  margin: 0 0 0.5em;
  color: #e5e7eb;
}

.dsc-section-title-light { color: #ffffff; }

.dsc-section-intro {
  font-size: 1.06rem;
  margin: 0 0 1em;
  text-align: center !important;
  color: #cbd5f5;
}

.dsc-section-text {
  font-size: 1rem;
  line-height: 1.7;
  margin: 18px auto 0;
  text-align: center;
  color: #e5e7eb;
  max-width: 980px;
}

/* =========================================================
   Problems section (image + bullets)
   ========================================================= */
.container{
    text-align: center;
}
.dsc-problems-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.dsc-problems-media { max-width: 980px; }

.dsc-infographic-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #111827;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   Centered bulleted lists - COMPLETE FIX
   ========================================================= */

/* Kill any theme interference */
.dsc-section ul,
.dsc-section-alt ul {
  margin: 0 !important;
  padding: 0 !important;
}

/* The problems grid container */
.container .dsc-problems-list {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 0 20px !important;
}

/* The centering wrapper */
.dsc-problem-list-centered {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* The actual UL */
.dsc-problem-list-centered ul {
  display: block !important;
  text-align: left !important;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
  width: fit-content !important;
  max-width: 600px !important;
}

/* List items */
.dsc-problem-list .dsc-problem-list-centered ul li {
  position: relative !important;
  text-align: left !important;
  padding-left: 1.5em !important;
  margin-bottom: 0.6em !important;
  color: #e5e7eb !important;
  font-size: 0.98rem !important;
  line-height: 1.5 !important;
  white-space: normal !important;
}

/* Bullet points */
.dsc-problem-list-centered li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.55em !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #5b21b6, #1d4ed8) !important;
  flex-shrink: 0 !important;
}

/* Specific targeting for Who I Work With section */
#who-i-work-with .dsc-problems-list {
  display: block !important;
  width: 100% !important;
}

#who-i-work-with .dsc-problem-list-centered {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

#who-i-work-with .dsc-problem-list-centered ul {
  width: fit-content !important;
  margin: 0 auto !important;
}

/* Tablet adjustments */
@media (max-width: 991.98px) {
  .dsc-problems-list {
    padding: 0 30px !important;
  }
  
  .dsc-problem-list-centered ul {
    max-width: 550px !important;
  }
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .dsc-problems-list {
    padding: 0 20px !important;
  }
  
  .dsc-problem-list-centered ul {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .dsc-problem-list-centered li {
    font-size: 0.95rem !important;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  .dsc-problems-list {
    padding: 0 16px !important;
  }
}

/* Remove surprise “extra space” around lists caused by theme defaults */
.dsc-problem-list-centered ul,
.dsc-problem-list-centered li,
#problems ul,
#problems li {
  margin-top: 0 !important;
}

/* =========================================================
   Services cards
   ========================================================= */
.dsc-cards {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 40px; /* tighter than 60 */
}

.dsc-card {
  background: #020617;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #111827;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dsc-card h3 { font-size: 1.2rem; margin: 0 0 0.5em; color: #e0e7ff; }
.dsc-card p { font-size: 0.98rem; margin: 0; color: #d1d5db; }

.dsc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.7);
  border-color: #1d4ed8;
}

/* =========================================================
   About section
   ========================================================= */
.dsc-about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.dsc-about-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid #111827;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  display: block;
}

#about .dsc-section-title,
#about .dsc-section-intro { text-align: left !important; }

#about .dsc-section-text {
  text-align: left !important;
  margin: 10px 0 0;
  max-width: none;
}

/* =========================================================
   Bottom CTA
   ========================================================= */
#bottom-cta { text-align: center; }

#bottom-cta .dsc-bottom-cta { max-width: 980px; margin: 0 auto; }

#bottom-cta .dsc-bottom-cta-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#bottom-cta .dsc-bottom-cta-subtext {
  margin-top: 14px;
  font-size: 0.98rem;
  color: #e0e7ff;
  opacity: 0.95;
}

/* =========================================================
   Strategy Call Form (Shortcode) – hardened
   ========================================================= */
#dsc-strategy-call { background: transparent; }

/* Kill theme form layout inside our section */
#dsc-strategy-call form,
#dsc-strategy-call fieldset,
#dsc-strategy-call .dsc-form,
#dsc-strategy-call .dsc-form * {
  box-sizing: border-box !important;
}

.dsc-form-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 28px;
  border-radius: 18px;
  border: 1px solid #111827;
  background: radial-gradient(circle at top left, rgba(29,78,216,0.12), rgba(91,33,182,0.10), rgba(2,6,23,0.95));
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.dsc-form { margin-top: 20px; }

#dsc-strategy-call .dsc-form-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

#dsc-strategy-call .dsc-field { width: 100% !important; }

#dsc-strategy-call .dsc-field label {
  display: block !important;
  font-weight: 600 !important;
  margin: 0 0 8px !important;
  color: #e5e7eb !important;
}

#dsc-strategy-call .dsc-field input,
#dsc-strategy-call .dsc-field textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: block !important;
  border-radius: 12px !important;
  border: 1px solid #111827 !important;
  background: rgba(2,6,23,0.75) !important;
  color: #e5e7eb !important;
  padding: 12px 12px !important;
  outline: none !important;
}

#dsc-strategy-call .dsc-field textarea { resize: vertical; }

#dsc-strategy-call .dsc-field input:focus,
#dsc-strategy-call .dsc-field textarea:focus {
  border-color: #1d4ed8 !important;
  box-shadow: 0 0 0 3px rgba(29,78,216,0.25) !important;
}

.dsc-form-success {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
  color: #e5e7eb;
}

.dsc-form-errors {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.10);
  color: #e5e7eb;
}

.dsc-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Mini hero inside Strategy Call page */
.dsc-page-hero {
  padding: 34px 0;
  background: radial-gradient(circle at top left, #1d4ed8 0, #5b21b6 40%, #000000 85%);
  border-bottom: 1px solid #111827;
  color: #ffffff;
}

.dsc-page-hero--inline {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
}

.dsc-page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dsc-page-hero-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.dsc-page-hero-logo { width: 64px; height: 64px; object-fit: contain; display: block; }

.dsc-page-hero-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.dsc-page-hero-subtitle {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: #bfdbfe;
}

.dsc-page-hero-nav-link {
  display: inline-block;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(147,197,253,0.55);
  background: rgba(2,6,23,0.25);
}

/* =========================================================
   Assessment plugin form styling (ds-*) – hardened
   ========================================================= */
.ds-assessment-wrap {
  max-width: 1100px;
  margin: 0 auto !important;
  padding: 40px 20px !important;
}

.ds-assessment-form {
  max-width: 980px;
  margin: 0 auto !important;
}

/* Card */
.ds-card {
  margin: 0 auto 18px !important;
  padding: 26px 22px !important;
  border-radius: 18px !important;
  border: 1px solid #111827 !important;
  background: rgba(2,6,23,0.72) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35) !important;
  color: #e5e7eb !important;
}

.ds-card h2, .ds-card h3 { margin: 0 0 10px !important; color: #e0e7ff !important; }
.ds-card p { margin: 0 0 10px !important; color: #cbd5f5 !important; }

/* Name/email grid */
.ds-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 14px !important;
  margin-top: 12px !important;
}

.ds-field label {
  display: block !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  color: #e5e7eb !important;
}

.ds-field input {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  border-radius: 12px !important;
  border: 1px solid #111827 !important;
  background: rgba(2,6,23,0.75) !important;
  color: #e5e7eb !important;
  padding: 12px !important;
  outline: none !important;
}

/* Questions */
.ds-question { padding: 14px 0 !important; border-top: 1px solid rgba(147,197,253,0.10) !important; }
.ds-q-label { margin: 0 0 10px !important; color: #e5e7eb !important; }

/* Scale buttons */
.ds-scale {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.ds-radio {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(147,197,253,0.25) !important;
  background: rgba(2,6,23,0.35) !important;
  cursor: pointer !important;
}

.ds-radio input { accent-color: #1d4ed8; }

.ds-btn {
  display: inline-block !important;
  padding: 0.9em 2.2em !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  background: linear-gradient(90deg, #5b21b6, #1d4ed8) !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
}

.ds-note { margin-top: 10px !important; opacity: 0.9 !important; }
.ds-results-list { margin: 12px 0 0 !important; padding-left: 18px !important; }
.ds-cta { margin-top: 14px !important; }

/* =========================================================
   Footer credits (injected via wp_footer)
   ========================================================= */
.dsc-footer-credits {
  padding: 18px 0;
  background: #020617;
  border-top: 1px solid #111827;
  color: #cbd5f5;
  font-size: 0.95rem;
  text-align: center;
}

.dsc-footer-link { color: #bfdbfe; text-decoration: none; }
.dsc-footer-link:hover { color: #ffffff; text-decoration: underline; }

/* Hide theme “Powered by WordPress” */
.site-info,
.footer-copyright,
.footer-bottom .site-info,
.footer-bottom .copyright,
.footer-bottom .powered-by,
.powered-by,
#colophon .site-info { display: none !important; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991.98px) {
  .dsc-problems-grid { grid-template-columns: 1fr; }
  .dsc-problems-list { justify-content: center; }

  .dsc-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 22px; }
  
  .dsc-section-head .dsc-section-title{
      text-align: center;
  }

  #dsc-strategy-call .dsc-form-grid { grid-template-columns: 1fr !important; }
  .ds-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 767.98px) {
  /* tighter mobile spacing overall */
  .dsc-section, .dsc-section-alt, .dsc-section-cta { padding: 44px 0; }

  .dsc-section::before,
  .dsc-section-alt::before,
  .dsc-section-cta::before {
    width: 130px;
    opacity: 0.6;
  }

  .dsc-hero { padding: 72px 0 48px; }
  .dsc-hero-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .dsc-hero-logo { max-width: 150px; }
  .dsc-hero-title { font-size: 2.2rem; }
  .dsc-hero-subtitle { font-size: 1.3rem; }

  .dsc-btn-cta-main { white-space: normal; }

    .dsc-section-head .dsc-section-title{
      text-align: center;
  }

  .dsc-cards { grid-template-columns: 1fr; row-gap: 18px; }

  /* Reduce “mystery” gaps around infographic/list on mobile */
  .dsc-problems-grid { margin-top: 18px; gap: 16px; }
  .dsc-problems-media { margin-bottom: 0 !important; }
  .dsc-problem-list-centered { margin-top: 0 !important; }
  .dsc-section-text { margin-top: 14px; }

  /* Who I Work With list: keep centered block but give breathing room */
  #who-i-work-with .dsc-problem-list-centered { padding: 0 8px; }


  /* About: stack nicely */
  .dsc-about-grid { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  #about .dsc-section-title,
  #about .dsc-section-intro,
  #about .dsc-section-text { text-align: left !important; }

  /* Strategy mini hero: stack */
  .dsc-page-hero-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Ultra-small phones */
@media (max-width: 420px) {
  .dsc-btn-cta { width: 100%; text-align: center; }
  .dsc-hero-cta-wrap { width: 100%; }
}
/* =========================================================
   Logo sizing (Strategy Call + Assessment)
   Match homepage logo scale
   ========================================================= */

/* Strategy Call mini-hero logo (in your shortcode markup) */
.dsc-page-hero-logo {
  width: 56px !important;   /* tweak to 48px if you want smaller */
  height: 56px !important;
  max-width: 56px !important;
  object-fit: contain !important;
}

/* If a WP Site Logo block appears on Assessment/other pages */
.ds-assessment-wrap .wp-block-site-logo img,
.ds-assessment-wrap .custom-logo,
.ds-assessment-wrap .custom-logo-link img {
  max-width: 56px !important;
  width: 56px !important;
  height: auto !important;
  display: block !important;
}

/* If the theme outputs a logo inside a page hero area */
.dsc-page-hero .wp-block-site-logo img,
.dsc-page-hero .custom-logo,
.dsc-page-hero .custom-logo-link img {
  max-width: 56px !important;
  width: 56px !important;
  height: auto !important;
  display: block !important;
}
.dsc-section-head .dsc-section-title{
      text-align: center;
  }

/* Mobile: slightly smaller */
@media (max-width: 767.98px) {
  .dsc-page-hero-logo {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
  }


  .ds-assessment-wrap .wp-block-site-logo img,
  .ds-assessment-wrap .custom-logo,
  .ds-assessment-wrap .custom-logo-link img,
  .dsc-page-hero .wp-block-site-logo img,
  .dsc-page-hero .custom-logo,
  .dsc-page-hero .custom-logo-link img {
    width: 48px !important;
    max-width: 48px !important;
  }
}
/* =========================================================
   FIX: Mobile hero CTA buttons spacing + sizing
   ========================================================= */
@media (max-width: 767.98px) {
  .dsc-hero-cta-wrap {
    width: 100%;
    align-items: stretch;   /* makes buttons line up clean */
    gap: 15px;              /* more breathing room */
    margin-top: 10px;
  }

  .dsc-hero-cta-wrap .dsc-btn-cta {
    width: 100%;
    text-align: center;
    padding: 1em 1.4em;     /* slightly chunkier tap target */
    line-height: 1.25;
  }
}

/* =========================================================
   FIX: Strategy Call page giant header image (theme title area)
   Only applies when your body class is present
   ========================================================= */
.dsc-has-strategy-form .page-header,
.dsc-has-strategy-form .page-title,
.dsc-has-strategy-form .page-title-area,
.dsc-has-strategy-form .title_box,
.dsc-has-strategy-form .stm-titlebox,
.dsc-has-strategy-form .stm_titlebox,
.dsc-has-strategy-form .stm_breadcrumbs_unit,
.dsc-has-strategy-form .breadcrumbs,
.dsc-has-strategy-form .entry-header {
  display: none !important;
}

/* =========================================================
   FIX: Prevent featured images from taking over pages
   (helps Assessment + other internal pages)
   ========================================================= */
img.wp-post-image,
img.attachment-post-thumbnail,
.post-thumbnail img {
  max-height: 260px;
  width: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  img.wp-post-image,
  img.attachment-post-thumbnail,
  .post-thumbnail img {
    max-height: 180px;
  }
}

/* =========================================================
   CONFIRM: Mini-hero logo size (Strategy Call shortcode)
   ========================================================= */
.dsc-page-hero-logo {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  object-fit: contain !important;
}

@media (max-width: 767.98px) {
  .dsc-page-hero-logo {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
  }
}
