.ch-flow {
  width: 100%;
}

.ch-hero {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto 1fr;
  margin-bottom: 2rem;
  padding: 0;
}

.ch-hero__avatar {
  align-items: center;
  background: var(--accent-gradient);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 700;
  height: 96px;
  justify-content: center;
  letter-spacing: -0.04em;
  overflow: hidden;
  width: 96px;
}

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

.ch-hero__body {
  min-width: 0;
}

.ch-hero__title {
  color: var(--ink);
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 0.35rem;
}

.ch-hero__handle {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
}

.ch-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
}

.ch-hero__bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0 0 1rem;
  white-space: pre-wrap;
}

.ch-profile {
  background: #fffc;
  border: 1px solid #10111412;
  border-radius: var(--radius-md);
  margin: 0 0 2rem;
  padding: 1.15rem 1.25rem;
}

.ch-profile__title {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.ch-profile__about {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.ch-profile__block + .ch-profile__block {
  margin-top: 1rem;
}

.ch-profile__subtitle {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.ch-profile__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-profile__chip {
  background: #4e2a4f14;
  border: 1px solid #4e2a4f24;
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
}

.ch-profile__chip:hover {
  background: #4e2a4f1f;
  border-color: #4e2a4f47;
}

.ch-profile__chip--plain {
  cursor: default;
}

.ch-profile__evidence {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
  padding-left: 1.15rem;
}

.ch-profile__evidence li + li {
  margin-top: 0.35rem;
}

.ch-hero__cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.ch-feed__head {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ch-feed__title {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.ch-feed__link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.ch-feed__link:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.ch-feed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-card {
  background: #fffc;
  border: 1px solid #10111412;
  border-radius: var(--radius-md);
  display: grid;
  gap: 1rem;
  grid-template-columns: 72px 1fr auto;
  padding: 0.85rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ch-card:hover {
  border-color: #4e2a4f33;
  box-shadow: 0 8px 24px #10111414;
  transform: translateY(-1px);
}

.ch-card__thumb {
  background: #1011140a;
  border-radius: 10px;
  height: 72px;
  overflow: hidden;
  width: 72px;
}

.ch-card__thumb:has(.ch-card__thumb--empty) {
  background: transparent;
}

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

.ch-card__thumb--empty {
  align-items: center;
  color: transparent;
  display: flex;
  font-size: 0.7rem;
  height: 100%;
  justify-content: center;
  text-align: center;
}

.ch-card__main {
  min-width: 0;
}

.ch-card__link {
  color: var(--ink);
  display: block;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-decoration: none;
}

.ch-card__link:hover {
  color: var(--accent);
}

.ch-card__snippet {
  color: var(--muted);
  display: -webkit-box;
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
  margin: 0.35rem 0 0;
  overflow: hidden;
}

.ch-card__date {
  color: #10111466;
  font-size: 0.82rem;
  margin: 0.4rem 0 0;
}

.ch-card__aside {
  align-self: center;
  flex-shrink: 0;
}

.ch-card__tg {
  align-items: center;
  background: #4e2a4f14;
  border: 1px solid #4e2a4f24;
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  min-width: 88px;
  padding: 0.4rem 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.ch-card__tg:hover {
  background: #4e2a4f1f;
  border-color: #4e2a4f47;
}

.ch-empty {
  color: var(--muted);
  margin: 2rem 0 0;
}

.ch-catalog {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.ch-catalog-item {
  border-top: 1px solid var(--line);
  padding: 0.95rem 0;
}

.ch-catalog-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ch-catalog-item__head {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.ch-catalog-item__avatar {
  align-items: center;
  background: var(--accent-gradient);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  width: 40px;
}

.ch-catalog-item__avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ch-catalog-item__title {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-decoration: none;
}

.ch-catalog-item__title:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: #4e2a4f59;
  text-underline-offset: 0.2em;
}

.ch-catalog-item__handle {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0.1rem 0 0;
}

.ch-catalog-item__meta {
  color: #10111466;
  font-size: 0.82rem;
  margin: 0.15rem 0 0;
}

.ch-catalog-item__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

@media (max-width: 640px) {
  .ch-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ch-hero__avatar {
    margin: 0 auto;
  }

  .ch-hero__cta {
    justify-content: flex-start;
  }

  .ch-card {
    grid-template-columns: 56px 1fr;
  }

  .ch-card__aside {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .ch-card__thumb {
    height: 56px;
    width: 56px;
  }
}
