/* =========================================================
   SINGLE POST — FC Play
========================================================= */

:root {
  --single-text: #f8f5ee;
  --single-muted: rgba(214, 205, 190, 0.68);
  --single-gold: #c9962a;
  --single-gold-2: #f1cd7a;
  --single-line: rgba(201, 150, 42, 0.12);
  --single-line-strong: rgba(201, 150, 42, 0.22);
  --single-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.fc-single-post-page {
  color: var(--single-text);
  background: #050403;
}

.fc-single-post-page .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* HERO */

.fc-single-hero {
  position: relative;
  min-height: 360px;
  padding: 64px 0 92px;
  overflow: hidden;
  background: linear-gradient(180deg, #090706, #050403);
  isolation: isolate;
}

.fc-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--fc-single-hero-image, none) center 35% / cover no-repeat;
  opacity: 0.72;
  transform: scale(1.02);
}

.fc-single-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 4, 3, 0) 0%,
    rgba(5, 4, 3, 0.72) 48%,
    #050403 100%
  );
}

.fc-single-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(201, 150, 42, 0.22),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(5, 4, 3, 0.28) 0%,
      rgba(5, 4, 3, 0.55) 56%,
      rgba(5, 4, 3, 0.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.9),
      rgba(5, 4, 3, 0.42),
      rgba(5, 4, 3, 0.94)
    );
}

.fc-single-hero-inner {
  position: relative;
  z-index: 1;
}

.fc-single-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  margin-bottom: 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--single-text);
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.fc-single-back:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 150, 42, 0.22);
}

.fc-single-meta-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(214, 205, 190, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.fc-single-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fc-single-author img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fc-single-author strong {
  color: #fff;
}

.fc-single-cat {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--single-gold), var(--single-gold-2));
  color: #1b1408;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fc-single-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.fc-single-meta-item i {
  color: var(--single-gold);
}

.fc-single-title {
  max-width: 900px;
  margin: 0;
  font-family: "Rajdhani", Inter, system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
}

.fc-single-excerpt {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(248, 245, 238, 0.74);
  font-size: 1.02rem;
  line-height: 1.72;
}

/* CONTENT */

.fc-single-content-section {
  padding: 0 0 70px;
}

.fc-single-content-card {
  width: 100%;
  margin: -42px auto 0;
  z-index: 2;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  padding: 34px 36px;

  border: 1px solid rgba(201, 150, 42, 0.14);

  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(201, 150, 42, 0.14),
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 100%,
      rgba(201, 150, 42, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(15, 12, 8, 0.96), rgba(6, 4, 3, 0.995));

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(201, 150, 42, 0.08);
}

.fc-single-content {
  padding: 0;
  color: rgba(248, 245, 238, 0.88);
  font-size: 1rem;
  line-height: 1.9;
}

.fc-single-content > *:first-child {
  margin-top: 0;
}

.fc-single-content > *:last-child {
  margin-bottom: 0;
}

.fc-single-content p {
  margin: 0 0 1.25em;
}

.fc-single-content strong {
  color: #fff;
  font-weight: 900;
}

.fc-single-content h2,
.fc-single-content h3,
.fc-single-content h4,
.fc-single-content h5,
.fc-single-content h6 {
  margin: 1.75em 0 0.65em;
  font-family: "Rajdhani", Inter, system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
}

.fc-single-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.fc-single-content h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.fc-single-content h4 {
  font-size: 1.2rem;
}

.fc-single-content a {
  color: var(--single-gold-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(241, 205, 122, 0.4);
}

.fc-single-content a:hover {
  color: #fff;
  text-decoration-color: var(--single-gold-2);
}

.fc-single-content ul,
.fc-single-content ol {
  margin: 0 0 1.4em 1.25em;
  padding: 0;
}

.fc-single-content li {
  margin-bottom: 0.55em;
}

.fc-single-content blockquote {
  margin: 1.8em 0;
  padding: 20px 22px;
  border-left: 4px solid var(--single-gold);
  border-radius: 18px;
  background: rgba(201, 150, 42, 0.08);
  color: #fff;
}

.fc-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(201, 150, 42, 0.12);
}

.fc-single-content figure {
  margin: 1.8em 0;
}

.fc-single-content figcaption {
  margin-top: 10px;
  text-align: center;
  color: var(--single-muted);
  font-size: 0.9rem;
}

.fc-single-content pre {
  overflow-x: auto;
  margin: 1.7em 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(201, 150, 42, 0.12);
  background: rgba(0, 0, 0, 0.38);
  color: #f3f5f7;
}

.fc-single-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.94em;
}

.fc-single-content :not(pre) > code {
  padding: 0.18em 0.45em;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-single-post-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.fc-single-post-pagination .post-page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.fc-single-post-pagination .post-page-numbers.current {
  background: linear-gradient(135deg, var(--single-gold), var(--single-gold-2));
  color: #1b1408;
}

/* TAGS */

.fc-single-footer {
  padding: 0;
}

.fc-single-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--single-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.fc-single-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 245, 238, 0.72);
  font-weight: 800;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.fc-single-tag:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(201, 150, 42, 0.22);
}

