.webmentions-section {
  width: var(--card-width-1);
  max-width: var(--card-width-1);
  margin: 1.5rem auto;
  background: var(--white-FFF, #fff);
  border-radius: 15px;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden;
}
.webmentions-section::before {
  content: "From The InterWebs";
  display: block;
  background-color: var(--rust-7F2519, #7F2519);
  color: #fff;
  padding: 1.25rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem;
  box-sizing: border-box;
  border-radius: 15px 15px 0 0;
}
.wm-block { margin-bottom: 1rem; }
.wm-label {
  font-size: .85rem;
  font-weight: 600;
  margin: 0 0 .5rem;
  color: var(--charcoal-333, #333);
}
.wm-avatars { display: flex; flex-wrap: wrap; gap: .4rem; }
.wm-avatar img,
.wm-avatar .wm-initials {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}
.wm-avatar .wm-initials {
  background: var(--gray-light-E5E5E7, #e5e5e7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
}
.wm-reply {
  display: flex;
  gap: .6rem;
  border-left: 3px solid var(--rust-7F2519, #7F2519);
  padding: .4rem .75rem;
  margin-bottom: .6rem;
}
.wm-reply-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.wm-reply-body p {
  margin: .2rem 0 0;
  font-size: .88rem;
  line-height: 1.4;
}
.wm-date {
  font-size: .75rem;
  color: var(--slate-7A8F99, #7A8F99);
  margin-left: .3rem;
}