@charset "utf-8";
/* CSS Document */


	  .lstng {width: 100%; margin-bottom: 45px;}
    .pte h2 {
    margin-bottom: 40px;
    border-bottom: 1px solid #d7c6c6;
    padding-bottom: 20px;
    position: relative;
	 margin-top: 40px;
		    font-size: 18px;
	  }

    .places {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
		    margin-top: 20px;
    }

    .places a {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    border: 1px solid #BAD5E6;
    border-radius: 10px;
       background: #f0f6fa;
    color: #000;
    font-weight: 500;
    transition: all 0.4s ease;
    width: 24%;
    text-align: center;
    font-size: 14px;
}

    .places a:hover {
      background: #d5efff;
      color: #000;
      border-color: #d5efff;
      transform: translateY(-3px);
    
    }
	  .pte {position: relative}
    .line {
    width: 200px;
    height: 5px;
    background: #2196f3;
    margin-bottom: 20px;
    position: absolute;
     top: 45px;}
	  
	
	  
	    /* Tablet View */
    @media (max-width: 992px) {
      .places a {
        flex: 1 1 calc(50% - 15px); /* 2 items per row */
      }
    }

    /* Mobile View */
    @media (max-width: 600px) {
      .places a {
        flex: 1 1 100%; /* full width */
      }
    }
	  
	  
	  #moreContent {
    display: none;
    margin-top: 10px;
  }
  #viewMoreBtn {
    padding: 10px 21px;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 20px;
    border: none;
    background-color: #2196F3;
    color: #fff;
    font-size: 16px;
}
	  
	  #viewMoreBtn:hover {
    background: #1789e3;
}
	  


