
  .personal-timer-wrapper { /* Используем класс вместо ID */
    text-align: center;
    font-family: 'Raleway', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
  }

  .timer-message {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .timer { /* Класс */
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
  }

  .timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .timer-number {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
  }

  .timer-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
  }

  @media screen and (min-width: 980px) {
    .personal-timer-wrapper .timer-message { /* Уточняем через класс */
      font-size: 22px;
    }

    .personal-timer-wrapper .timer-number {
      font-size: 64px;
    }

    .personal-timer-wrapper .timer-label {
      font-size: 18px;
    }
  }

