.blog-compose {
  max-width: 980px;
  margin: 0 auto 18px;
}
.blog-compose__head {
  margin-bottom: 9px;
  padding: 13px 15px;
  border: var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 100% 0,rgb(255 106 0 / .13),transparent 38%),var(--bg-elev);
}
.blog-compose__head h1 {
  margin: 3px 0 4px;
  padding: 0;
  border: 0;
  background: none;
  font-size: clamp(21px,3vw,30px);
  letter-spacing: -.035em;
}
.blog-compose__head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 12px;
}
.blog-compose__kicker {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgb(255 106 0 / .11);
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-field {
  display: grid;
  gap: 5px;
  margin-bottom: 9px;
}
.blog-field>span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.blog-field small {
  color: var(--muted);
  font-weight: 600;
}
.blog-field small.is-near-limit {
  color: var(--brand);
}
.blog-title-input {
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.blog-editor-shell {
  position: relative;
  overflow: visible;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elev);
  box-shadow: 0 10px 30px rgb(0 0 0 / .08);
}
.blog-editor-shell:focus-within {
  border-color: color-mix(in oklab,var(--brand) 60%,var(--border));
  box-shadow: 0 0 0 3px rgb(255 106 0 / .08),0 14px 34px rgb(0 0 0 / .1);
}
.blog-editor-toolbar {
  position: sticky;
  top: 61px;
  z-index: 60;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  border-bottom: 1px solid var(--border);
  border-radius: 11px 11px 0 0;
  background: color-mix(in oklab,var(--bg-elev) 96%,transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .18s ease,border-color .18s ease,background .18s ease;
}
.blog-editor-toolbar.is-stuck {
  border-radius: 0 0 12px 12px;
  background: color-mix(in oklab,var(--bg-elev) 98%,transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--border) 72%,var(--brand) 28%),0 12px 30px rgb(0 0 0 / .18),0 0 0 1px rgb(255 106 0 / .035);
}
.blog-tool {
  min-width: 32px;
  height: 31px;
  padding: 0 7px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  font: 800 12px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  cursor: pointer;
  transition: .16s ease;
}
.blog-tool:hover,.blog-tool:focus-visible {
  outline: 0;
  border-color: rgb(255 106 0 / .3);
  background: rgb(255 106 0 / .1);
  color: var(--brand);
}
.blog-tool:disabled {
  opacity: .45;
  cursor: progress;
}
.blog-tool--youtube {
  color: #ff3b30;
}
.blog-tool-sep {
  width: 1px;
  height: 21px;
  margin: 0 2px;
  background: var(--border);
}
.blog-editor-status {
  margin-left: auto;
  max-width: 230px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-editor-status.is-error {
  color: var(--er-fg);
}
.blog-editor-content {
  min-height: 350px;
  padding: 14px 20px;
  outline: 0;
  color: var(--text);
  font: 400 15px/1.68 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  overflow-wrap: anywhere;
}
.blog-editor-content:empty:before {
  content: attr(data-placeholder);
  color: var(--muted);
  pointer-events: none;
}
.blog-editor-content.is-dragover {
  background: rgb(255 106 0 / .08);
}
.blog-editor-content p {
  margin: 0 0 1em;
}
.blog-editor-content>p:first-child,.blog-editor-content>h2:first-child,.blog-editor-content>h3:first-child,.blog-editor-content>blockquote:first-child {
  margin-top: 0;
}
.blog-editor-content h2,.blog-editor-content h3,.blog-entry h2,.blog-entry h3 {
  margin: 1.55em 0 .55em;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.blog-editor-content h2,.blog-entry h2 {
  font-size: 1.55em;
}
.blog-editor-content h3,.blog-entry h3 {
  font-size: 1.25em;
}
.blog-editor-content blockquote,.blog-entry blockquote {
  margin: 1.3em 0;
  padding: 10px 16px;
  border-left: 4px solid var(--brand);
  border-radius: 0 10px 10px 0;
  background: rgb(255 106 0 / .07);
  font-style: normal;
}
.blog-editor-content ul,.blog-editor-content ol,.blog-entry ul,.blog-entry ol {
  padding-left: 28px;
}
.blog-editor-content a,.blog-entry a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-editor-content figure,.blog-entry figure {
  margin: 22px 0;
}
.blog-editor-content img,.blog-entry img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}
.blog-editor-content figcaption,.blog-entry figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.blog-embed--youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.blog-embed--youtube iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.blog-compose__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 9px;
}
.blog-compose__grid .blog-field {
  min-width: 0;
}
.blog-publish-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 0;
}
.blog-field--comments {
  min-width: min(100%,330px);
  margin-bottom: 0;
}
.blog-publish-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}
.blog-draft-note {
  color: var(--muted);
  font-size: 11px;
}
.blog-entry {
  font: 400 16px/1.72 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  overflow-wrap: anywhere;
}
.blog-entry p {
  margin: 0 0 1em;
}
.blog-entry__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: var(--line);
  color: var(--muted);
  font-size: 12px;
}
.blog-entry__author {
  margin-bottom: 16px;
}
.blog-entry__author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-entry__author a {
  text-decoration: none;
  font-weight: 900;
}

