    .counter {
        background-color: white;
        background-position: center;
        width: 100%;
        
        font-family: bernard;
        font-size: clamp(1rem, 6vw, 5rem);
        text-align: center;
        
        border-width: 5px;
        border-style: solid;
        border-color: #EEEEEE;
        box-sizing: border-box;
    }
    
    .counter > div {
        background-image: url('/images/counter-bg.jpg');
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        aspect-ratio: 966 / 277;
        -webkit-background-clip: text; /* Safari/Chrome prefix */
            background-clip: text;
          
        color: transparent;                
    }

    .stat-number {
      font-variant-numeric: tabular-nums;
      -moz-font-feature-settings: "tnum";
      -webkit-font-feature-settings: "tnum";
      font-feature-settings: "tnum";
      
      display: inline-block; /* Fontos a fix szélességhez! */
      text-align: center;    /* Vagy right, ha azt szereted */
    }
