/* Modern skin inspired by the provided mockup */
.msc-wrap,
.msc-wrap * {
  box-sizing: border-box;
}
.msc-card {
  width: 100%;
  border-radius: 18px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.comment-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #f8f8fa;
}

.comment-title .count {
  opacity: 0.8;
  font-weight: 500;
}

.icon-bubble {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #f4d782;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-bubble::before {
  content: "";
  width: 12px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #f4d782;
  border-top-color: transparent;
}

.tabs {
  display: inline-flex;
  gap: 6px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.msc-tab-btn {
  min-width: 90px;
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #cfd1db;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.24s ease;
}

.msc-tab-btn.active {
  background: linear-gradient(135deg, #f7e08c, #f5cd6a);
  color: #14141b;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.msc-tab-btn:not(.active):hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  color: #f7f7fa;
}

.login-note {
  font-size: 13px;
  color: #9ca1b0;
  margin-bottom: 18px;
}

.login-note a {
  color: #f4d782;
  text-decoration: none;
  font-weight: 500;
}

.login-note a:hover {
  text-decoration: underline;
}

.comment-box {
  border-radius: 16px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 26px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #f2f3f7;
  font-size: 14px;
  font-weight: 400;
}

.comment-input {
  background: #191b24;
  border-radius: 12px;
  border: 1px solid rgb(244 215 130 / 11%);
  padding: 14px 16px;
  position: relative;
}

.comment-input:focus-within {
  border-color: #f4d782;
  box-shadow: 0 0 0 1px rgba(244, 215, 130, 0.3);
}

.comment-input textarea {
  min-height: 110px;
  resize: none;
  padding-right: 56px;
  border: none;
  background: transparent;
}

.comment-input textarea::placeholder {
  color: #707689;
}

.counter {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 11px;
  color: #7c8090;
}

.msc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 10px;
}

.msc-label {
  display: block;
  font-size: 12px;
  color: #9499a9;
  margin-bottom: 6px;
}

.comment-form .msc-grid input[type="text"],
.comment-form .msc-grid input[type="email"],
.msc-reply-form .msc-grid input[type="text"],
.msc-reply-form .msc-grid input[type="email"] {
  border-radius: 12px;
  border: 1px solid rgb(244 215 130 / 11%);
  background: #191b24;
  box-shadow: inset 0 0 0 1px rgba(12, 12, 17, 0.5);
  padding: 12px 14px;
  color: #f2f3f7;
  width: 100%;
  display: block;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form .msc-grid input[type="text"]:focus,
.comment-form .msc-grid input[type="email"]:focus,
.msc-reply-form .msc-grid input[type="text"]:focus,
.msc-reply-form .msc-grid input[type="email"]:focus {
  border-color: #f4d782;
  box-shadow: 0 0 0 1px rgba(244, 215, 130, 0.35);
}

.msc-grid input::placeholder {
  color: #656b7b;
}

.msc-turnstile-wrap {
  margin: 12px 0;
}

.comment-footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-footer-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.reveal-toggle span {
  font-size: 13px;
  color: #d3d6df;
}

.reveal-toggle input {
  display: none;
}

.toggle-outer {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at top, #202536, #0a0c13);
  padding: 2px;
  display: inline-flex;
  align-items: center;
  transition: all 0.22s ease;
}

.toggle-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f4d782;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
  transition: transform 0.22s ease;
}

.avatar-picker {
  display: inline-flex;
  align-items: center;
}

.avatar-picker input {
  display: none;
}

.avatar-picker-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: #d3d6df;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.avatar-picker-btn:hover {
  border-color: #f4d782;
  color: #fff;
}

.avatar-picker.has-avatar .avatar-picker-btn {
  border-color: rgba(244, 215, 130, 0.5);
  color: #fff7da;
}

