.head-image-banner {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    margin: 2em auto;
    max-width: 700px;
    margin-bottom: 20px;
  }
  .head-image-banner-header {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
  }
  .head-image-banner-score {
    background: #7ed957;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding: 0.2em 0 !important;
    letter-spacing: 0.02em;
  }
  .head-image-banner-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    padding: 1.2em 1.5em 0.5em 1.5em;
  }
  .head-image-banner-scorebox {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 0.7em 0.5em;
    min-width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .head-image-banner-scorebox-label {
    color: #222;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0.2em;
  }
  .head-image-banner-scorebox-value {
    color: #fff;
    background: #7ed957;
    border-radius: 6px;
    padding: 0.2em 0.7em;
    font-weight: bold;
    margin-top: 0.2em;
    display: inline-block;
    min-width: 2.5em;
  }
  .head-image-banner-scorebox-value.orange {
    background: #ffb84d;
    color: #fff;
  }
  .head-image-banner-proscons-wrap {
    display: flex;
    gap: 2em;
    justify-content: space-between;
    padding: 1.2em 1.5em 1.5em 1.5em;
  }
  .head-image-banner-proscons {
    flex: 1 1 45%;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1.2em 1em 1em 1.5em;
    min-width: 220px;
  }
  .head-image-banner-proscons h4 {
    margin-top: 0;
    font-size: 1.1em;
    color: #7ed957;
    font-weight: 700;
    margin-bottom: 0.7em;
  }
  .head-image-banner-proscons.cons h4 {
    color: #ff4d4d;
  }
  .head-image-banner-proscons ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .head-image-banner-proscons ul li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.7em;
    font-size: 1em;
    line-height: 1.5;
  }
  .head-image-banner-proscons ul li:before {
    content: "\\2714";
    color: #7ed957;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0.1em;
  }
  .head-image-banner-proscons.cons ul li:before {
    content: "\\274C";
    color: #ff4d4d;
  }
  .head-image-banner-review-summary {
    background: #f6f8fa;
    padding: 1em 1.2em;
    margin: 1.2em 1.5em 0 1.5em;
    border-radius: 8px;
  }
  .head-image-banner-review-heading {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 0.4em;
    color: #222;
  }
  .head-image-banner-review-text {
    font-size: 0.98em;
    color: #444;
    line-height: 1.6;
  }
  .head-image-banner-review-summary-bottom-pad {
    padding-bottom: 1.5em;
    margin-bottom: 25px;
  }
  @media (max-width: 900px) {
    .head-image-banner { max-width: 98vw; }
    .head-image-banner-scores { grid-template-columns: 1fr 1fr; }
      .head-image-banner-score {font-size: 1.2em !important;}
  }
@media (max-width: 700px) {
      .head-image-banner-proscons-wrap { flex-direction: column; gap: 1em; }
      .head-image-banner-scores { flex-direction: column; gap: 0.5em; }
      .head-image-banner-scorebox { flex-direction: row; justify-content: space-between; align-items: center; min-width: 0; padding: 0.5em 0.7em; }
      .head-image-banner-scorebox-label { font-size: 0.98em; }
      .head-image-banner-scorebox-value, .head-image-banner-scorebox-value.orange { font-size: 1em; margin-left: 0.7em; padding: 0.18em 0.6em; }
    }
  .head-image-banner-proscons ul > li {
    list-style: none !important; /* or whatever you want */
}

@media (max-width: 700px) {
    .mobile-sticky-cta {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      z-index: 9999;
      background: #7e5fff;
      text-align: center;
      padding: 0.7em 0;
      box-shadow: 0 2px 12px rgba(0,0,0,0.10);
      transition: transform 0.2s;
    }
    .mobile-sticky-cta-btn {
      color: #fff;
      background: #6c47e6;
      border-radius: 8px;
      padding: 0.7em 2em;
      font-weight: 700;
      text-decoration: none;
      font-size: 1.1em;
      display: inline-block;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
  }
  @media (min-width: 701px) {
    .mobile-sticky-cta { display: none !important; }
  }