.cnn-logo {
  font-family: "Arial Black", sans-serif;
  letter-spacing: -2px;
}

.cnn-logo img {
  display: block;
  width: auto;
  height: 36px;
}

header a {
  color: inherit;
  text-decoration: none;
}

header a:hover {
  text-decoration: none;
}

.post-container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #dadde1;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.post-header,
.post-footer {
  padding: 15px 20px;
  color: #1c1e21;
  font-size: 16px;
  font-weight: 600;
}

.post-header {
  border-bottom: 1px solid #dadde1;
}

.post-footer {
  text-align: center;
  font-size: 13px;
  color: #606770;
  font-weight: 400;
  padding: 10px 20px 15px;
  border-top: 1px solid #dadde1;
}

.comments-list {
  padding: 0 20px;
}

.comment-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #dadde1;
}

.comment-item:last-of-type {
  border-bottom: none;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content-wrapper {
  flex-grow: 1;
}

.comment-text-box {
  background-color: #f0f2f5;
  border-radius: 18px;
  padding: 8px 12px;
  line-height: 1.3;
  margin-bottom: 4px;
}

.comment-author {
  font-weight: 600;
  color: #1c1e21;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.comment-text {
  color: #1c1e21;
  font-size: 15px;
}

.comment-actions {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-left: 12px;
}

.comment-actions a {
  color: #385898;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
}

.comment-actions .comment-time {
  color: #606770;
  font-weight: 400;
}

.like-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  color: #606770;
}

.like-icon {
  font-size: 16px;
  margin-right: 4px;
  line-height: 1;
}

.like-count {
  font-size: 13px;
  font-weight: 600;
  color: #606770;
}

.site-footer {
  background-color: #141414;
  color: #fff;
}

@media (max-width: 500px) {
  .post-container {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .comments-list {
    padding: 0 15px;
  }

  .comment-item {
    padding: 10px 0;
  }

  .user-avatar {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }

  .comment-actions {
    margin-left: 0;
  }
}