/* --------------------------------------------------- */

/* COMMENTS */

.fc-single-comments {
  width: 100%;
  margin: 42px auto 0;
}

.fc-single-comments-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.fc-single-comments-head i {
  color: var(--single-gold);
  font-size: 1.1rem;
}

.fc-single-comments-head h2 {
  margin: 0;
  font-family: "Rajdhani", Inter, system-ui, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.fc-single-comments-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.fc-single-comments-card > h2:first-of-type,
.fc-single-comments-card > h3:first-of-type {
  display: none;
}

/* Comment form */

.fc-single-comments-card .comment-respond {
  margin: 0 0 34px;
  padding: 0;
}

.fc-single-comments-card .logged-in-as,
.fc-single-comments-card .comment-notes,
.fc-single-comments-card .comment-form-comment label {
  display: none;
}

.fc-single-comments-card .comment-form {
  display: grid;
  gap: 16px;
}

.fc-single-comments-card .comment-form-comment,
.fc-single-comments-card .form-submit {
  margin: 0;
}

.fc-single-comments-card textarea {
  width: 100%;
  min-height: 104px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  outline: none;
  resize: vertical;
}

.fc-single-comments-card textarea::placeholder {
  color: rgba(214, 205, 190, 0.48);
}

.fc-single-comments-card textarea:focus,
.fc-comment-editing textarea {
  border-color: rgba(201, 150, 42, 0.34);
  box-shadow: 0 0 0 3px rgba(201, 150, 42, 0.08);
}

.fc-single-comments-card .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--single-gold), var(--single-gold-2));
  color: #1b1408;
  font-family:
    "Exo 2",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.fc-single-comments-card .submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(201, 150, 42, 0.25);
  filter: brightness(1.04);
}

/* Reply notice */

.fc-reply-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 150, 42, 0.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 150, 42, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.018);
  color: rgba(214, 205, 190, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.fc-reply-notice a {
  color: var(--single-gold-2);
  font-weight: 900;
  text-decoration: none;
}

.fc-reply-notice small {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.fc-reply-notice #cancel-comment-reply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 150, 42, 0.18);
  background: rgba(201, 150, 42, 0.08);
  color: var(--single-gold-2);
  font-size: 0.66rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.fc-reply-notice #cancel-comment-reply-link:hover {
  background: rgba(201, 150, 42, 0.14);
  color: #fff;
}

.fc-reply-notice span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fc-reply-notice strong {
  color: var(--single-gold-2);
  font-weight: 900;
}

/* Login notice */

.fc-comment-login-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-bottom: 34px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.fc-comment-login-inline a {
  color: var(--single-gold-2);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.fc-comment-login-inline a:hover {
  color: #fff;
}

/* Comment feed */

.fc-comments-feed {
  margin: 0;
}

.fc-comments-feed ol,
.fc-comments-feed .children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-comments-feed .comment-list {
  display: grid;
  gap: 22px;
}

.fc-comments-feed .comment {
  position: relative;
  margin: 0;
  padding: 0;
}

.fc-comments-feed .comment::marker {
  content: "";
}

.fc-comments-feed .comment-body {
  position: relative;
  min-height: 38px;
  padding: 0 72px 18px 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-comments-feed .comment-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
}

.fc-comments-feed .comment-author .avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(201, 150, 42, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.fc-comments-feed .comment-author .says {
  display: none;
}

.fc-comments-feed .comment-meta {
  margin: 0 0 9px;
  color: rgba(214, 205, 190, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
}

.fc-comments-feed .comment-meta a {
  color: inherit;
  text-decoration: none;
}

.fc-comments-feed .comment-body p {
  margin: 0;
  color: rgba(248, 245, 238, 0.84);
  font-size: 0.95rem;
  line-height: 1.62;
}

/* Comment action icons */

.fc-comments-feed .comment-body {
  position: relative;
  padding-right: 104px;
}

.fc-comment-action-bar {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: all 0.18s ease;
}

.fc-comments-feed .comment-body:hover .fc-comment-action-bar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fc-comments-feed .comment-body:focus-within .fc-comment-action-bar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fc-comment-action-bar .reply {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.fc-comment-action-bar .comment-reply-link,
.fc-comment-action-bar .fc-comment-edit-btn,
.fc-comment-action-bar .fc-comment-delete-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(214, 205, 190, 0.6);
  font-size: 0.7rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

/* Reply */
.fc-comment-action-bar .comment-reply-link:hover {
  transform: translateY(-1px);
  background: rgba(201, 150, 42, 0.14);
  color: var(--single-gold-2);
}

/* Edit (ceruzka – napr. modrá) */
.fc-comment-action-bar .fc-comment-edit-btn:hover {
  transform: translateY(-1px);
  background: rgba(80, 160, 255, 0.14);
  color: #6fb3ff;
}

/* Delete */
.fc-comment-action-bar .fc-comment-delete-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 80, 80, 0.12);
  color: #ff8b8b;
}

/* TOOLTIP BASE */

.fc-comment-action-bar .comment-reply-link::after,
.fc-comment-action-bar .fc-comment-edit-btn::after,
.fc-comment-action-bar .fc-comment-delete-btn::after {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 4px 7px;
  border-radius: 7px;
  background: rgba(8, 7, 5, 0.96);
  color: rgba(248, 245, 238, 0.9);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 5;
}

/* TEXTY */

.fc-comment-action-bar .comment-reply-link::after {
  content: "Odpovedať";
}

.fc-comment-action-bar .fc-comment-edit-btn::after {
  content: "Upraviť";
}

.fc-comment-action-bar .fc-comment-delete-btn::after {
  content: "Zmazať";
}

/* HOVER */

.fc-comment-action-bar .comment-reply-link:hover::after,
.fc-comment-action-bar .fc-comment-edit-btn:hover::after,
.fc-comment-action-bar .fc-comment-delete-btn:hover::after {
  opacity: 1;
}

/* Replies */

.fc-comments-feed .children {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 16px 0 0 54px;
  padding-left: 22px;
  border-left: 1px solid rgba(201, 150, 42, 0.22);
}

.fc-comments-feed .children .comment::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -22px;
  width: 14px;
  height: 1px;
  background: rgba(201, 150, 42, 0.22);
}

.fc-comments-feed .children .comment-body {
  min-height: 30px;
  padding-left: 44px;
  padding-bottom: 14px;
  border-bottom-color: rgba(255, 255, 255, 0.045);
}

.fc-comments-feed .children .comment-author {
  font-size: 0.88rem;
}

.fc-comments-feed .children .comment-author .avatar {
  width: 30px;
  height: 30px;
}

.fc-comments-feed .children .comment-meta {
  font-size: 0.68rem;
}

.fc-comments-feed .children .comment-body p {
  color: rgba(248, 245, 238, 0.76);
  font-size: 0.9rem;
}

/* Empty state */

.fc-comments-empty {
  margin: 0;
  padding: 22px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
  color: rgba(214, 205, 190, 0.55);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Comment delete modal */

.fc-comment-modal[hidden] {
  display: none;
}

.fc-comment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
}

.fc-comment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

.fc-comment-modal-box {
  position: relative;
  width: min(100%, 360px);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(201, 150, 42, 0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 150, 42, 0.1), transparent 40%),
    #090706;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.fc-comment-modal-box h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.1rem;
}

.fc-comment-modal-box p {
  margin: 0;
  color: rgba(214, 205, 190, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.fc-comment-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.fc-comment-modal-actions button {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.fc-modal-cancel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 245, 238, 0.78);
}

.fc-modal-confirm {
  border: 1px solid rgba(255, 80, 80, 0.25);
  background: rgba(255, 80, 80, 0.12);
  color: #ff8b8b;
}

.comment #respond {
  margin: 16px 0 0 54px;
  padding-left: 22px;
  border-left: 1px solid rgba(201, 150, 42, 0.22);
}

.children + #respond {
  margin-top: 16px;
}

