body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container-post {
  width: 60%;
  margin: auto;
  overflow: hidden;
  display: block;
}

.post {
  background: #2a2a2a;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #444;
  color: #d0d0d0;
}

.text-content {
  max-height: 12em; /* Adjust this to limit visible lines */
  line-height: 2em; /* Adjust to match your text's line height */
  overflow: hidden;
  text-overflow: ellipsis;
}

.post h2 {
  margin-top: 0;
  color: #e0e0e0;
}

.post-meta {
  color: #999;
  font-size: 0.9em;
}

.read-more {
  display: inline-block;
  text-decoration: none;
  color: #4a9eff;
  border: 1px solid #4a9eff;
  padding: 5px 10px;
  border-radius: 5px;
  transition:
    background 0.3s,
    color 0.3s;
}

.read-more:hover {
  background: #4a9eff;
  color: #fff;
}

@media (max-width: 768px) {
  .container-post {
    width: 90%;
  }

  .post {
    padding: 20px;
  }

  .read-more {
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .container-post {
    width: 100%;
    padding: 0 10px;
  }

  .post {
    padding: 20px;
  }

  .read-more {
    padding: 3px;
  }
}
