.cm-press-container{
    width: 100vw;
    height: 270px;
    overflow-x: scroll;
    background-color: rgb(244,245,244);
  }
  
  .cm-press-title{
    margin-top: 10px;
    margin-left: 5px;
    font-size: 1.5rem;
    font-family: 'Roboto',sans-serif;
    font-weight: 600;
    border-left: solid 20px #1A391F;
  }
  
  .cm-press-title p{
    margin-left: 10px;
  }
  
  .cm-press-inner-container{
    width: fit-content;
    height: 200px;
    display: flex;
  }
  
  .cm-press-item {
    width: 400px;
    height: 200px;
    background-color: rgb(244,245,244);
    margin: 20px;
    text-decoration: none;
    font-family: 'Roboto',sans-serif;
    color: #000;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    transition: all 0.25s;
    display: flex;
  }
  
  .cm-press-item:hover{
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
  }
  
  .cm-press-item:active{
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
  }
  
  .cm-press-item-image{
    width: 180px;
    height: 180px;
    margin: 10px;
  }
  
  .cm-press-item-image img{
    width: 100%;
    height: 100%;
  }
  
  .cm-press-item-content{
    width: 180px;
    height: 180px;
    margin: 10px;
  }
  
  .cm-press-item-content-title{
    height: 44px;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .cm-press-item-content-content{
    font-size: 0.8rem;
    height: 134px;
    margin-top: 2px;
    overflow: hidden;
  }
  
  @media screen and
    (max-width: 767px){
      
      .cm-press-container{
        height: 500px;
      }
      
      .cm-press-item{
        flex-direction: column;
        width: 200px;
        height: 400px;
      }
  }