.post-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.post-container h2 {
  font-size: 2rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  color: #2d3436;
}

.text-muted {
  color: dimgrey;
  font-size: 1rem;
  margin-top: 1rem;
}

.share-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: #636e72;
  font-size: 0.9rem;
}

.post-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.8rem;
}

.post-container div {
  font-size: 1rem;
  line-height: 1.5;
  color: #2f3640;
}

.post-container div p {
  margin-bottom: 1.2rem;
}

.post-container div h1,
.post-container div h2,
.post-container div h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

strong {
  color: #2d3436;
}

.share-container {
  text-align: center;
  align-items: start;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.share-btn {
  width: 30px;
  height: 25px;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.twitter { background: #1da1f2; }
.facebook { background: #1877f2; }
.linkedin { background: #0a66c2; }
.copy { background: #636e72; }

.bottom {
  margin-bottom: 5rem;
}

.like-share-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 1rem;
}

.like-button {
  display: flex;
  gap: 10px;
}

.like {
  background: none;
  border: 1px solid lightgrey;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  margin-left: 3rem;
}

.like i {
  color: grey;
}

.like.liked {
  color: #e74c3c;
}

.like.liked i {
  color: #e74c3c;
}

#like-count {
  color: dimgrey;
}

@media (max-width: 768px) {
  .share-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    color: #636e72;
  }
}