@media (max-width:800px) {
  .blog-editor-toolbar {
    top: 51px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .blog-editor-toolbar::-webkit-scrollbar {
    display: none;
  }
  .blog-editor-toolbar .blog-editor-status {
    display: none;
  }
  .blog-compose__grid {
    grid-template-columns: 1fr;
  }
  .blog-publish-row {
    align-items: stretch;
    flex-direction: column;
  }
  .blog-field--comments {
    width: 100%;
    max-width: none;
  }
  .blog-publish-actions {
    justify-content: space-between;
  }
  .blog-editor-content {
    min-height: 310px;
    padding: 12px 13px;
    font-size: 15px;
  }
  .blog-editor-status {
    flex-basis: 100%;
    order: 9;
    margin: 2px 0 0;
    max-width: 100%;
  }
}

@media (max-width:520px) {
  .blog-compose__head {
    padding: 11px 12px;
  }
  .blog-title-input {
    font-size: 17px;
  }
  .blog-tool {
    min-width: 32px;
    height: 32px;
    padding: 0 7px;
  }
  .blog-tool-sep {
    display: none;
  }
  .blog-publish-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .blog-publish-actions .btn {
    width: 100%;
  }
  .blog-draft-note {
    text-align: center;
  }
}

/* Blog navigation and home */
.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 7px;
  border: var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg,var(--bg-elev),var(--bg));
  box-shadow: 0 8px 24px rgb(0 0 0 / .06);
}
.blog-nav__home {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 8px;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
}
.blog-nav__home:hover,.blog-nav__home.is-active {
  background: rgb(255 106 0 / .07);
  color: var(--brand);
}
.blog-nav__home>span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.blog-nav__home b {
  font-size: 14px;
}
.blog-nav__home small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-nav__mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 31px;
  border-radius: 9px;
  background: linear-gradient(135deg,#ff8a1f,#ff4b00);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgb(255 90 0 / .23);
}
.blog-create-link {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgb(255 120 24 / .38);
  border-radius: 10px;
  background: linear-gradient(135deg,rgb(255 138 31 / .16),rgb(255 75 0 / .09));
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .05);
  transition: transform .16s ease,border-color .16s ease,background .16s ease,box-shadow .16s ease,color .16s ease;
}
.blog-create-link:hover,.blog-create-link.is-active {
  transform: translateY(-1px);
  border-color: rgb(255 120 24 / .7);
  background: linear-gradient(135deg,#ff8a1f,#ff5400);
  color: #fff;
  box-shadow: 0 9px 22px rgb(255 90 0 / .23);
  text-decoration: none;
}
.blog-create-link__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgb(255 255 255 / .1);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}
.blog-home-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 14px;
  padding: 22px;
  border: var(--line);
  border-radius: 16px;
  background: radial-gradient(620px 260px at 100% 0,rgb(255 106 0 / .19),transparent 64%),radial-gradient(500px 260px at 0 100%,rgb(45 86 255 / .09),transparent 70%),linear-gradient(180deg,var(--bg-elev),var(--bg));
}
.blog-home-hero__eyebrow,.blog-section-head>div>span,.blog-side-card__head>span {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-home-hero h1 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: clamp(23px,3vw,37px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.blog-home-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.blog-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.blog-create-link--hero {
  min-height: 42px;
  padding: 0 17px;
  background: linear-gradient(135deg,#ff8a1f,#ff5400);
  color: #fff;
  box-shadow: 0 10px 26px rgb(255 90 0 / .23);
}
.blog-home-hero__secondary {
  padding: 8px 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}
.blog-home-hero__secondary:hover {
  color: var(--brand);
}
.blog-home-hero__stats {
  min-width: 160px;
  padding: 16px;
  border: 1px solid rgb(255 120 24 / .25);
  border-radius: 14px;
  background: rgb(255 106 0 / .07);
  text-align: center;
}
.blog-home-hero__stats strong {
  display: block;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}
.blog-home-hero__stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.blog-home-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(245px,310px);
  gap: 14px;
  align-items: start;
  scroll-margin-top: 80px;
}
.blog-feed,.blog-side-card {
  min-width: 0;
  border: var(--line);
  border-radius: 14px;
  background: var(--bg-elev);
}
.blog-feed {
  padding: 14px;
}
.blog-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  padding: 1px 2px 10px;
  border-bottom: var(--line);
}
.blog-section-head h2,.blog-side-card h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 18px;
  line-height: 1.2;
}
.blog-section-head small {
  color: var(--muted);
  font-size: 10px;
}
.blog-feed__list {
  display: grid;
}
.blog-feed-card {
  display: grid;
  border-bottom: var(--line);
}
.blog-feed-card__avatar {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
}
.blog-feed-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #999;
}
.blog-feed-card__author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
}
.blog-feed-card__author a {
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}
.blog-feed-card__author a:hover {
  color: var(--brand);
}
.blog-feed-card h3 {
  line-height: 1.3;
  letter-spacing: -.015em;
}
.blog-feed-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.blog-feed-card h3 a:hover {
  color: var(--brand);
}
.blog-feed-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}
.blog-feed-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.blog-feed-card__read {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.blog-feed-card__read:hover span {
  display: inline-block;
  transform: translateX(2px);
}
.blog-feed-card__metrics {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}
.blog-home-side {
  display: grid;
  gap: 14px;
}
.blog-side-card {
  padding: 14px;
}
.blog-popular-list {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.blog-popular-list li {
  display: grid;
  grid-template-columns: 27px minmax(0,1fr);
  gap: 9px;
  align-items: start;
  padding: 10px 0;
  border-top: var(--line);
}
.blog-popular-list__rank {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgb(255 106 0 / .08);
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
}
.blog-popular-list a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}
.blog-popular-list a:hover {
  color: var(--brand);
}
.blog-popular-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
}
.blog-side-card--author {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 100% 0,rgb(255 106 0 / .15),transparent 45%),var(--bg-elev);
}
.blog-side-card--author p {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.blog-side-card__spark {
  position: absolute;
  right: 13px;
  top: 10px;
  color: var(--brand);
  font-size: 20px;
}
.blog-create-link--side {
  width: 100%;
  min-height: 38px;
}
.blog-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  padding: 12px 2px 2px;
  border-top: var(--line);
}
.blog-pagination a,.blog-pagination strong {
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--bg);
  color: var(--text);
  font-size: 11px;
  text-decoration: none;
}
.blog-pagination a:hover {
  border-color: rgb(255 106 0 / .45);
  color: var(--brand);
}
.blog-pagination strong {
  border-color: var(--brand);
  background: rgb(255 106 0 / .12);
  color: var(--brand);
}
.blog-pagination__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.blog-pagination__pages>span {
  color: var(--muted);
}
.blog-pagination__edge:first-child {
  justify-self: start;
}
.blog-pagination__edge:last-child {
  justify-self: end;
}
.blog-empty {
  padding: 30px 16px;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  color: var(--muted);
}
.blog-empty b {
  color: var(--text);
  font-size: 16px;
}
.blog-empty a {
  margin-top: 6px;
  color: var(--brand);
  font-weight: 900;
}