.avatar-picker.is-disabled .avatar-picker-btn {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.avatar-picker .avatar-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.avatar-picker.has-avatar .avatar-thumb {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.msc-reply-form .avatar-picker {
  margin-top: 10px;
}

.reveal-toggle input:checked + .toggle-outer {
  border-color: #f4d782;
  background: radial-gradient(circle at top, #f6e398, #f1c968);
}

.reveal-toggle input:checked + .toggle-outer .toggle-dot {
  transform: translateX(16px);
  background: #14151b;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #f7e08c, #f3c75f);
  color: #141419;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn-send .arrow {
  width: 0;
  height: 0;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.btn-send:hover {
  filter: brightness(1.05);
  transform: translateY(-0.5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-send:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.msc-note {
  font-size: 12px;
  color: #8c90a2;
  margin-top: 12px;
}

.msc-list {
  display: grid;
  gap: 18px;
}

.msc-list .msc-empty {
  color: #9da1b3;
  font-size: 14px;
  margin-top: 10px;
}

.comment-item {
  --msc-thread-offset: calc(42px + 14px);
  display: flex;
  gap: 14px;
  padding-top: 5px;
}

.comment-item:first-of-type {
  margin-top: 6px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgb(255 193 7 / 48%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

.msc-initial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #f6dd87;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12.5px;
}

.username {
  font-weight: 600;
  color: #f7f7fa;
}

.vip-badge {
  display: inline-flex;
  gap: 3px;
}

.vip-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4d782;
}

.msc-badge-admin {
  padding: 1px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #111;
  line-height: 1.4;
}

.episode-tag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(22, 26, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #c4c7d2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.time {
  position: relative;
  padding-left: 10px;
  color: #868b9a;
  font-size: 11.5px;
}

.time::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #545866;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.comment-text {
  font-size: 14px;
  color: #e5e7f0;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.msc-mention {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(86, 90, 122, 0.85);
  color: #f7f8ff;
  font-weight: 600;
  font-size: 12px;
  margin-right: 4px;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  color: #a3a7b6;
  flex-wrap: wrap;
}

.circle-actions {
  display: inline-flex;
  gap: 8px;
}

.circle-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(42, 44, 56, 0.8);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b4b7c3;
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", "Font Awesome 6 Pro", sans-serif;
  font-weight: 900;
  font-size: 12px;
}

.circle-btn::before {
  content: var(--fa-symbol);
  line-height: 1;
}

.circle-btn:hover {
  transform: translateY(-1px);
}

.circle-btn:active {
  transform: translateY(1px);
}

.circle-btn-up {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
  --fa-symbol: "\f164";
}

.circle-btn-down {
  border-color: rgba(255, 93, 82, 0.4);
  background: rgba(255, 93, 82, 0.18);
  color: #ff887c;
  --fa-symbol: "\f004";
}

.text-actions {
  display: inline-flex;
  gap: 16px;
}

.text-link {
  border: none;
  background: transparent;
  color: #b6bac7;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  transition: color 0.18s ease;
}

.text-link:hover {
  color: #f4d782;
}

.msc-caret {
  display: none;
}

.text-link-muted {
  color: #5c5f6e;
  cursor: default;
}

.msc-item-admin .comment-text {
  color: #fdf7d8;
}

.msc-reply-form {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top left, #181c28, #090b11 60%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.65);
}

.msc-reply-form textarea {
  min-height: 80px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(244, 215, 130, 0.25);
  background: rgba(8, 10, 16, 0.94);
  color: #f2f3f7;
  width: 100%;
  margin-bottom: 12px;
  box-shadow: inset 0 0 0 1px rgba(11, 12, 18, 0.75);
}

.msc-reply-form textarea::placeholder {
  color: #707689;
}

.msc-reply-form .msc-grid {
  margin: 10px 0;
}

.msc-reply-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.msc-reply-form .msc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7e08c, #f3c75f);
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 600;
  color: #141419;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.msc-reply-footer .avatar-picker {
  margin-top: 0;
}

.msc-reply-footer .avatar-picker-btn {
  min-height: 36px;
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.msc-replies-acc-panel {
  margin-top: 14px;
  margin-left: calc(-1 * var(--msc-thread-offset, 56px));
  width: calc(100% + var(--msc-thread-offset, 56px));
}

.msc-replies {
display: grid;
    gap: 12px;
    margin: 10px 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    background-color: #272a36;
    padding: 10px;
    border-radius: 12px;
}
span.msc-replies-acc-text {
    color: #ffd166;
}
.msc-loadmore,
.msc-loadmore-replies {
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: rgba(244, 215, 130, 0.14);
  color: #f8f8fa;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.msc-loadmore:hover,
.msc-loadmore-replies:hover {
  background: rgba(244, 215, 130, 0.24);
  color: #fff6d6;
}

.msc-loadmore:disabled,
.msc-loadmore-replies:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.msc-status {
  margin-bottom: 12px;
}

.msc-alert {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.msc-success {
  border-color: #22c55e55;
  color: #86efac;
}

.msc-error {
  border-color: #ef444455;
  color: #fca5a5;
}

.msc-disabled-note {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #d0d3e0;
  font-size: 14px;
  line-height: 1.6;
}

.msc-login-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 8, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.msc-login-modal.is-visible {
  display: flex;
}

.msc-avatar-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 8, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.msc-avatar-modal.is-visible {
  display: flex;
}

.msc-avatar-dialog {
  width: min(620px, 94vw);
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(19, 23, 36, 0.98), rgba(7, 9, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 34px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.75);
  position: relative;
  color: #f7f8fb;
}

.msc-avatar-dialog h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.msc-avatar-desc {
  font-size: 14px;
  color: #a6acc0;
  margin-bottom: 20px;
}

.msc-avatar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.msc-avatar-tab {
  border-radius: 999px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d4d8e7;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.msc-avatar-tab.is-active {
  background: linear-gradient(135deg, #404664, #262b43 60%);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fdf4d4;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}

.msc-avatar-tab:focus-visible {
  outline: 2px solid rgba(244, 196, 93, 0.8);
  outline-offset: 2px;
}

.msc-avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.msc-avatar-option {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
  color: #edeef5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.msc-avatar-option img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.msc-avatar-option span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.msc-avatar-option:hover {
  border-color: #f8da8b;
  transform: translateY(-3px);
}

.msc-avatar-option.is-selected {
  border-color: #f8da8b;
  box-shadow: 0 0 0 1px rgba(248, 218, 139, 0.4), 0 18px 35px rgba(248, 218, 139, 0.15);
}

.msc-avatar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.msc-avatar-clear {
  border: none;
  background: transparent;
  color: #f8cb7c;
  font-size: 12px;
  cursor: pointer;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: auto;
}

.msc-avatar-clear:hover {
  color: #ffe7b9;
}

.msc-avatar-save,
.msc-avatar-dismiss {
  border-radius: 999px;
  padding: 10px 26px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.msc-avatar-save {
  background: linear-gradient(135deg, #ffe48f, #fdd159);
  color: #1b1530;
  box-shadow: 0 12px 28px rgba(253, 209, 89, 0.35);
}

.msc-avatar-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(253, 209, 89, 0.45);
}

.msc-avatar-dismiss {
  background: rgba(13, 16, 28, 0.8);
  color: #f4f3ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.msc-avatar-dismiss:hover {
  background: rgba(255, 255, 255, 0.12);
}

.msc-avatar-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #f7f7fa;
  font-size: 18px;
  cursor: pointer;
}

.msc-avatar-empty {
  text-align: center;
  padding: 20px 10px;
  font-size: 13px;
  color: #c7cad6;
}

.msc-login-dialog {
  width: min(360px, 90vw);
  border-radius: 18px;
  background: rgba(10, 12, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
  position: relative;
}

.msc-login-dialog h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.msc-login-dialog p {
  font-size: 13px;
  color: #9ea2b4;
  margin-bottom: 20px;
}

.msc-login-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f7e08c, #f3c75f);
  color: #141419;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.msc-login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7fa;
  cursor: pointer;
}

.msc-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

.msc-form input:focus,
.msc-reply-form input:focus,
.msc-reply-form textarea:focus {
  border-color: #f4d782;
  box-shadow: 0 0 0 1px rgba(244, 215, 130, 0.3);
}

.msc-list-shell {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .comment-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .comment-footer-left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
  }

  .btn-send {
    align-self: stretch;
    justify-content: center;
  }

  .msc-grid {
    grid-template-columns: 1fr;
  }

  .msc-avatar-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .msc-replies {
    padding-left: 0;
    width: 100%;
  }

  .msc-replies-acc-panel {
    margin-left: calc(-1 * var(--msc-thread-offset, 56px));
    width: calc(100% + var(--msc-thread-offset, 56px));
  }

  .msc-reply-footer {
    flex-direction: column;
    align-items: stretch;
  }
}
