.tt-telegram-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--tt-line);
  background: rgba(251, 252, 251, 0.94);
  backdrop-filter: blur(12px);
}

.tt-telegram-header__row {
  display: flex;
  width: min(100% - 24px, 672px);
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-inline: auto;
}

.tt-telegram-header__brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.tt-telegram-header__brand img {
  width: auto;
  height: 30px;
}

.tt-telegram-header__context {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--tt-ink-soft);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.tt-telegram-header__profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tt-ink-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.tt-telegram-header__profile:hover {
  color: var(--tt-green);
}

.tt-telegram-header__status-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--tt-green-bright);
  box-shadow: 0 0 0 4px rgba(50, 215, 75, 0.12);
}

.tt-telegram-header__label-compact {
  display: none;
}

.tt-telegram-entry {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--tt-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--tt-shadow-md);
  padding: 30px 26px;
  text-align: center;
}

.tt-telegram-entry__eyebrow,
.tt-telegram-intro__eyebrow {
  margin: 0;
  color: var(--tt-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-telegram-entry h1,
.tt-telegram-intro h1 {
  margin: 10px 0 0;
  color: var(--tt-ink);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.tt-telegram-entry__copy,
.tt-telegram-intro__copy {
  margin: 12px auto 0;
  color: var(--tt-ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.tt-telegram-entry__copy {
  max-width: 42ch;
}

.tt-telegram-entry__status {
  margin-top: 22px;
  border-radius: 8px;
  background: var(--tt-bg-soft);
  color: var(--tt-ink-soft);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.tt-telegram-intro {
  min-width: 0;
  border-bottom: 1px solid var(--tt-line);
  padding: 8px 0 24px;
}

.tt-telegram-intro__copy {
  max-width: 62ch;
  margin-left: 0;
}

@media (max-width: 420px) {
  .tt-telegram-header__brand img {
    height: 27px;
  }

  .tt-telegram-header__context {
    font-size: 11px;
  }

  .tt-telegram-entry {
    border-radius: 12px;
    padding: 26px 18px;
  }

  .tt-telegram-entry h1,
  .tt-telegram-intro h1 {
    font-size: 27px;
  }
}

@media (max-width: 350px) {
  .tt-telegram-header__label-full {
    display: none;
  }

  .tt-telegram-header__label-compact {
    display: inline;
  }
}