.comment #respond .comment-form {
  gap: 12px;
}

.comment #respond textarea {
  min-height: 88px;
}

.comment #respond .submit {
  min-height: 36px;
  font-size: 0.78rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .fc-single-hero {
    min-height: 320px;
    padding: 48px 0 62px;
  }

  .fc-single-title {
    font-size: clamp(2rem, 7vw, 3.25rem);
  }
}

@media (max-width: 640px) {
  .fc-single-post-page .container {
    width: min(1180px, calc(100% - 22px));
  }

  .fc-single-hero {
    min-height: auto;
    padding: 32px 0 54px;
  }

  .fc-single-meta-top {
    gap: 9px;
    font-size: 0.76rem;
  }

  .fc-single-title {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
    line-height: 1.03;
  }

  .fc-single-excerpt {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .fc-single-content-card {
    margin-top: -30px;
    border-radius: 20px;
    padding: 28px 20px;
  }

  .fc-single-content {
    font-size: 0.96rem;
    line-height: 1.76;
  }

  .fc-single-comments {
    margin-top: 26px;
  }

  .fc-single-comments-head {
    margin-bottom: 14px;
  }

  .fc-single-comments-head h2 {
    font-size: 1.22rem;
  }

  .fc-single-comments-card textarea {
    min-height: 112px;
    padding: 14px 15px;
  }

  .fc-reply-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .fc-reply-notice small {
    margin-left: 0;
  }

  .fc-comments-feed .comment-list {
    gap: 18px;
  }

  .fc-comments-feed .comment-body {
    min-height: 34px;
    padding: 0 58px 16px 46px;
  }

  .fc-comments-feed .comment-author .avatar {
    width: 34px;
    height: 34px;
  }

  .fc-comments-feed .children {
    margin: 14px 0 0 28px;
    padding-left: 16px;
  }

  .fc-comments-feed .children .comment::before {
    left: -16px;
    width: 10px;
  }

  .fc-comments-feed .children .comment-body {
    padding-left: 40px;
  }

  .fc-comments-feed .children .comment-author .avatar {
    width: 30px;
    height: 30px;
  }

  .fc-comments-feed .comment-reply-link,
  .fc-comment-edit-btn {
    width: 24px;
    height: 24px;
  }
}
