/**
 * ----------------------------------------------------------------------------
 * Custom Fonts
 * ----------------------------------------------------------------------------
 */

/* inconsolata-500 - latin */
@font-face {
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 500;
    src: url('/wp-content/themes/medienimpuls/fonts/fonts/inconsolata-v31-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
         url('/wp-content/themes/medienimpuls/fonts/fonts/inconsolata-v31-latin-500.woff') format('woff'), /* Modern Browsers */
  }
  
  /* inconsolata-800 - latin */
  @font-face {
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 800;
    src: url('/wp-content/themes/medienimpuls/fonts/fonts/inconsolata-v31-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
         url('/wp-content/themes/medienimpuls/fonts/fonts/inconsolata-v31-latin-800.woff') format('woff'), /* Modern Browsers */
  }
  
  /**
   * ----------------------------------------------------------------------------
   * Highlight Number
   * ----------------------------------------------------------------------------
   */
  
  .highlight-number {
    line-height: 1;
    text-align: center;
    position: relative;
  }
  
  .highlight-number__number {
    font-family: 'Inconsolata', 'Courier New', monospace;
    font-size: 7rem;
    font-weight: 800;
  }
  
  @media (min-width: 400px) and (max-width: 1200px){
    .highlight-number__number {
      font-size: calc(94px + (172 - 94) * ((100vw - 400px) / (1200 - 400)));
    }
  }
  
  @media (min-width: 1200px) {
    .highlight-number__number {
      font-size: 18rem;
    }
  }
  
  .highlight-number__number-wrap {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    color: #ecf9f8;
    margin: 1%;
  }
  
  .highlight-number__number-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #131b23;
    width: 84%;
    min-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 320px;
  }
  
.hightlight-number__title {
    color: #808a8e;
}

  .highlight-number__symbol {
    font-size: 0.65em;
  }