/* Start custom CSS */.card {
    width: 100%;
    background: var(--wh);
    border: 1px solid #dedede;
    border-radius: var(--br24);
    padding: 2.5rem 2.5rem 2rem;
  }
 
  .tag {
    display: inline-block;
    background: var(--c1);
    color: var(--c3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 1rem;
  }
 
  .headline {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: var(--c1);
    line-height: 1.25;
    margin-bottom: .35rem;
  }
 
  .headline .accent {
    background: var(--c2);
    padding: 0 4px;
  }
 
  .subhead {
    font-size: 13px;
    color: #666;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--c2);
    padding-left: 10px;
    line-height: 1.5;
  }
 
  /* CHART */
  .chart-area {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 280px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
  }
 
  /* grid lines */
  .chart-area::before {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    background-image: repeating-linear-gradient(
      to top,
      transparent,
      transparent calc(25% - 1px),
      rgba(26,46,90,.08) calc(25% - 1px),
      rgba(26,46,90,.08) 25%
    );
    pointer-events: none;
  }
 
  .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
  }
 
  .bar-outer {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
  }
 
  .bar {
    width: 100%;
    max-width: 72px;
    border-radius: 0;
    height: 0;
    transition: height 1.1s cubic-bezier(.22,1,.36,1);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
 
  .bar.type-protected { background: var(--c2); }
  .bar.type-unprotected { background: var(--c1); }
 
  .bar-pct {
    position: absolute;
    top: -26px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
 
  .bar.type-protected .bar-pct { color: var(--c1); }
  .bar.type-unprotected .bar-pct { color: var(--c1); }
 
  /* axis line */
  .axis-line {
    width: 100%;
    height: 2px;
    background: var(--c1);
    margin-bottom: 0;
  }
 
  .labels {
    display: flex;
    gap: 16px;
    margin-top: 14px;
  }
 
  .col-label {
    flex: 1;
    text-align: center;
    font-size: 11.5px;
    color: var(--c1);
    line-height: 1.35;
    font-weight: 500;
  }
 
  /* legend */
  .legend {
    display: flex;
    gap: 24px;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1.5px solid rgba(26,46,90,.15);
    flex-wrap: wrap;
  }
 
  .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #444;
  }
 
  .legend-dot {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border: 1.5px solid var(--c1);
  }
 
  .legend-dot.protected { background: var(--c2); }
  .legend-dot.unprotected { background: var(--c1); }
 
  .note {
    font-size: 11px;
    color: #999;
    margin-top: 1.25rem;
    line-height: 1.5;
  }

  @media (max-width: 480px) {

 
    .card {
      padding: 1.25rem 1rem 1.25rem;
    }
 
    .headline {
      font-size: 17px;
    }
 
    .subhead {
      font-size: 12px;
      margin-bottom: 1.75rem;
    }
 
    .chart-area {
      height: 320px;
      gap: 6px;
    }
 
    .bar {
      max-width: 100%;
    }
 
    .bar-pct {
      font-size: 10px;
      top: -19px;
      letter-spacing: -.02em;
    }
 
    .col-label {
      font-size: 9px;
      line-height: 1.25;
    }
 
    .labels {
      gap: 6px;
      margin-top: 10px;
    }
 
    .legend {
      flex-direction: column;
      gap: 10px;
      margin-top: 1.25rem;
    }
 
    .legend-item {
      font-size: 11px;
    }
 
    .note {
      font-size: 10px;
    }
  }/* End custom CSS */