@media (max-width:900px) {
  .blog-home-layout {
    grid-template-columns: 1fr;
  }
  .blog-home-side {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .blog-home-hero {
    grid-template-columns: 1fr;
  }
  .blog-home-hero__stats {
    display: none;
  }
}

@media (max-width:650px) {
  .blog-nav {
    margin-bottom: 9px;
  }
  .blog-nav__home small {
    display: none;
  }
  .blog-create-link {
    padding: 0 10px;
    font-size: 11px;
  }
  .blog-create-link__icon {
    width: 20px;
    height: 20px;
  }
  .blog-home-hero {
    padding: 16px;
  }
  .blog-home-hero h1 {
    font-size: 24px;
  }
  .blog-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .blog-create-link--hero {
    width: 100%;
  }
  .blog-home-hero__secondary {
    text-align: center;
  }
  .blog-home-side {
    grid-template-columns: 1fr;
  }
  .blog-feed {
    padding: 10px;
  }
  .blog-feed-card {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 9px;
    padding: 13px 1px;
  }
  .blog-feed-card__avatar {
    width: 38px;
    height: 38px;
  }
  .blog-feed-card h3 {
    font-size: 15px;
  }
  .blog-feed-card p {
    font-size: 11px;
  }
  .blog-feed-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-pagination {
    grid-template-columns: 1fr 1fr;
  }
  .blog-pagination__pages {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .blog-pagination__edge:first-child {
    grid-column: 1;
    grid-row: 2;
  }
  .blog-pagination__edge:last-child {
    grid-column: 2;
    grid-row: 2;
  }
  .blog-editor-content {
    min-height: 310px;
    padding: 12px 13px;
  }
  .blog-compose__head {
    padding: 11px 12px;
  }
  .blog-compose__head p {
    line-height: 1.45;
  }
}

@media (max-width:430px) {
  .blog-nav__home>span:last-child {
    display: none;
  }
  .blog-nav__home {
    padding: 3px;
  }
  .blog-create-link {
    min-height: 36px;
  }
  .blog-home-hero h1 {
    font-size: 21px;
  }
  .blog-home-hero p {
    font-size: 12px;
  }
  .blog-section-head {
    align-items: start;
    flex-direction: column;
  }
  .blog-feed-card__metrics {
    gap: 7px;
  }
}
.blog-entry {
  margin-bottom: 18px;
  border-radius: 16px;
}
.blog-entry__header {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: var(--line);
}
.blog-entry__author {
  margin: 0;
}
.blog-entry__avatar {
  overflow: hidden;
}
.blog-entry__stats {
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.blog-entry__stats span,.blog-entry__stats a {
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
}
.blog-entry__stats a:hover {
  color: var(--brand) !important;
}
.blog-entry__stats b {
  color: var(--brand);
}
.blog-entry h1.blog-entry__title {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  font-size: clamp(24px,3.2vw,38px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.blog-entry__body {
  min-width: 0;
}
.blog-entry__body center {
  max-width: 100%;
}
.blog-entry__body img {
  max-width: 100%;
  height: auto;
}
.blog-entry__keywords {
  margin-top: 20px;
  padding-top: 12px;
  border-top: var(--line);
}
.blog-comments {
  scroll-margin-top: 76px;
  margin: 18px 0 28px;
  padding: 14px;
  border: var(--line);
  border-radius: 16px;
  background: var(--bg-elev);
}
.blog-comments__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 2px 11px;
  border-bottom: var(--line);
}
.blog-comments__head>div>span {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-comments__head h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 19px;
}
.blog-comments__head h2 b {
  display: inline-flex;
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  border-radius: 999px;
  background: rgb(255 106 0 / .11);
  color: var(--brand);
  font-size: 11px;
  vertical-align: 2px;
}
.blog-comments__head small {
  color: var(--muted);
  font-size: 10px;
}
.blog-comments__login,.blog-comments__empty {
  padding: 15px;
  border: 1px dashed var(--border);
  border-radius: 11px;
  background: var(--bg);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.blog-comments__login a {
  color: var(--brand);
  font-weight: 850;
}
.blog-comment-composer {
  grid-template-columns: 44px minmax(0,1fr);
  gap: 10px;
  margin: 0 0 13px;
  padding: 11px;
  border: var(--line);
  box-shadow: none;
}
.blog-comment-composer form {
  min-width: 0;
}
.blog-comment-composer .composer__text {
  min-height: 66px;
  max-height: 260px;
  background: var(--bg);
  color: var(--text);
  outline: 0;
}
.blog-comment-composer .composer__text:focus {
  border-color: rgb(255 106 0 / .48);
  box-shadow: 0 0 0 3px rgb(255 106 0 / .07);
}
.blog-comment-composer .composer__bar {
  margin-top: 7px;
}
.blog-comment-composer .composer__bar small {
  color: var(--muted);
  font-size: 10px;
}
.blog-comment-composer .pill {
  margin-left: auto;
  color: #fff;
  min-height: 34px;
  padding: 7px 14px;
}
.blog-comments__list {
  display: grid;
}
.blog-comment {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: var(--line);
  box-shadow: none;
  background: linear-gradient(180deg,var(--bg),var(--bg-elev));
}
.blog-comment .post__head {
  padding: 8px 10px;
  border-radius: 0;
}
.blog-comment .post__author {
  min-width: 0;
}
.blog-comment .post__ava {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}
.blog-comment .post__name {
  font-size: 12px;
}
.blog-comment .post__time {
  margin-top: 2px;
  font-size: 9px;
}
.blog-comment__body {
  padding: 10px 12px 4px;
  margin: 0;
}
.blog-comment__body .post__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.58;
  overflow-wrap: anywhere;
}
.blog-comment__body .post__text p {
  margin: .5em 0;
}
.blog-comment__actions {
  min-height: 36px;
  margin: 0;
  padding: 5px 9px 7px;
  border-top: 0;
  justify-content: flex-end;
}
.blog-comment__admin a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
}
.blog-comment__admin a:hover {
  background: rgb(255 106 0 / .10);
  color: var(--brand);
}
.blog-comment-vote {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-comment-vote__btn {
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: .16s ease;
}
.blog-comment-vote__btn:hover {
  background: var(--brand);
  transform: translateY(-1px);
}
.blog-comment-vote__btn:hover .ico {
  background-color: #fff;
}
.blog-comment-vote__score {
  height: 25px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}
.blog-comment-vote__score.is-positive {
  background: rgb(34 197 94 / .12);
  color: #22b85a;
}
.blog-comment-vote__score.is-negative {
  background: rgb(239 68 68 / .12);
  color: #e34a4a;
}
.blog-comments__pagination {
  margin-top: 12px;
}

@media (max-width:650px) {
  .blog-entry {
    padding: 13px;
  }
  .blog-entry__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-entry__stats {
    justify-content: flex-start;
  }
  .blog-entry h1.blog-entry__title {
    font-size: 24px;
  }
  .blog-entry__body {
    font-size: 15px;
    line-height: 1.65;
  }
  .blog-comments {
    padding: 10px;
  }
  .blog-comments__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-comment-composer {
    grid-template-columns: 36px minmax(0,1fr);
    padding: 9px;
  }
  .blog-comment-composer .composer__ava {
    width: 36px;
    height: 36px;
  }
  .blog-comment .post__head {
    padding: 7px 8px;
  }
  .blog-comment__body {
    padding: 9px 10px 3px;
  }
}
.blog-entry {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.blog-entry__header {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 12px;
  padding: 15px 17px;
  border: var(--line);
  border-radius: 16px;
  background: radial-gradient(circle at 100% 0,rgb(255 106 0 / .15),transparent 42%),linear-gradient(135deg,rgb(255 106 0 / .055),transparent 45%),var(--bg-elev);
  box-shadow: 0 10px 28px rgb(0 0 0 / .07),inset 0 1px 0 rgb(255 255 255 / .035);
}
.blog-entry__header:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,var(--brand),var(--accent));
}
.blog-entry__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.blog-entry__avatar {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--brand),#ffb04a);
  box-shadow: 0 8px 20px rgb(255 90 0 / .18);
  text-decoration: none;
}
.blog-entry__avatar img,.blog-entry__author img {
  width: 54px;
  height: 54px;
  margin: 0;
  display: block;
  border: 2px solid var(--bg-elev);
  border-radius: 50%;
  object-fit: cover;
  background: #999;
}
.blog-entry__author-copy {
  min-width: 0;
}
.blog-entry__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--brand);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.blog-entry__author-name {
  display: block;
  max-width: 360px;
  color: var(--text) !important;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-entry__author-name:hover {
  color: var(--brand) !important;
}
.blog-entry__date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}
.blog-entry__date .ico {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: var(--muted);
}
.blog-entry__stats {
  display: grid;
  gap: 7px;
  flex: 0 0 auto;
}
.blog-entry__stats span,.blog-entry__stats a {
  min-height: 48px;
  padding: 7px 11px;
  display: grid;
  grid-template-columns: 18px auto;
  grid-template-rows: auto auto;
  column-gap: 7px;
  align-items: center;
  border: var(--line);
  border-radius: 12px;
  background: color-mix(in oklab,var(--bg) 88%,var(--brand) 12%);
  color: var(--text) !important;
  text-decoration: none !important;
  transition: .18s ease;
}
.blog-entry__stats a:hover {
  border-color: rgb(255 106 0 / .45);
  background: rgb(255 106 0 / .10);
  transform: translateY(-1px);
}
.blog-entry__stats i {
  grid-row: 1/3;
  width: 16px;
  height: 16px;
  background-color: var(--brand);
}
.blog-entry__stats b {
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}
.blog-entry__stats small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.blog-entry__description {
  margin: 0 0 12px;
  padding: 11px 13px;
  border: var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 0 11px 11px 0;
  background: rgb(255 106 0 / .055);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.blog-entry__body.rail-card {
  min-width: 0;
  margin: 0;
  padding: clamp(15px,2.5vw,25px);
  border: var(--line);
  border-radius: 14px;
  background: var(--bg-elev);
  box-shadow: 0 10px 26px rgb(0 0 0 / .055);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  overflow: hidden;
}
.blog-entry__body.rail-card p {
  margin: .75em 0;
}
.blog-entry__body.rail-card h2 {
  margin: 1.6em 0 .55em;
  font-size: 21px;
  line-height: 1.25;
}
.blog-entry__body.rail-card h3 {
  margin: 1.4em 0 .5em;
  font-size: 18px;
  line-height: 1.3;
}
.blog-entry__body.rail-card blockquote {
  margin: 16px 0;
  padding: 10px 14px;
  border-left: 3px solid var(--brand);
  border-radius: 0 10px 10px 0;
  background: rgb(255 106 0 / .055);
}
.blog-entry__body.rail-card ul,.blog-entry__body.rail-card ol {
  padding-left: 24px;
}
.blog-entry__body.rail-card a {
  color: var(--brand);
  text-underline-offset: 2px;
}
.blog-entry__body.rail-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.blog-entry__body.rail-card > iframe {
  display: block;
  width: min(100%,900px);
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  margin: 18px auto;
  border: 0;
  border-radius: 12px;
  background: #000;
}
.blog-entry__body.rail-card center {
  max-width: 100%;
}
.blog-entry__keywords {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 10px;
}
.blog-entry__keywords>span {
  padding-top: 5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-entry__keywords>div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.blog-entry__keywords b {
  padding: 4px 8px;
  border: var(--line);
  border-radius: 999px;
  background: rgb(255 106 0 / .07);
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
}
.blog-comments {
  margin-top: 16px;
}
.blog-comments__live:empty {
  display: none;
}
.blog-comments__notice {
  margin: 0 0 11px;
}
.blog-comment-composer .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.blog-comment-composer .pill .ico {
  background-color: #fff;
}
.blog-comment-composer .pill.is-pending {
  opacity: .6;
  cursor: wait;
}
.blog-comments__list {
  gap: 10px;
}
.blog-comment {
  transition: border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.blog-comment--new {
  border-color: rgb(255 106 0 / .58);
  box-shadow: 0 0 0 3px rgb(255 106 0 / .09),0 10px 25px rgb(0 0 0 / .08);
  animation: blogCommentIn .32s ease;
}
.blog-comment .post__head {
  background: linear-gradient(90deg,rgb(255 106 0 / .07),transparent 70%),var(--bg);
}
.blog-comment .post__name {
  align-items: center;
  gap: 6px;
}
.blog-comment .post__name .nick,.blog-comment .post__name .premium {
  font-size: 10px;
}
.blog-comment__body {
  padding-top: 11px;
}
.blog-comment__actions {
  padding-top: 2px;
}
.blog-comment-vote {
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
}
.blog-comment-vote.is-pending {
  opacity: .58;
}
.blog-comment-vote__btn {
  width: 30px;
  height: 30px;
}
.blog-comment-vote__btn.is-active {
  background: var(--brand);
  box-shadow: 0 0 0 1px rgb(255 106 0 / .24),0 0 13px rgb(255 106 0 / .17);
}
.blog-comment-vote__btn.is-active .ico {
  background-color: #fff !important;
}
.blog-comment-vote__btn[value="bad"].is-active {
  background: #df4545;
  box-shadow: 0 0 0 1px rgb(223 69 69 / .25),0 0 13px rgb(223 69 69 / .14);
}
.blog-comment-vote__btn:disabled {
  cursor: wait;
  opacity: .55;
}
.blog-comment-vote__score {
  background: transparent;
  min-width: 34px;
}

@keyframes blogCommentIn {
  from {
    opacity: .25;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:650px) {
  .blog-entry__header {
    align-items: stretch;
    flex-direction: column;
    padding: 13px;
  }
  .blog-entry__avatar {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .blog-entry__avatar img,.blog-entry__author img {
    width: 48px;
    height: 48px;
  }
  .blog-entry__stats {
    width: 100%;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .blog-entry__stats span,.blog-entry__stats a {
    min-height: 44px;
  }
  .blog-entry__body.rail-card {
    padding: 14px;
    font-size: 13px;
    line-height: 1.68;
  }
  .blog-entry__body.rail-card h2 {
    font-size: 19px;
  }
  .blog-entry__body.rail-card h3 {
    font-size: 17px;
  }
  .blog-entry__keywords {
    flex-direction: column;
    gap: 6px;
  }
  .blog-entry__keywords>span {
    padding-top: 0;
  }
}
.blog-entry__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin: 0 0 10px;
  padding: 0 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.blog-entry__breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.blog-entry__breadcrumbs a:hover {
  color: var(--brand);
}
.blog-entry__breadcrumbs span:last-child {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-entry__breadcrumbs span[aria-hidden="true"] {
  color: var(--brand);
}
.blog-related.rail-card {
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 14px;
}
.blog-related__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.blog-related__head>span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-related__head h2 {
  margin: 0;
  font-size: 16px;
}
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
}
.blog-related__grid article {
  min-width: 0;
  padding: 11px;
  border: var(--line);
  border-radius: 11px;
  background: linear-gradient(180deg,var(--bg),var(--bg-elev));
  transition: .18s ease;
}
.blog-related__grid article:hover {
  border-color: rgb(255 106 0 / .38);
  transform: translateY(-1px);
}
.blog-related__grid time {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
}
.blog-related__grid h3 {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}
.blog-related__grid h3 a {
  color: var(--text);
  text-decoration: none;
}
.blog-related__grid h3 a:hover {
  color: var(--brand);
}

@media (max-width:700px) {
  .blog-related__head {
    display: block;
  }
  .blog-related__head h2 {
    margin-top: 3px;
  }
  .blog-related__grid {
    grid-template-columns: 1fr;
  }
}
.blog-entry__author-name small {
  display: inline;
  margin-left: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}
.blog-entry__header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.blog-entry__edit {
  min-height: 48px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg,rgb(255 106 0 / .10),var(--bg));
  color: var(--brand) !important;
  text-decoration: none !important;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
  transition: .18s ease;
}
.blog-entry__edit .ico {
  width: 15px;
  height: 15px;
  background-color: var(--brand);
}
.blog-entry__edit:hover {
  border-color: rgb(255 106 0 / .45);
  background: rgb(255 106 0 / .14);
  transform: translateY(-1px);
}
.blog-entry__date>span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 9px;
}
.blog-entry__modified {
  position: relative;
  padding-left: 10px;
  color: var(--muted);
}
.blog-entry__modified:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
}
.blog-compose__head--edit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.blog-compose__head--edit h2 {
  margin: 3px 0 4px;
  padding: 0;
  border: 0;
  background: none;
  font-size: clamp(20px,3vw,28px);
  letter-spacing: -.035em;
}
.blog-compose__back {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 850;
  transition: .18s ease;
}
.blog-compose__back:hover {
  border-color: rgb(255 106 0 / .4);
  color: var(--brand);
  transform: translateY(-1px);
}
.blog-compose--edit .blog-publish-actions .btn--primary .ico {
  background-color: #fff;
}

@media (max-width:820px) {
  .blog-entry__header-right {
    width: 100%;
    align-items: stretch;
  }
  .blog-entry__stats {
    flex: 1;
  }
  .blog-entry__edit {
    min-height: 44px;
  }
  .blog-entry__edit span {
    display: none;
  }
  .blog-compose__head--edit {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-compose__back {
    align-self: flex-start;
  }
}

@media (max-width:520px) {
  .blog-entry__header-right {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .blog-entry__stats {
    width: auto;
  }
  .blog-entry__edit {
    width: 44px;
    padding: 0;
  }
  .blog-entry__date>span {
    display: grid;
    gap: 2px;
  }
  .blog-entry__modified {
    padding-left: 0;
  }
  .blog-entry__modified:before {
    display: none;
  }
}
.blog-feed-card__author a small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}
.blog-feed-card__metrics span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-feed-card__metrics .ico {
  width: 16px;
  height: 16px;
  background-color: var(--muted);
}
.blog-entry__labels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}
.blog-entry__labels .blog-entry__eyebrow {
  margin: 0;
}
.blog-entry__label {
  min-height: 20px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.blog-entry__label .ico {
  width: 16px;
  height: 16px;
}
.blog-entry__label--choice {
  border: 1px solid rgb(255 151 31 / .34);
  background: linear-gradient(135deg,rgb(255 151 31 / .16),rgb(255 85 0 / .08));
  color: var(--brand);
}
.blog-entry__label--choice .ico {
  background-color: var(--brand);
}
.blog-entry__label--hidden {
  border: 1px solid rgb(223 69 69 / .34);
  background: rgb(223 69 69 / .10);
  color: #df4545;
}
.blog-admin-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-admin-actions.is-pending {
  opacity: .65;
}
.blog-admin-btn {
  min-height: 48px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--muted);
  font: 850 10px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: .18s ease;
}
.blog-admin-btn .ico {
  width: 16px;
  height: 16px;
  background-color: currentColor;
}
.blog-admin-btn:hover {
  transform: translateY(-1px);
  border-color: rgb(255 106 0 / .42);
  color: var(--brand);
}
.blog-admin-btn--choice.is-active {
  border-color: rgb(255 120 24 / .42);
  background: rgb(255 106 0 / .10);
  color: var(--brand);
  box-shadow: 0 0 0 1px rgb(255 106 0 / .06);
}
.blog-admin-btn--hidden.is-active {
  border-color: rgb(223 69 69 / .42);
  background: rgb(223 69 69 / .10);
  color: #df4545;
}
.blog-admin-btn:disabled {
  cursor: wait;
  opacity: .55;
  transform: none;
}
.blog-admin-notice:empty {
  display: none;
}
.blog-admin-notice {
  margin: -2px 0 10px;
}
.blog-admin-notice .er,.blog-admin-notice .erok {
  margin: 0;
}
.blog-feed__list {
  gap: 10px;
  padding-top: 9px;
}
.blog-feed-card {
  position: relative;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 12px;
  padding: 14px;
  border: var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg,rgb(255 106 0 / .035),transparent 42%),linear-gradient(180deg,var(--bg),var(--bg-elev));
  box-shadow: 0 8px 22px rgb(0 0 0 / .045);
  transition: transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.blog-feed-card:last-child {
  border-bottom: var(--line);
}
.blog-feed-card:hover {
  transform: translateY(-2px);
  border-color: rgb(255 120 24 / .32);
  box-shadow: 0 13px 30px rgb(0 0 0 / .085),0 0 18px rgb(255 106 0 / .045);
}
.blog-feed-card.has-cover {
  grid-template-columns: 48px minmax(0,1fr) minmax(118px,154px);
}
.blog-feed-card__body {
  min-width: 0;
}
.blog-feed-card__cover {
  align-self: stretch;
  min-height: 96px;
  display: block;
  overflow: hidden;
  border-radius: 11px;
  background: var(--bg);
  text-decoration: none;
}
.blog-feed-card__cover img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  display: block;
  object-fit: cover;
  transition: transform .22s ease,filter .22s ease;
}
.blog-feed-card:hover .blog-feed-card__cover img {
  transform: scale(1.035);
  filter: brightness(1.04);
}
.blog-feed-card h3 {
  margin: 6px 0 6px;
  font-size: 18px;
}
.blog-feed-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.blog-feed-card__updated {
  padding: 2px 5px;
  border-radius: 999px;
  background: rgb(255 106 0 / .07);
  color: var(--brand);
  font-size: 8px;
  font-weight: 850;
}
.blog-choice-badge {
  width: max-content;
  max-width: 100%;
  min-height: 20px;
  margin-top: 6px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgb(255 120 24 / .30);
  border-radius: 999px;
  background: rgb(255 106 0 / .075);
  color: var(--brand);
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.blog-choice-badge .ico {
  width: 16px;
  height: 16px;
  background-color: var(--brand);
}
.blog-side-card--editor {
  position: relative;
  overflow: hidden;
}
.blog-editor-picks {
  display: grid;
  gap: 0;
  margin-top: 9px;
}
.blog-editor-picks article {
  display: grid;
  grid-template-columns: 62px minmax(0,1fr);
  gap: 9px;
  align-items: center;
  padding: 9px 0;
  border-top: var(--line);
}
.blog-editor-picks article:first-child {
  border-top: 0;
}
.blog-editor-picks article.no-cover {
  grid-template-columns: 1fr;
}
.blog-editor-picks__cover {
  width: 62px;
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
  border-radius: 9px;
  background: var(--bg);
}
.blog-editor-picks__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.blog-editor-picks__mark {
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgb(255 106 0 / .09);
}
.blog-editor-picks__mark .ico {
  width: 16px;
  height: 16px;
  background-color: var(--brand);
}
.blog-editor-picks__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}
.blog-editor-picks__title:hover {
  color: var(--brand);
}
.blog-editor-picks small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.3;
}

@media (max-width:1120px) {
  .blog-entry__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-entry__header-right {
    width: 100%;
    flex-wrap: wrap;
  }
  .blog-admin-actions {
    flex-wrap: wrap;
  }
  .blog-entry__stats {
    flex: 1;
  }
}

@media (max-width:720px) {
  .blog-feed-card,.blog-feed-card.has-cover {
    grid-template-columns: 38px minmax(0,1fr);
    padding: 12px;
  }
  .blog-feed-card__avatar {
    width: 38px;
    height: 38px;
  }
  .blog-feed-card__cover {
    grid-column: 2;
    min-height: 0;
    aspect-ratio: 16/7;
  }
  .blog-feed-card__cover img {
    min-height: 0;
  }
  .blog-feed-card h3 {
    font-size: 16px;
  }
  .blog-admin-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .blog-admin-btn {
    min-height: 42px;
  }
  .blog-admin-btn span {
    display: inline !important;
  }
  .blog-entry__header-right {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .blog-entry__header-right .blog-admin-actions {
    grid-column: 1/-1;
  }
}

@media (max-width:430px) {
  .blog-feed-card__cover {
    grid-column: 1/-1;
    aspect-ratio: 16/8;
  }
  .blog-feed-card__body {
    grid-column: 2;
  }
  .blog-feed-card.has-cover .blog-feed-card__avatar {
    grid-row: 1;
  }
  .blog-feed-card.has-cover .blog-feed-card__cover {
    grid-row: 2;
  }
  .blog-admin-btn {
    padding: 0 8px;
    font-size: 9px;
  }
}
.blog-side-card--editor {
  border-color: var(--border);
  background: var(--bg-elev);
}
.blog-editor-list {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.blog-editor-list li {
  display: grid;
  grid-template-columns: 27px minmax(0,1fr);
  gap: 9px;
  align-items: start;
  padding: 10px 0;
  border-top: var(--line);
}
.blog-editor-list__icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgb(255 106 0 / .08);
}
.blog-editor-list__icon .ico {
  width: 16px;
  height: 16px;
  margin: 0;
  background-color: var(--brand);
  filter: drop-shadow(0 0 5px rgb(255 106 0 / .22));
}
.blog-editor-list a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}
.blog-editor-list a:hover {
  color: var(--brand);
}
.blog-editor-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
}
.blog-home-hero--author {
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
}
.blog-home-author__avatar {
  width: 78px;
  height: 78px;
  display: block;
  overflow: hidden;
  border: 2px solid rgb(255 120 24 / .30);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 10px 26px rgb(0 0 0 / .10);
}
.blog-home-author__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.blog-home-hero__secondary--back {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: var(--line);
  border-radius: 10px;
  background: var(--bg-elev);
  color: var(--text);
}
.blog-home-hero__secondary--back:hover {
  border-color: rgb(255 106 0 / .32);
  background: rgb(255 106 0 / .07);
  color: var(--brand);
}
.blog-entry__author-posts {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}
.blog-entry__author-posts:hover {
  color: var(--brand);
}

@media (max-width:800px) {
  .blog-home-hero--author {
    grid-template-columns: auto minmax(0,1fr);
  }
  .blog-home-hero--author .blog-home-hero__stats {
    grid-column: 1/-1;
    width: 100%;
  }
}

@media (max-width:520px) {
  .blog-home-hero--author {
    display: block;
  }
  .blog-home-author__avatar {
    width: 66px;
    height: 66px;
    margin: 0 0 12px;
  }
  .blog-home-hero--author .blog-home-hero__stats {
    margin-top: 14px;
  }
}
.blog-tool img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  pointer-events: none;
  opacity: .82;
  transition: filter .16s ease,opacity .16s ease,transform .16s ease;
}
html[data-theme="dark"] .blog-tool img {
  filter: brightness(0) invert(1);
  opacity: .94;
}
html[data-theme="light"] .blog-tool img {
  filter: none;
  opacity: .76;
}
.blog-tool:hover img,.blog-tool:focus-visible img {
  opacity: 1;
}
.blog-tool.is-active {
  border-color: var(--brand);
  background: linear-gradient(135deg,var(--brand),#fd5000);
  color: #fff;
  box-shadow: 0 5px 14px rgb(255 90 0 / .18);
}
.blog-tool.is-active img {
  filter: brightness(0) invert(1) !important;
  opacity: 1;
}
.blog-tool--youtube.is-active {
  color: #fff;
}
.blog-editor-popover[hidden] {
  display: none !important;
}
.blog-editor-popover {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 25;
  width: min(520px,calc(100% - 16px));
  padding: 12px;
  border: 1px solid color-mix(in oklab,var(--border) 65%,var(--brand) 35%);
  border-radius: 12px;
  background: var(--bg-elev);
  color: var(--text);
  box-shadow: 0 18px 48px rgb(0 0 0 / .24),0 0 0 1px rgb(255 255 255 / .025);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.blog-editor-popover__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}
.blog-editor-popover__head b {
  font-size: 13px;
  font-weight: 900;
}
.blog-editor-popover__close {
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: 700 20px/1 system-ui;
  cursor: pointer;
}
.blog-editor-popover__close:hover {
  background: rgb(255 106 0 / .10);
  color: var(--brand);
}
.blog-editor-popover__form {
  display: grid;
  gap: 7px;
}
.blog-editor-popover__input {
  min-height: 42px;
  font-size: 13px;
}
.blog-editor-popover__hint {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.blog-editor-popover__actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
}
.blog-editor-popover__spacer {
  flex: 1 1 auto;
}
.blog-editor-popover__actions .btn {
  min-height: 34px;
  padding: 8px 11px;
  font-size: 11px;
}
.blog-editor-popover__remove {
  color: #df4545;
  border-color: rgb(223 69 69 / .30);
}
.blog-editor-popover__remove:hover {
  border-color: #df4545;
  background: rgb(223 69 69 / .08);
}

@media (max-width:620px) {
  .blog-editor-popover {
    top: calc(100% + 6px);
    right: 0;
    width: min(520px,calc(100vw - 20px));
    padding: 10px;
  }
  .blog-editor-popover__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .blog-editor-popover__remove {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .blog-editor-popover__spacer {
    display: none;
  }
  .blog-editor-popover__actions .btn {
    width: 100%;
  }
}
.blog-editor-toolbar.is-stuck .blog-tool {
  background: color-mix(in oklab,var(--bg-elev) 92%,transparent);
}
.blog-editor-toolbar.is-stuck .blog-tool:hover,.blog-editor-toolbar.is-stuck .blog-tool:focus-visible {
  background: rgb(255 106 0 / .12);
}
.blog-editor-toolbar.is-stuck .blog-tool.is-active {
  background: linear-gradient(135deg,var(--brand),#fd5000);
}

@media (max-width:800px) {
  .blog-editor-toolbar.is-stuck {
    left: 0;
    right: 0;
  }
  .blog-editor-toolbar .blog-tool {
    flex: 0 0 auto;
  }
  .blog-editor-toolbar .blog-tool-sep {
    flex: 0 0 1px;
  }
  .blog-editor-toolbar.has-popover {
    overflow: visible;
    flex-wrap: wrap;
  }
}
.blog-entry>.blog-entry__header {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  isolation: isolate;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.blog-entry__header .blog-entry__author {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.blog-entry__header .blog-entry__header-right {
  min-width: 0;
}
.blog-entry__header .blog-entry__stats {
  min-width: 0;
}

/* Tablet widths have much less usable content space because Minatrix still has navigation/right columns. Use a deliberate two-row control layout instead of relying on flex wrapping. */

@media (min-width:721px) and (max-width:1180px) {
  .blog-entry__header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px 15px;
  }
  .blog-entry__author {
    width: 100%;
    min-width: 0;
  }
  .blog-entry__author-copy {
    min-width: 0;
    max-width: calc(100% - 70px);
  }
  .blog-entry__author-name {
    max-width: 100%;
  }
  .blog-entry__header-right {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 8px;
    align-items: stretch;
  }
  .blog-entry__stats {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .blog-entry__stats span,.blog-entry__stats a {
    min-width: 0;
  }
  .blog-entry__edit {
    min-width: 48px;
    max-width: 150px;
  }
  .blog-admin-actions {
    grid-column: 1/-1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
  }
  .blog-admin-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 9px;
  }
}

@media (min-width:721px) and (max-width:860px) {
  .blog-entry__edit {
    width: 46px;
    padding: 0;
  }
  .blog-entry__edit span {
    display: none;
  }
  .blog-entry__stats small {
    font-size: 7px;
  }
}
.blog-entry {
  container-type: inline-size;
  container-name: blog-entry;
}
.blog-entry>.blog-entry__header {
  z-index: auto;
}

@container blog-entry (max-width:920px) {
  .blog-entry__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 15px;
  }
  .blog-entry__author {
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
  }
  .blog-entry__author-copy {
    min-width: 0;
    max-width: none;
    flex: 1 1 auto;
  }
  .blog-entry__author-name {
    max-width: 100%;
  }
  .blog-entry__date>span {
    min-width: 0;
  }
  .blog-entry__header-right {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 8px;
    align-items: stretch;
  }
  .blog-entry__stats {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 7px;
  }
  .blog-entry__stats span,
    .blog-entry__stats a {
    min-width: 0;
  }
  .blog-entry__edit {
    min-width: 48px;
    max-width: 150px;
  }
  .blog-admin-actions {
    grid-column: 1/-1;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
  }
  .blog-admin-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 9px;
  }
}

@container blog-entry (max-width:620px) {
  .blog-entry__header {
    padding: 13px;
  }
  .blog-entry__header-right {
    grid-template-columns: minmax(0,1fr) auto;
  }
  .blog-entry__edit {
    width: 46px;
    min-width: 46px;
    padding: 0;
  }
  .blog-entry__edit span {
    display: none;
  }
  .blog-entry__stats small {
    font-size: 7px;
  }
}

@container blog-entry (max-width:430px) {
  .blog-entry__header-right {
    grid-template-columns: 1fr;
  }
  .blog-entry__edit {
    width: 100%;
    max-width: none;
  }
  .blog-entry__edit span {
    display: inline;
  }
  .blog-admin-actions {
    grid-template-columns: 1fr;
  }
}
.blog-feed {
  container-type: inline-size;
  container-name: blog-feed;
}

@container blog-feed (max-width:620px) {
  .blog-feed-card,
    .blog-feed-card.has-cover {
    grid-template-columns: 40px minmax(0,1fr);
    gap: 10px;
    padding: 12px;
  }
  .blog-feed-card__avatar {
    width: 40px;
    height: 40px;
    grid-column: 1;
  }
  .blog-feed-card__body {
    grid-column: 2;
    min-width: 0;
  }
  .blog-feed-card.has-cover .blog-feed-card__avatar,
    .blog-feed-card.has-cover .blog-feed-card__body {
    grid-row: 2;
  }
  .blog-feed-card__cover {
    grid-column: 1/-1;
    grid-row: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16/8;
    border-radius: 12px;
  }
  .blog-feed-card__cover img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
  .blog-feed-card h3 {
    margin-top: 5px;
    font-size: 16px;
  }
  .blog-feed-card p {
    -webkit-line-clamp: 3;
    font-size: 11px;
  }
  .blog-feed-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@container blog-feed (max-width:390px) {
  .blog-feed-card,
    .blog-feed-card.has-cover {
    grid-template-columns: 36px minmax(0,1fr);
    padding: 10px;
  }
  .blog-feed-card__avatar {
    width: 36px;
    height: 36px;
  }
  .blog-feed-card__cover {
    aspect-ratio: 16/9;
  }
  .blog-feed-card__author {
    gap: 4px;
  }
  .blog-feed-card__metrics {
    white-space: normal;
    flex-wrap: wrap;
  }
}
.blog-comment__admin {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.blog-comment-delete-form {
  margin: 0;
  padding: 0;
  display: inline-flex;
}
.blog-comment__manage-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: .16s ease;
}
.blog-comment__manage-btn:hover {
  border-color: rgb(255 106 0 / .25);
  background: rgb(255 106 0 / .10);
  color: var(--brand);
}
.blog-comment__manage-btn--delete:hover {
  border-color: rgb(220 55 55 / .26);
  background: rgb(220 55 55 / .10);
}
.blog-comment__manage-btn .ico {
  margin: 0;
}
.blog-comment-edit-form {
  margin: 0 10px 8px;
  padding: 10px;
  border: var(--line);
  border-radius: 11px;
  background: var(--bg);
}
.blog-comment-edit-form[hidden] {
  display: none !important;
}
.blog-comment-edit-form__text {
  min-height: 92px;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}
.blog-comment-edit-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 8px;
}
.blog-comment-edit-form.is-pending {
  opacity: .65;
}

@media (max-width:520px) {
  .blog-comment__manage-btn {
    width: 28px;
    height: 28px;
  }
  .blog-comment-edit-form {
    margin: 0 8px 7px;
    padding: 8px;
  }
  .blog-comment-edit-form__actions .btn {
    min-height: 36px;
    padding: 8px 10px;
  }
}
.blog-tool--minatrix .ico {
  width: 16px;
  height: 16px;
  margin: 0;
  background-color: var(--brand);
  filter: drop-shadow(0 0 5px rgb(255 106 0 / .24));
}
.blog-tool--minatrix:hover .ico,.blog-tool--minatrix:focus-visible .ico,.blog-tool--minatrix.is-active .ico {
  background-color: #fff;
}
.blog-editor-content .blog-embed--minatrix {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  margin: 20px 0;
  padding: 12px 46px 12px 54px;
  border: 1px solid rgb(255 106 0 / .28);
  border-radius: 12px;
  background: radial-gradient(circle at 0 50%,rgb(255 106 0 / .16),transparent 28%),linear-gradient(180deg,var(--bg),var(--bg-elev));
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}
.blog-editor-content .blog-embed--minatrix::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background-color: var(--brand);
  -webkit-mask-image: url(/img/ico.webp?v2.1);
  mask-image: url(/img/ico.webp?v2.1);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 -96px;
  mask-position: 0 -96px;
  filter: drop-shadow(0 0 7px rgb(255 106 0 / .34));
}
.blog-editor-content .blog-embed--minatrix::after {
  content: "MINATRIX.FM";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .05em;
}
.blog-minatrix-player-host {
  min-height: 132px;
  margin: 24px 0;
  border-radius: 20px;
}
.blog-minatrix-player-fallback {
  min-height: 132px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 106 0 / .25);
  border-radius: 20px;
  background: linear-gradient(135deg,rgb(255 106 0 / .10),transparent 48%),var(--bg-elev);
  color: var(--brand) !important;
  font-weight: 900;
  text-align: center;
  text-decoration: none !important;
}
.blog-minatrix-player-fallback:hover {
  border-color: rgb(255 106 0 / .5);
  background: rgb(255 106 0 / .10);
}

