/*---------------------
  Latest
-----------------------*/

.latest {
    padding-top: 120px;
    padding-bottom: 90px;
  }
  
  .latest__btn {
    text-align: right;
  }
  
  .latest__item {
    -webkit-box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.1);
    box-shadow: 0px 15px 60px rgba(13, 13, 13, 0.1);
    margin-bottom: 30px;
  }
  
  .latest__item img {
    min-width: 100%;
  }
  
  .latest__item:hover a {
    padding-left: 0;
  }
  
  .latest__item:hover a:after {
    left: auto;
    right: -50px;
  }
  
  .latest__item__text {
    padding-top: 25px;
    background: #ffffff;
    padding: 25px 35px 20px;
  }
  
  .latest__item__text span {
    color: #b7b7b7;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
  }
  
  .latest__item__text h4 {
    color: #111111;
    font-size: 22px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
  }
  
  .latest__item__text a {
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    position: relative;
    padding-left: 40px;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
  }
  
  .latest__item__text a:after {
    position: absolute;
    left: 0;
    top: 8px;
    height: 1px;
    width: 30px;
    background: #dfa667;
    content: "";
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
  }
  
  .latest__item__pic {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .latest__item__pic img {
    min-width: 100%;
    transition: filter 0.5s ease-in-out;
  }
  
  .latest__item__pic:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
    /* Add other styles as needed */
  }