.section_title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2em 0 20px;
  }
  
  .section_title-live-indicator {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
  }
  
  .section_title span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
  }
  
  .section_title-divider {
    flex-grow: 1;
    height: 2px;
    background-color: #fff;
  }
  
  @media (max-width: 768px) {
    .section_title span {
      font-size: 1.2rem;
    }
  
    .section_title-divider {
      height: 1px;
    }
  }
  