@media (max-width:520px) {
  .blog-editor-content .blog-embed--minatrix {
    padding-right: 14px;
  }
  .blog-editor-content .blog-embed--minatrix::after {
    display: none;
  }
  .blog-minatrix-player-host,.blog-minatrix-player-fallback {
    min-height: 112px;
  }
}
.blog-entry__stats {
  grid-template-columns: repeat(3,minmax(92px,1fr));
}
.blog-entry__stats button.blog-entry-like {
  font: inherit;
  cursor: pointer;
  border: var(--line);
  outline: 0;
}
.blog-entry__stats button.blog-entry-like,
.blog-entry__stats a.blog-entry-like {
  min-height: 48px;
  padding: 7px 11px;
  display: grid;
  grid-template-columns: 18px auto;
  grid-template-rows: auto auto;
  column-gap: 7px;
  align-items: center;
  border-radius: 12px;
  background: color-mix(in oklab,var(--bg) 88%,var(--brand) 12%);
  color: var(--text) !important;
  text-decoration: none !important;
  transition: .18s ease;
}
.blog-entry__stats .blog-entry-like:hover {
  border-color: rgb(255 106 0 / .45);
  background: rgb(255 106 0 / .10);
  transform: translateY(-1px);
}
.blog-entry__stats .blog-entry-like .ico {
  grid-row: 1/3;
  width: 16px;
  height: 16px;
  background-color: var(--ico);
}
.blog-entry__stats .blog-entry-like.is-active {
  border-color: rgb(255 106 0 / .42);
  background: rgb(255 106 0 / .13);
  box-shadow: 0 0 0 1px rgb(255 106 0 / .05),0 0 16px rgb(255 106 0 / .08);
}
.blog-entry__stats .blog-entry-like.is-active .ico {
  background-color: var(--brand);
  filter: drop-shadow(0 0 6px rgb(255 106 0 / .38));
}
.blog-entry__stats .blog-entry-like.is-pending {
  opacity: .58;
  cursor: wait;
  transform: none;
}
.blog-entry__stats .blog-entry-like b {
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}
.blog-entry__stats .blog-entry-like small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.blog-comment--reply {
  margin-left: 26px;
  border-left: 2px solid rgb(255 106 0 / .22);
}
.blog-comment__reply-context {
  max-width: 100%;
  margin: 0 0 9px;
  padding: 7px 9px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgb(255 106 0 / .16);
  border-radius: 9px;
  background: rgb(255 106 0 / .055);
  color: var(--muted) !important;
  text-decoration: none !important;
}
.blog-comment__reply-context:hover {
  border-color: rgb(255 106 0 / .32);
  background: rgb(255 106 0 / .08);
}
.blog-comment__reply-context .ico {
  flex: 0 0 16px;
  margin-top: 1px;
  background-color: var(--brand);
}
.blog-comment__reply-context span {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.blog-comment__reply-context b {
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
}
.blog-comment__reply-context small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}
.blog-comment__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.blog-comment__reply-btn {
  min-height: 29px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 800 10px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  cursor: pointer;
  transition: .16s ease;
}
.blog-comment__reply-btn .ico {
  width: 16px;
  height: 16px;
  background-color: var(--muted);
}
.blog-comment__reply-btn:hover {
  background: rgb(255 106 0 / .09);
  color: var(--brand);
}
.blog-comment__reply-btn:hover .ico {
  background-color: var(--brand);
}
.blog-comment-inline-reply {
  margin: 0 10px 8px;
  padding: 10px;
  border: 1px solid rgb(255 106 0 / .22);
  border-radius: 11px;
  background: linear-gradient(180deg,rgb(255 106 0 / .045),transparent),var(--bg);
}
.blog-comment-inline-reply__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
}
.blog-comment-inline-reply__head button {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 19px;
  cursor: pointer;
}
.blog-comment-inline-reply__head button:hover {
  background: rgb(255 106 0 / .09);
  color: var(--brand);
}
.blog-comment-inline-reply__text {
  min-height: 68px;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}
.blog-comment-inline-reply__actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 8px;
}
.blog-comment-inline-reply__actions .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-comment-inline-reply__actions .pill .ico {
  background-color: #fff;
}
.blog-comment-inline-reply.is-pending {
  opacity: .65;
}

@container blog-entry (max-width:920px) {
  .blog-entry__stats {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@container blog-entry (max-width:520px) {
  .blog-entry__stats {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 5px;
  }
  .blog-entry__stats span,.blog-entry__stats a,.blog-entry__stats button.blog-entry-like {
    padding: 6px 7px;
    column-gap: 4px;
  }
  .blog-entry__stats small,.blog-entry__stats .blog-entry-like small {
    font-size: 6.5px;
  }
  .blog-comment--reply {
    margin-left: 10px;
  }
  .blog-comment__reply-btn span {
    display: none;
  }
  .blog-comment__reply-btn {
    width: 29px;
    padding: 0;
    justify-content: center;
  }
  .blog-comment-inline-reply {
    margin: 0 8px 7px;
    padding: 8px;
  }
}
.blog-entry-like {
  min-width: 0;
}