/* M15.3 core social-surface presentation layer.
 * Loaded after the compiled application stylesheet. This file changes presentation only.
 */

.social-home,
.community-shell,
.conversation-shell,
.profile-shell {
  background: var(--hb-bg);
  color: var(--hb-text);
}

.social-home-hero {
  border-bottom: 1px solid var(--hb-border);
  background:
    radial-gradient(circle at 82% 18%, rgb(244 164 96 / 0.1), transparent 24rem),
    var(--hb-bg);
}

.social-home-hero__inner {
  display: flex;
  min-height: 18rem;
  align-items: center;
  gap: 1.5rem;
  padding-block: 2.25rem;
}

.social-home-hero__logo {
  width: clamp(5.5rem, 18vw, 9rem);
  height: clamp(5.5rem, 18vw, 9rem);
  flex: none;
  border-radius: 1rem;
  object-fit: cover;
}

.social-home-hero__copy {
  min-width: 0;
}

.social-home-hero__lede {
  max-width: 42rem;
  margin-top: 0.8rem;
  color: var(--hb-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.social-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-home-feed {
  padding-block: 1.5rem 2rem;
}

.social-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 1rem;
}

.social-section-heading h2 {
  margin-top: 0.2rem;
}

.social-feed {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(60 52 46 / 72%);
}

.social-feed-item {
  border-bottom: 1px solid rgb(60 52 46 / 58%);
  background: transparent;
}

.social-update,
.social-post {
  padding: 1.25rem 0.2rem 1.35rem;
}

.social-update__identity {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--hb-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.social-update__mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.55rem;
  background: var(--hb-surface-raised);
}

.social-update__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-update h3,
.social-post__title {
  margin-top: 0;
  color: var(--hb-text);
  font-size: clamp(1.08rem, 3vw, 1.3rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.social-update h3 a,
.social-post__title a {
  color: inherit;
  text-decoration: none;
}

.social-update h3 a:hover,
.social-post__title a:hover {
  color: var(--hb-accent);
}

.social-update__excerpt,
.social-post__excerpt {
  margin-top: 0.5rem;
  color: var(--hb-text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.social-post__content {
  max-width: 48rem;
  margin-top: 0.75rem;
}

.social-post__activity,
.social-comment__activity,
.conversation-post__activity {
  margin-top: 0.8rem;
}

.social-update__footer,
.social-post__stats,
.conversation-post__stats,
.social-comment__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  margin-top: 0;
  color: var(--hb-text-subtle);
  font-size: 0.78rem;
}

.social-update__footer a {
  color: var(--hb-accent);
  font-weight: 750;
  text-decoration: none;
}

.social-update__footer a:hover {
  text-decoration: underline;
}

.vote-control {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hb-border);
}

.social-post__activity .vote-control,
.social-comment__activity .vote-control,
.conversation-post__activity .vote-control {
  margin-top: 0.55rem;
  padding-top: 0;
  border-top: 0;
}

.vote-control__main {
  display: grid;
  grid-template-columns: auto minmax(10rem, 1fr) auto;
  align-items: end;
  gap: 0.75rem;
}

.vote-control__direction {
  min-width: 0;
  border: 0;
  padding: 0;
}

.vote-control__label {
  display: block;
  color: var(--hb-text-muted);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.25;
}

.vote-direction-group {
  display: flex;
  min-width: 0;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.vote-direction-option {
  position: relative;
  min-width: 0;
  flex: 1 1 0;
  cursor: pointer;
}

.vote-direction-option__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.vote-direction-option__surface {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius-control);
  background: transparent;
  color: var(--hb-text-muted);
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;
  transition: border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.vote-direction-option:hover .vote-direction-option__surface {
  border-color: var(--hb-accent);
  color: var(--hb-text);
}

.vote-direction-option__input:checked + .vote-direction-option__surface {
  border-color: var(--hb-accent);
  background: var(--hb-surface-raised);
  color: var(--hb-text);
  box-shadow: inset 0 0 0 1px var(--hb-accent);
}

.vote-direction-option__input:focus-visible + .vote-direction-option__surface {
  outline: 3px solid var(--hb-accent);
  outline-offset: 3px;
}

.vote-direction-option__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vote-direction-option__icon--down {
  transform: rotate(180deg);
}

.vote-direction-option__selected {
  width: 0.9rem;
  flex: none;
  opacity: 0;
  transform: scale(0.75);
  font-size: 0.78rem;
  transition: opacity 120ms ease, transform 120ms ease;
}

.vote-direction-option__input:checked + .vote-direction-option__surface .vote-direction-option__selected {
  opacity: 1;
  transform: scale(1);
}

.vote-control__strength {
  min-width: 0;
}

.vote-control__strength-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
}

.vote-control__percent {
  min-width: 3.5rem;
  color: var(--hb-text);
  text-align: right;
  font-size: 0.82rem;
  font-weight: 800;
}

.vote-control__range {
  width: 100%;
  height: 44px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
}

.vote-control__range::-webkit-slider-runnable-track {
  height: 0.4rem;
  border: 1px solid var(--hb-border);
  border-radius: 999px;
  background: var(--hb-surface-raised);
}

.vote-control__range::-webkit-slider-thumb {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: -0.52rem;
  appearance: none;
  border: 2px solid var(--hb-bg);
  border-radius: 999px;
  background: var(--hb-accent);
  box-shadow: 0 0 0 1px var(--hb-accent);
}

.vote-control__range::-moz-range-track {
  height: 0.4rem;
  border: 1px solid var(--hb-border);
  border-radius: 999px;
  background: var(--hb-surface-raised);
}

.vote-control__range::-moz-range-thumb {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid var(--hb-bg);
  border-radius: 999px;
  background: var(--hb-accent);
  box-shadow: 0 0 0 1px var(--hb-accent);
}

.vote-control__range:focus-visible {
  outline-offset: 0;
}

.vote-control__review {
  white-space: nowrap;
}

.vote-control__help,
.vote-control__status {
  margin-top: 0.45rem;
  color: var(--hb-text-subtle);
  font-size: 0.75rem;
  line-height: 1.45;
}

.vote-control__status:empty {
  display: none;
}

@media (max-width: 700px) {
  .vote-control__main {
    grid-template-columns: minmax(0, 1.25fr) minmax(7.5rem, 0.8fr);
  }

  .vote-control__review {
    grid-column: 1 / -1;
    width: 100%;
  }

  .vote-direction-option__surface {
    padding-inline: 0.5rem;
    font-size: 0.78rem;
  }
}

.social-author {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.social-author img {
  flex: none;
}

.social-author__text {
  min-width: 0;
  line-height: 1.25;
}

.social-author__name {
  display: block;
  overflow: hidden;
  color: var(--hb-text);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.social-author__name:hover {
  color: var(--hb-accent);
}

.social-author__meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 0.25rem 0.55rem;
  margin-top: 0.18rem;
  color: var(--hb-text-subtle);
  font-size: 0.78rem;
}

.social-post > .social-author {
  gap: 0.65rem;
}

.social-post > .social-author img {
  width: 2.5rem;
  height: 2.5rem;
}

.community-shell,
.profile-shell {
  flex: 1;
  padding-block: 1.25rem 2.5rem;
}

.community-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 1.25rem;
}

.community-identity__logo {
  width: 5rem;
  height: 5rem;
  flex: none;
  border-radius: 0.9rem;
  object-fit: cover;
}

.community-identity__meta {
  min-width: 0;
}

.community-identity__meta h1 {
  margin-top: 0.2rem;
}

.community-identity__handle {
  margin-top: 0.35rem;
  color: var(--hb-text-subtle);
  font-size: 0.86rem;
}

.community-layout {
  display: grid;
  gap: 1.5rem;
}

.community-main {
  min-width: 0;
}

.community-aside {
  min-width: 0;
}

.social-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--hb-border);
  scrollbar-width: thin;
}

.social-tabs .content-tab {
  min-width: max-content;
  min-height: 3rem;
  flex: 1 0 auto;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--hb-text-subtle);
}

