.blog-texts{
    text-align: center;
    margin: 25px 0;
}

.blog-grid {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px auto 50px auto ;
}

.preview-container {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
}

.preview-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.preview-title{
    font-size: 20px;
    margin: 10px 0;
}

.preview-title a{
    text-decoration: none;
    color: #333;
}

.preview-text{
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.read-link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #10cfa3;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}

.read-link:hover {
  background-color: #0f9e8c;
}
