* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #f2f2f2;
    font-family: "Work Sans", sans-serif;
  }
  
  img {
    width: 30px;
    height: 30px;
  }
  
  p {
    cursor: default;
  }
  
  .container {
    padding: 0 48px;
  }
  
  .items-wrapper {
    max-width: 1050px;
    margin: 0 auto 150px;
  }
  
  .title {
    font-size: 26px;
    color: #004fa3;
    display: inline-block;
    margin-right: 10px;
  }
  
  .title-secondary {
    margin: 65px 0 25px;
  }
  
  .title-wrapper {
    position: relative;
    width: fit-content;
    margin-top: 50px;
  }
  
  .title-badge {
    position: relative;
  }
  
  .title-badge::after {
    content: "beta";
    position: absolute;
    right: -32px;
    top: -2px;
    background: #174ea0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    display: block;
    padding: 1px 2px;
    border-radius: 5px;
  }
  
  .location {
    color: #004fa3;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    margin: 10px 0 30px;
  }
  
  .status-container {
    box-shadow: 0px 1px 2px 0px #00000033;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    min-width: 400px;
  }
  
  .status-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
    column-gap: 150px;
    margin-top: 20 px;
  }
  
  .status-text {
    color: #004fa3;
    font-size: 18px;
    font-weight: 500;
  }
  
  @media (max-width: 1024px) {
    .status-group {
      grid-template-columns: 1fr;
    }
  
    .status-container {
      min-width: auto;
    }
  }
  
  @media (max-width: 550px) {
    .status-group {
      grid-template-columns: 1fr;
    }
  
    .status-container {
      min-width: auto;
    }
  
    .container {
      padding: 0 20px;
    }
  }
