.tag {
    font-size: 14px;
    background-color: darkred;
    padding: 2px 8px;
    border-radius: 4px;
}

.hero h1 {
    font-size: 1.8rem;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.5rem;
    }
}

/* ===== FACEBOOK-STYLE COMMENTS SECTION ===== */

.fb-comments-section {
  background: #f0f2f5;
  padding: 50px 16px 60px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.fb-comments-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Comment count header */
.fb-comments-count {
  font-size: 1rem;
  font-weight: 600;
  color: #050505;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4e6eb;
}

/* Top-level comment block */
.fb-comment {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

/* Reply (nested) */
.fb-reply {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  margin-left: 0;
}

/* Avatars */
.fb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fb-avatar-sm {
  width: 32px;
  height: 32px;
}

/* Body container (right of avatar) */
.fb-comment-body {
  flex: 1;
  min-width: 0;
}

/* The grey bubble */
.fb-bubble {
  background: #f0f2f5;
  border-radius: 18px;
  padding: 8px 12px 10px;
  display: inline-block;
  max-width: 100%;
}

.fb-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1877f2;
  margin-bottom: 2px;
  line-height: 1.3;
}

.fb-text {
  font-size: 0.9375rem;
  color: #050505;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
}

/* Meta line: Like · Reply · time · count */
.fb-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding-left: 12px;
  font-size: 0.75rem;
  color: #65676b;
  flex-wrap: wrap;
}

.fb-action {
  font-weight: 600;
  color: #65676b;
  cursor: pointer;
}

.fb-action:hover {
  text-decoration: underline;
}

.fb-dot {
  color: #65676b;
}

.fb-time {
  color: #65676b;
}

.fb-likes {
  margin-left: auto;
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  padding: 1px 8px;
  font-size: 0.75rem;
  color: #65676b;
  font-weight: 600;
}

/* Closed comments notice */
.fb-comments-notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #5d4e1f;
  line-height: 1.4;
}

.fb-notice-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.fb-notice-text {
  flex: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .fb-comments-section {
    padding: 30px 8px 40px;
  }

  .fb-comments-inner {
    padding: 16px 12px;
    border-radius: 8px;
  }

  .fb-avatar {
    width: 36px;
    height: 36px;
  }

  .fb-avatar-sm {
    width: 28px;
    height: 28px;
  }

  .fb-text {
    font-size: 0.9rem;
  }

  .fb-name {
    font-size: 0.8rem;
  }

  .fb-meta {
    font-size: 0.7rem;
  }
}