.patrol-contents{
  .page_item .layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .blk{
        display: grid;
        grid-row: span 6;
        grid-template-rows: subgrid;
        width: 100%;
        gap : 0;
        .name{
          font-size: 18px;
        }
        .txt{
          padding: 0 0 1.2em;
        }
        .blue-round{
          text-align: center;
          border: 2px solid #0072bc;
          color:#0072bc;
          padding: 1px 10px;
          border-radius: 20px;
          width: 100%;
          margin: 0 auto;
        }
      }
  }

  .page_item .layout.layout_custom{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 175px;
    .blk{
      .blue-round{
        font-size: 16px;
      }
      p{
        font-size: 16px;
        padding: 1em 0;
      }
    }
  }


}
@media screen and (max-width:750px){
.patrol-contents{
  .page_item .layout {
      display: block;

      .blk{
        margin: 0 auto 3em;
        .txt{
          padding: 0 0 0.5em;
        }
        .blue-round{
          margin: 0.5em 0 0 0;
        }

      }
  }

  .page_item .layout.layout_custom{
    grid-template-columns: repeat(1, 1fr);
    .blk{
      .blue-round{
        font-size: 16px;
        margin: 0;
      }
      p{
        font-size: 16px;
        padding: 0.5em 0;
      }
    }
    .blk:first-child{
      margin-bottom: 6em;
    }
  }

}


}
