@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

body,
h3,
h5,
p {
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
}

body {
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.post-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #ddd;
}

.post-header {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.post-header img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  object-fit: cover;
}

.post-header h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.post-header h5 {
  font-size: 15px;
  color: #0095f6;
  cursor: pointer;
  margin-top: 0;
  margin-left: 250px;
}

.post-image img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #ddd;
}

.post-content {
  padding: 16px;
  font-size: 15px;
  line-height: 1.4;
}

.post-content span {
  font-weight: 600;
  color: #262626;
}

.post-icons {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-top: 1px solid #ddd;
  background-color: #fafafa;
}

.icon-group {
  display: flex;
  align-items: center;
}

.icon-group i {
  font-size: 20px;
  color: #262626;
  margin-right: 8px;
}

.icon-group span {
  font-size: 14px;
  color: #262626;
}