.social-tabs .content-tab:hover {
  border-bottom-color: var(--hb-border);
  color: var(--hb-text);
}

.social-tabs .content-tab--active {
  border-bottom-color: var(--hb-accent);
  background: transparent;
  color: var(--hb-text);
}

.community-about-panel,
.profile-hero {
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius-panel);
  background: var(--hb-surface);
}

.community-about-panel {
  padding: 1.1rem;
}

.community-about-panel h2 {
  color: var(--hb-text);
  font-size: 1rem;
  font-weight: 800;
}

.community-about-panel__about {
  margin-top: 0.7rem;
  color: var(--hb-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.community-about-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.community-about-panel .stat-tile {
  background: var(--hb-surface-raised);
}

.community-about-panel__source {
  margin-top: 0.9rem;
  color: var(--hb-text-subtle);
  font-size: 0.76rem;
  line-height: 1.5;
}

.community-sort {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.composer {
  margin-block: 1rem 1.25rem;
  overflow: clip;
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius-panel);
  background:
    linear-gradient(145deg, rgb(244 164 96 / 5%), transparent 52%),
    var(--hb-surface);
}

.composer--highlight {
  border-color: rgb(244 164 96 / 48%);
  background:
    linear-gradient(145deg, rgb(244 164 96 / 11%), transparent 52%),
    var(--hb-surface);
}

.composer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.composer__context {
  min-width: 0;
}

.composer__kicker {
  color: var(--hb-accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.composer__title {
  display: block;
  margin-top: 0.25rem;
  color: var(--hb-text);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  font-weight: 850;
  line-height: 1.25;
}

.composer__description {
  display: block;
  margin-top: 0.35rem;
  color: var(--hb-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.composer__meta {
  flex: none;
  border: 1px solid var(--hb-border);
  border-radius: 999px;
  background: rgb(0 0 0 / 28%);
  padding: 0.35rem 0.65rem;
  color: var(--hb-text-muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.35;
}

.composer__form {
  border-top: 1px solid rgb(60 52 46 / 72%);
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.composer__fields {
  display: grid;
  gap: 1rem;
}

.composer__field {
  min-width: 0;
}

.composer__label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.45rem;
  color: var(--hb-text);
  font-size: 0.9rem;
  font-weight: 750;
}

.composer__label-context {
  color: var(--hb-text-subtle);
  font-size: 0.72rem;
  font-weight: 650;
}

.composer__control {
  width: 100%;
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius-control);
  background: var(--hb-bg);
  padding: 0.8rem 0.9rem;
  color: var(--hb-text);
  line-height: 1.55;
}

.composer__textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.composer__control--compact {
  min-height: 6.25rem;
}

.composer__control--medium {
  min-height: 7.5rem;
}

.composer__control--large {
  min-height: 11rem;
}

.composer__control::placeholder {
  color: var(--hb-text-subtle);
}

.composer__field-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.3rem 0.75rem;
  margin-top: 0.4rem;
}

.composer__counter,
.composer__field-help {
  color: var(--hb-text-subtle);
  font-size: 0.72rem;
  line-height: 1.5;
}

.composer__counter {
  flex: none;
}

.composer__counter--over {
  font-weight: 750;
}

.composer__field-help {
  max-width: 42rem;
}

.composer__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.composer__submit {
  width: 100%;
}

.composer__disclosure,
.composer__status {
  color: var(--hb-text-subtle);
  font-size: 0.76rem;
  line-height: 1.55;
}

.composer__disclosure {
  margin-top: 0.75rem;
}

.composer__status:not(:empty) {
  margin-top: 0.55rem;
  border-left: 2px solid var(--hb-border);
  padding-left: 0.65rem;
}

.composer--collapsible > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.6rem;
  cursor: pointer;
  padding: 0.9rem 1rem;
  list-style: none;
}

.composer--collapsible > summary::-webkit-details-marker {
  display: none;
}

.composer--collapsible > summary:hover {
  background: rgb(244 164 96 / 6%);
}

.composer__summary-copy {
  min-width: 0;
}

.composer__chevron {
  width: 0.7rem;
  height: 0.7rem;
  transform: rotate(45deg);
  border-right: 2px solid var(--hb-accent);
  border-bottom: 2px solid var(--hb-accent);
  transition: transform 0.15s ease;
}

.composer--collapsible[open] .composer__chevron {
  transform: rotate(225deg);
}

.composer__expanded .composer__form {
  border-top: 1px solid rgb(60 52 46 / 72%);
}

.comment-card .composer {
  margin-bottom: 0;
  background: rgb(17 16 15 / 72%);
}

.thread-feed {
  margin-top: 0.5rem;
  border-top: 1px solid rgb(60 52 46 / 72%);
}

@media (min-width: 640px) {
  .composer__submit {
    width: auto;
  }
}

@media (max-width: 639px) {
  .composer__header {
    flex-direction: column;
  }

  .composer__meta {
    align-self: flex-start;
  }

  .composer--collapsible > summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .composer--collapsible > summary .composer__meta {
    display: none;
  }
}

.community-sort {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  padding: 0.35rem 0 0.7rem;
}

.community-sort__field {
  min-width: 0;
  flex: 1;
}

.community-sort__label {
  display: block;
  color: var(--hb-text-muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.community-sort__select {
  width: 100%;
  min-height: 44px;
  margin-top: 0.35rem;
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius-control);
  background: var(--hb-surface-raised);
  padding: 0.55rem 2.25rem 0.55rem 0.75rem;
  color: var(--hb-text);
  font-size: 0.88rem;
}

.community-sort__submit {
  min-height: 44px;
}

.conversation-shell {
  flex: 1;
  padding-block: 1rem 2.5rem;
}

.conversation-column {
  width: min(100%, 46rem);
  margin-inline: auto;
  padding-inline: 1rem;
}

.conversation-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  color: var(--hb-text-muted);
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
}

.conversation-back:hover {
  color: var(--hb-accent);
}

.conversation-post {
  padding: 0.65rem 0 1.6rem;
  border-bottom: 1px solid var(--hb-border);
}

.conversation-post__header .social-author {
  gap: 0.7rem;
}

.conversation-post__title {
  margin-top: 1rem;
  color: var(--hb-text);
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.conversation-post__body {
  margin-top: 1.25rem;
  color: var(--hb-text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.conversation-comments {
  margin-top: 1.4rem;
}

.conversation-comments__header {
  padding-bottom: 0.15rem;
}

.conversation-comments__heading {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--hb-text);
  font-size: 1.15rem;
  font-weight: 800;
}

.comment-card.social-comment {
  --comment-indent: 0rem;
  position: relative;
  width: auto;
  margin: 0 0 0 var(--comment-indent);
  border: 0;
  border-left: 1px solid rgb(82 72 63 / 80%);
  border-radius: 0;
  padding: 1rem 0.2rem 1.05rem 0.9rem;
  background: transparent;
}

.social-comment + .social-comment {
  border-top: 1px solid rgb(60 52 46 / 44%);
}

.social-comment__body {
  margin-top: 0.6rem;
  color: var(--hb-text);
  font-size: 0.94rem;
  line-height: 1.65;
}

.social-comment > .social-author {
  gap: 0.6rem;
}

.social-comment > .social-author img {
  width: 2.25rem;
  height: 2.25rem;
}

.social-comment > .social-author .social-author__name {
  font-size: 0.9rem;
}

.social-comment > .composer {
  margin-top: 0.45rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.social-comment > .composer--collapsible > summary {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 44px;
  padding: 0;
}

.social-comment > .composer--collapsible > summary:hover {
  background: transparent;
}

.social-comment > .composer--collapsible > summary .composer__kicker,
.social-comment > .composer--collapsible > summary .composer__description {
  display: none;
}

.social-comment > .composer--collapsible > summary .composer__title {
  margin: 0;
  color: var(--hb-text-muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.social-comment > .composer--collapsible > summary:hover .composer__title {
  color: var(--hb-accent);
}

.social-comment > .composer--collapsible[open] > summary {
  border-bottom: 1px solid rgb(60 52 46 / 58%);
}

.social-comment > .composer .composer__form {
  border-top: 0;
  padding: 0.85rem 0 0;
}

.comment-card.social-comment.comment-depth-2 {
  --comment-indent: 1.1rem;
}

.comment-card.social-comment.comment-depth-3 {
  --comment-indent: 2.2rem;
}

.comment-card.social-comment.comment-depth-4 {
  --comment-indent: 3.3rem;
}

.social-comment--thread.comment-depth-1 {
  border-left-color: transparent;
  padding-left: 0.2rem;
}

.social-comment--thread {
  padding-block: 0.9rem 0.95rem;
}

.social-comment--thread .social-comment__body {
  margin-top: 0.5rem;
}

.conversation-thread {
  margin-top: 1rem;
  border-top: 1px solid rgb(60 52 46 / 72%);
}

.profile-hero {
  padding: 1.25rem;
}

.profile-hero__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.profile-hero__avatar {
  width: 5.5rem;
  height: 5.5rem;
  flex: none;
  border: 2px solid var(--hb-border);
  border-radius: 999px;
  background: var(--hb-surface-raised);
  object-fit: cover;
}

.profile-hero__identity {
  min-width: 0;
  flex: 1;
}

.profile-hero__identity h1 {
  overflow-wrap: anywhere;
  color: var(--hb-text);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.profile-hero__handle {
  margin-top: 0.2rem;
  color: var(--hb-text-subtle);
}

.profile-hero__about {
  max-width: 44rem;
  margin-top: 1rem;
  color: var(--hb-text-muted);
  line-height: 1.6;
}

.profile-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.15rem;
  margin-top: 1rem;
  color: var(--hb-text-subtle);
  font-size: 0.85rem;
}

.profile-hero__stats strong {
  color: var(--hb-text);
}

.profile-hero__stats a {
  color: inherit;
  text-decoration: none;
}

.profile-hero__stats a:hover {
  color: var(--hb-accent);
}

.profile-hero__action {
  margin-top: 1rem;
}

.profile-tabs {
  margin-top: 1rem;
}

.profile-content-panel {
  min-width: 0;
  padding-top: 0.75rem;
}

.profile-content-panel .social-feed {
  border-top: 0;
}

@media (min-width: 640px) {
  .community-sort {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .community-sort__field {
    display: flex;
    flex: 0 1 18rem;
    align-items: center;
    gap: 0.65rem;
  }

  .community-sort__label {
    flex: none;
  }

  .community-sort__select {
    margin-top: 0;
  }

  .profile-hero {
    padding: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .community-layout {
    grid-template-columns: minmax(0, 2fr) minmax(15rem, 0.85fr);
    align-items: start;
  }

  .community-aside {
    position: sticky;
    top: 1.5rem;
  }
}

@media (max-width: 639px) {
  .social-home-hero__inner {
    align-items: flex-start;
    min-height: 0;
    padding-block: 1.4rem 1.6rem;
  }

  .social-home-hero__logo {
    width: 4.5rem;
    height: 4.5rem;
  }

  .social-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-identity__logo {
    width: 4rem;
    height: 4rem;
  }

  .profile-hero__top {
    align-items: center;
  }

  .profile-hero__avatar {
    width: 4.75rem;
    height: 4.75rem;
  }

  .comment-card.social-comment.comment-depth-2 {
    --comment-indent: 0.55rem;
  }

  .comment-card.social-comment.comment-depth-3 {
    --comment-indent: 1.1rem;
  }

  .comment-card.social-comment.comment-depth-4 {
    --comment-indent: 1.65rem;
  }

  .comment-card.social-comment {
    padding-left: 0.65rem;
  }

  .social-comment--thread.comment-depth-1 {
    padding-left: 0.1rem;
  }
}
