.post-card {
  margin-top: 25px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #ececec;
  background-color: #ffffff;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.post-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #79B4A9;
}

.post-header h3 {
  font-size: 17px;
  color: #2b2b2b;
}

.post-header span {
  font-size: 14px;
  color: #8a8a8a;
}

.post-text {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 22px;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid #eeeeee;
  padding-top: 16px;
}

.post-actions button {
  border: none;
  background: transparent;
  color: #676F54;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.post-actions button:hover {
  color: #79B4A9;
  transform: translateY(-2px);
}

.post-image {
  width: 100%;
  margin-bottom: 22px;
}

.post-image img {

  width: 100%;

  max-height: 500px;

  object-fit: cover;

  border-radius: 18px;

  display: block;
}

.post-avatar-link {
  text-decoration: none;
}

.post-user-link {
  color: inherit;
  text-decoration: none;
}

.post-user-link:hover {
  color: #79B4A9;
  text-decoration: underline;
}

.post-user-link.muted {
  color: #777;
}

.post-images {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 16px;
  margin-top: 14px;
  display: block;
}

.post-image {
  width: 100%;
  max-height: 500px;

  margin-top: 12px;

  border-radius: 18px;

  object-fit: cover;

  border: 1px solid #ececec;
}

.like-btn.liked {
  color: #b42318;
  font-weight: 700;
}

.quote-post {
  background-color: #f8f8f5;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 35px;
  margin: 18px 0 22px;
  text-align: center;
}

.quote-post p {
  font-family: 'Belleza', serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.5;
  color: #676F54;
}

.hashtag-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.hashtag-link:hover {
  text-decoration: underline;
}

.repost-label {
  margin-bottom: 12px;
  color: #4f857a;
  font-size: 14px;
  font-weight: 700;
}

.post-card-reposted {
  border-color: rgba(79, 133, 122, 0.35);
  background: linear-gradient(
    180deg,
    rgba(79, 133, 122, 0.06),
    #ffffff 22%
  );
}

.expand-post-btn {
  margin-top: 8px;
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.expand-post-btn:hover {
  opacity: 0.8;
}