@media (max-width: 768px) {
    .colWidth {
        width: 100% !important; /* Apply width 100% for mobile view */
        margin-top: 10px;
    }
}

.colWidth {
        margin-top: 15px;
    }

 .rowCustum {
    display: flex;
    flex-wrap: wrap;
   
    /* justify-content: center; */
     /* gap: 15px;   Adds spacing between columns */
  }

  .post-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
    /* justify-content: space-between;  */
    /* height: 100%; */
    
    transition: transform 0.3s;
  }

  .post-box img {
    /* object-fit: cover; */
    object-fit: fill;
    width: 100%; /* Ensure images are responsive */
    /* height: 500px; */
    max-height: 500px;
  }

  .post-box:hover {
    transform: translateY(-5px); /* Subtle hover effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  /* Text box styling */
  .text-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .text-box p {
    font-size: 14px;
    color: #000;
  }

  /* Buttons section */
  .post-box a.btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* No Data Message Styling */
  .no-data-message {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #666;
  }

.cp-comments li .children li {
    display: block;
    padding: 0 15px 0 15px;
    border: 1px solid #155b2c; 
    border-radius: 40px;  
    margin-bottom: 15px; /* Space between list items */
}
	/* @font-face {
		font-family: 'Jameel Noori Nastaleeq';
		src: url('css/fonts/Jameel\ Noori\ Nastaleeq\ 2.ttf') format('woff2'),
			 url('css/fonts/Jameel\ Noori\ Nastaleeq\ 2.ttf') format('woff');
		font-weight: normal;
		font-style: normal;
	}
  body{
    font-family: 'Jameel Noori Nastaleeq';
  } */

/* Default styles for laptop view and above */
.bookscols {
  height: 600px;
}

.bookscols2 {
  height: 750px;
}
/* Media query for mobile view */
@media (max-width: 767px) {
  .bookscols {
    height: auto;
  }
  .bookscols2 {
    height: auto;
  }

  
}


    
    .post-box {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  height: 100%;
}

.frame {
  overflow: hidden;
  
}

.text-box {
  flex-grow: 1;  /* Allow text box to take up remaining space */
  overflow: hidden;
}

.text-box h3 {
  white-space: nowrap;  /* Prevent text from wrapping */
 text-wrap: wrap;
  font-size: 16px; /* Control font size for titles */

}

.read-post {
  font-size: 14px; /* Adjust font size for readability */
}

