body.flmnt-blog-page,
body.flmnt-blog-single-page {
  --flmnt-blog-bg: #f6f7f8;
  --flmnt-blog-card: #ffffff;
  --flmnt-blog-border: #e5e7eb;
  --flmnt-blog-text: #181b1f;
  --flmnt-blog-muted: #6b7280;
  --flmnt-blog-green: #6bcf3f;
  --flmnt-blog-green-dark: #3f8f2f;
  --flmnt-blog-blue: #2f80ed;
  background: var(--flmnt-blog-bg);
}

body.flmnt-blog-sheet-open {
  overflow: hidden;
}

.flmnt-blog-shell,
.flmnt-article-shell {
  padding: 18px 0 44px;
}

.flmnt-blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--flmnt-blog-muted);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 18px;
}

.flmnt-blog-breadcrumb a,
.flmnt-blog-breadcrumb span {
  color: inherit;
}

.flmnt-blog-breadcrumb__sep {
  opacity: .5;
}

.flmnt-blog-hero {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,252,253,0.98));
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.04);
}

.flmnt-blog-hero__visual {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(107, 207, 63, 0.05), rgba(255,255,255,0));
  display: flex;
  align-items: center;
  justify-content: center;
}

.flmnt-blog-hero__visual img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.flmnt-blog-hero__icons {
  position: absolute;
  inset: 18px 18px auto auto;
  display: grid;
  gap: 14px;
  color: rgba(24, 27, 31, .15);
}

.flmnt-blog-hero__icons svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.flmnt-blog-hero__content h1,
.flmnt-article-head h1 {
  margin: 0;
  color: var(--flmnt-blog-text);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.flmnt-blog-hero__content p,
.flmnt-article-head__excerpt,
.flmnt-article-content,
.flmnt-article-content p {
  color: var(--flmnt-blog-muted);
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}

.flmnt-blog-search {
  position: relative;
  margin: 22px 0 18px;
}

.flmnt-blog-search input {
  width: 100%;
  height: 60px;
  border-radius: 20px;
  border: 1px solid var(--flmnt-blog-border);
  background: #fff;
  padding: 0 58px 0 18px;
  color: var(--flmnt-blog-text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.flmnt-blog-search button {
  position: absolute;
  inset: 50% 14px auto auto;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  color: var(--flmnt-blog-muted);
  border: 0;
}

.flmnt-blog-search button svg,
.flmnt-blog-chip__icon svg,
.flmnt-blog-meta svg,
.flmnt-article-meta svg,
.flmnt-sidebar-share a svg,
.flmnt-sidebar-share button svg,
.flmnt-blog-filter-btn svg,
.flmnt-article-note svg,
.flmnt-article-cta__actions a svg,
.flmnt-blog-cta__actions a svg,
.flmnt-article-sidebar__consult svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flmnt-blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.flmnt-blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--flmnt-blog-border);
  background: #fff;
  color: var(--flmnt-blog-text);
  font-size: 14px;
  font-weight: 500;
  transition: .2s ease;
}

.flmnt-blog-chip:hover,
.flmnt-blog-chip.is-active {
  border-color: rgba(107, 207, 63, .36);
  color: var(--flmnt-blog-green-dark);
  box-shadow: 0 10px 18px rgba(63, 143, 47, .08);
}

.flmnt-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 24px;
}

.flmnt-blog-main {
  min-width: 0;
}

.flmnt-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flmnt-blog-panel,
.flmnt-featured-post,
.flmnt-post-card,
.flmnt-blog-empty,
.flmnt-article-card,
.flmnt-sidebar-panel,
.flmnt-comments-wrap,
.flmnt-comment-respond,
.flmnt-author-box,
.flmnt-related-posts,
.flmnt-article-note,
.flmnt-article-compare,
.flmnt-article-mobile-toc,
.flmnt-blog-cta,
.flmnt-article-cta {
  background: var(--flmnt-blog-card);
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 24px;
  box-shadow: 0 10px 26px rgba(17,24,39,.03);
}

.flmnt-featured-post {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0,1fr);
  gap: 22px;
  padding: 20px;
}

.flmnt-featured-post__media,
.flmnt-post-card__media,
.flmnt-related-post__media,
.flmnt-sidebar-post__thumb,
.flmnt-author-box__avatar {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f3f4f6;
}

.flmnt-featured-post__media img,
.flmnt-post-card__media img,
.flmnt-related-post__media img,
.flmnt-sidebar-post__thumb img,
.flmnt-article-head__image img,
.flmnt-article-sidebar__recent img,
.flmnt-popular-inline__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flmnt-featured-post__media {
  min-height: 280px;
}

.flmnt-featured-post__content,
.flmnt-post-card__body,
.flmnt-related-post__body,
.flmnt-sidebar-post__body,
.flmnt-article-sidebar__recent-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.flmnt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(107, 207, 63, 0.12);
  color: var(--flmnt-blog-green-dark);
  font-size: 13px;
  font-weight: 600;
}

.flmnt-featured-post__content .flmnt-badge {
  margin-bottom: 16px;
}

.flmnt-featured-post__title,
.flmnt-post-card__title,
.flmnt-related-post__title,
.flmnt-sidebar-post__title,
.flmnt-article-head h2,
.flmnt-article-content h2,
.flmnt-article-content h3,
.flmnt-article-content h4,
.flmnt-comments-title,
.flmnt-comments-form-title {
  margin: 0;
  color: var(--flmnt-blog-text);
  font-weight: 650;
  line-height: 1.6;
}

.flmnt-featured-post__title {
  font-size: 20px;
}

.flmnt-post-card__title,
.flmnt-related-post__title {
  font-size: 19px;
}

.flmnt-featured-post__excerpt,
.flmnt-post-card__excerpt,
.flmnt-related-post__excerpt,
.flmnt-sidebar-post__meta,
.flmnt-article-content td,
.flmnt-article-content th,
.flmnt-sidebar-panel p,
.flmnt-author-box p,
.flmnt-comment-card__content,
.flmnt-comment-notes,
.form-submit + p,
.logged-in-as,
.comment-form label,
.comment-form-cookies-consent {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: var(--flmnt-blog-muted);
}

.flmnt-blog-meta,
.flmnt-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: var(--flmnt-blog-muted);
  font-size: 13px;
  font-weight: 400;
}

.flmnt-blog-meta span,
.flmnt-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flmnt-featured-post__footer,
.flmnt-post-card__footer,
.flmnt-related-post__footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flmnt-link-arrow,
.flmnt-button,
.comment-form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
}

.flmnt-link-arrow {
  color: var(--flmnt-blog-green-dark);
}

.flmnt-link-arrow svg,
.flmnt-button svg,
.comment-form .submit svg {
  width: 18px;
  height: 18px;
}

.flmnt-button,
.comment-form .submit {
  background: linear-gradient(180deg, var(--flmnt-blog-green), var(--flmnt-blog-green-dark));
  color: #fff;
  border: 1px solid transparent;
}

.flmnt-button--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.24);
}

.flmnt-button:hover,
.comment-form .submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(63, 143, 47, .14);
}

.flmnt-blog-main__head,
.flmnt-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 28px 0 18px;
}

.flmnt-section-head h2,
.flmnt-sidebar-panel__title,
.flmnt-article-sidebar__title,
.flmnt-article-mobile-toc__title {
  margin: 0;
  color: var(--flmnt-blog-text);
  font-size: 20px;
  font-weight: 650;
}

.flmnt-section-head h2::after,
.flmnt-sidebar-panel__title::after,
.flmnt-article-sidebar__title::after,
.flmnt-article-mobile-toc__title::after,
.flmnt-related-posts__title::after,
.flmnt-comments-title::after,
.flmnt-comments-form-title::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: var(--flmnt-blog-green-dark);
  margin-inline-start: 12px;
}

.flmnt-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flmnt-post-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  min-width: 0;
}

.flmnt-post-card__media {
  height: 196px;
  margin-bottom: 16px;
}

.flmnt-post-card__body {
  gap: 12px;
  height: 100%;
}

.flmnt-post-card__excerpt,
.flmnt-sidebar-post__title,
.flmnt-related-post__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flmnt-post-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 62px;
}

.flmnt-post-card__excerpt {
  -webkit-line-clamp: 3;
  min-height: 84px;
}

.flmnt-sidebar-panel {
  padding: 20px;
}

.flmnt-sidebar-cats,
.flmnt-sidebar-popular,
.flmnt-sidebar-recent,
.flmnt-toc-list,
.flmnt-mobile-toc-list,
.flmnt-related-posts__grid,
.flmnt-comments-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flmnt-sidebar-cats li a,
.flmnt-toc-list a,
.flmnt-mobile-toc-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--flmnt-blog-text);
  font-size: 14px;
  font-weight: 500;
}

.flmnt-sidebar-cats li a:hover,
.flmnt-sidebar-cats li.is-active a,
.flmnt-toc-list a:hover,
.flmnt-toc-list a.is-active,
.flmnt-mobile-toc-list a:hover,
.flmnt-mobile-toc-list a.is-active {
  background: rgba(107, 207, 63, 0.10);
  color: var(--flmnt-blog-green-dark);
}

.flmnt-sidebar-cats__count,
.flmnt-toc-list__index,
.flmnt-mobile-toc-list__index,
.flmnt-popular-inline__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(107, 207, 63, 0.34);
  color: var(--flmnt-blog-green-dark);
  font-size: 13px;
  font-weight: 600;
}

.flmnt-sidebar-popular li + li,
.flmnt-sidebar-recent li + li,
.flmnt-comments-list > li + li {
  margin-top: 14px;
}

.flmnt-sidebar-post,
.flmnt-article-sidebar__recent-item,
.flmnt-popular-inline__item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.flmnt-sidebar-post__thumb,
.flmnt-article-sidebar__recent img,
.flmnt-popular-inline__thumb {
  width: 78px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
}

.flmnt-sidebar-post__title,
.flmnt-article-sidebar__recent-title {
  -webkit-line-clamp: 2;
}

.flmnt-popular-inline {
  margin-top: 24px;
}

.flmnt-popular-inline__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flmnt-popular-inline__item {
  grid-template-columns: minmax(0, 1fr) 72px 28px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 20px;
}

.flmnt-popular-inline__title,
.flmnt-mobile-related__title {
  color: var(--flmnt-blog-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.flmnt-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.flmnt-blog-pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--flmnt-blog-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--flmnt-blog-text);
  font-size: 14px;
  font-weight: 500;
}

.flmnt-blog-pagination .page-numbers.current {
  background: rgba(107, 207, 63, 0.12);
  border-color: rgba(107, 207, 63, 0.38);
  color: var(--flmnt-blog-green-dark);
}

.flmnt-blog-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--flmnt-blog-border);
  background: #fff;
  color: var(--flmnt-blog-text);
  font-size: 14px;
  font-weight: 500;
}

.flmnt-blog-filter-layer {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
}

.flmnt-blog-filter-layer[aria-hidden="false"] {
  display: block;
}

.flmnt-blog-filter-layer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.35);
  backdrop-filter: blur(6px);
}

.flmnt-blog-filter-layer__sheet {
  position: absolute;
  inset: auto 0 0 0;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  box-shadow: 0 -18px 32px rgba(17,24,39,.16);
}

.flmnt-blog-filter-layer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.flmnt-blog-filter-layer__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
}

.flmnt-blog-filter-layer__close,
.flmnt-article-mobile-toc__toggle {
  border: 0;
  background: transparent;
  color: var(--flmnt-blog-text);
}

.flmnt-blog-filter-layer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.flmnt-blog-filter-layer__list a {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--flmnt-blog-text);
  font-weight: 500;
  font-size: 14px;
}

.flmnt-blog-filter-layer__list li.is-active a {
  border-color: rgba(107, 207, 63, .4);
  background: rgba(107,207,63,.08);
  color: var(--flmnt-blog-green-dark);
}

.flmnt-blog-cta,
.flmnt-article-cta {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  margin-top: 26px;
  background: radial-gradient(circle at right, rgba(107,207,63,.18), transparent 38%), linear-gradient(135deg, #0f1216, #171b20 60%, #101418);
  color: #fff;
  overflow: hidden;
}

.flmnt-blog-cta__content h2,
.flmnt-article-cta__content h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
}

.flmnt-blog-cta__content p,
.flmnt-article-cta__content p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 2;
}

.flmnt-blog-cta__actions,
.flmnt-article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.flmnt-blog-cta__visual,
.flmnt-article-cta__visual {
  display: flex;
  justify-content: flex-end;
}

.flmnt-blog-cta__visual img,
.flmnt-article-cta__visual img {
  width: min(100%, 280px);
  object-fit: contain;
}

.flmnt-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.flmnt-article-main,
.flmnt-article-sidebar {
  min-width: 0;
}

.flmnt-article-card {
  padding: 22px;
}

.flmnt-article-head {
  text-align: center;
}

.flmnt-article-head .flmnt-badge {
  margin-bottom: 14px;
}

.flmnt-article-meta {
  justify-content: center;
  margin-top: 14px;
}

.flmnt-article-head__excerpt {
  max-width: 880px;
  margin: 20px auto 0;
}

.flmnt-article-head__image {
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  max-height: 440px;
}

.flmnt-article-head__image img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
}

.flmnt-article-mobile-toc {
  display: none;
  margin-top: 20px;
  padding: 16px;
}

.flmnt-article-mobile-toc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flmnt-mobile-toc-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.flmnt-article-content-wrap {
  padding: 24px 28px;
  margin-top: 20px;
}

.flmnt-article-content {
  color: var(--flmnt-blog-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.flmnt-article-content > *:first-child {
  margin-top: 0;
}

.flmnt-article-content h2,
.flmnt-article-content h3,
.flmnt-article-content h4 {
  margin: 32px 0 14px;
  line-height: 1.7;
}

.flmnt-article-content h2 {
  font-size: 30px;
  font-weight: 700;
}

.flmnt-article-content h3 {
  font-size: 24px;
}

.flmnt-article-content h4 {
  font-size: 20px;
}

.flmnt-article-content a {
  color: var(--flmnt-blog-blue);
  text-decoration: none;
}

.flmnt-article-content ul,
.flmnt-article-content ol {
  padding-inline-start: 22px;
}

.flmnt-article-content li {
  margin-bottom: 10px;
}

.flmnt-article-content blockquote {
  margin: 22px 0;
  padding: 16px 20px;
  border-right: 4px solid var(--flmnt-blog-green);
  border-radius: 18px;
  background: rgba(107,207,63,.08);
  color: var(--flmnt-blog-text);
}

.flmnt-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.flmnt-article-content figure {
  margin: 24px 0;
}

.flmnt-article-content figcaption {
  text-align: center;
  margin-top: 8px;
  color: var(--flmnt-blog-muted);
  font-size: 13px;
}

.flmnt-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.flmnt-article-content table th,
.flmnt-article-content table td {
  border: 1px solid var(--flmnt-blog-border);
  padding: 14px 12px;
  text-align: center;
}

.flmnt-article-content table th {
  background: #fafafa;
  color: var(--flmnt-blog-text);
  font-weight: 650;
}

.flmnt-article-content .flmnt-table-scroll {
  overflow-x: auto;
}

.flmnt-article-note,
.flmnt-note-box,
.flmnt-warning-box,
.flmnt-tip-box,
.flmnt-recommend-box,
.flmnt-summary-box {
  margin: 24px 0;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 40px minmax(0,1fr);
  gap: 14px;
  align-items: start;
}

.flmnt-article-note__icon,
.flmnt-note-box::before,
.flmnt-warning-box::before,
.flmnt-tip-box::before,
.flmnt-recommend-box::before,
.flmnt-summary-box::before {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(107,207,63,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--flmnt-blog-green-dark);
  content: '✦';
  font-size: 18px;
  font-weight: 700;
}

.flmnt-warning-box::before { content: '!'; background: rgba(245, 158, 11, .16); color: #b45309; }
.flmnt-summary-box::before { content: '✓'; }
.flmnt-tip-box::before { content: '؟'; }
.flmnt-recommend-box::before { content: '★'; }

.flmnt-article-note__title {
  display: block;
  margin-bottom: 6px;
  color: var(--flmnt-blog-green-dark);
  font-size: 15px;
  font-weight: 650;
}

.flmnt-article-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flmnt-sidebar-panel__body,
.flmnt-sidebar-share,
.flmnt-article-sidebar__recent {
  margin-top: 14px;
}

.flmnt-sidebar-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flmnt-sidebar-share a,
.flmnt-sidebar-share button {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--flmnt-blog-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--flmnt-blog-green-dark);
  position: relative;
}

.flmnt-sidebar-share button span[data-flmnt-copy-status] {
  position: absolute;
  bottom: -28px;
  right: 0;
  background: #111827;
  color: #fff;
  border-radius: 10px;
  padding: 4px 8px;
  white-space: nowrap;
  font-size: 11px;
}

.flmnt-article-sidebar__consult {
  text-align: center;
}

.flmnt-article-sidebar__consult-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: rgba(107, 207, 63, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--flmnt-blog-green-dark);
  margin-bottom: 12px;
}

.flmnt-author-box,
.flmnt-related-posts,
.flmnt-comments-wrap,
.flmnt-comment-respond {
  padding: 24px;
  margin-top: 22px;
}

.flmnt-author-box {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.flmnt-author-box__avatar {
  width: 92px;
  height: 92px;
}

.flmnt-author-box__name {
  margin: 0 0 8px;
  color: var(--flmnt-blog-text);
  font-size: 18px;
  font-weight: 650;
}

.flmnt-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}

.flmnt-related-post {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 20px;
}

.flmnt-related-post__media {
  height: 178px;
  margin-bottom: 14px;
}

.flmnt-comments-title,
.flmnt-comments-form-title,
.flmnt-related-posts__title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
}

.flmnt-comment-card__inner {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 20px;
}

.flmnt-comment-card__avatar img {
  border-radius: 18px;
}

.flmnt-comment-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.flmnt-comment-card__head strong {
  color: var(--flmnt-blog-text);
  font-size: 15px;
  font-weight: 650;
}

.flmnt-comment-card__reply a {
  color: var(--flmnt-blog-green-dark);
  font-size: 13px;
  font-weight: 600;
}

.comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.comment-form p {
  margin: 0;
}

.comment-form-comment,
.comment-form-url,
.comment-notes,
.logged-in-as,
.comment-form-cookies-consent,
.form-submit {
  grid-column: 1 / -1;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 18px;
  background: #fff;
  min-height: 52px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
}

.comment-form textarea {
  min-height: 160px;
  resize: vertical;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-form-cookies-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--flmnt-blog-green-dark);
}

.flmnt-blog-empty {
  padding: 28px;
  text-align: center;
}

.flmnt-blog-empty h2 {
  margin: 0 0 10px;
  color: var(--flmnt-blog-text);
  font-size: 24px;
  font-weight: 650;
}

.flmnt-blog-empty p {
  margin: 0;
  color: var(--flmnt-blog-muted);
  font-size: 14px;
  line-height: 2;
}

.flmnt-blog-empty__actions {
  margin-top: 18px;
}

@media (max-width: 1199px) {
  .flmnt-post-grid,
  .flmnt-related-posts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flmnt-popular-inline__list {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 991px) {
  .flmnt-blog-grid,
  .flmnt-article-layout,
  .flmnt-blog-cta,
  .flmnt-article-cta,
  .flmnt-featured-post,
  .flmnt-blog-hero {
    grid-template-columns: 1fr;
  }

  .flmnt-blog-sidebar,
  .flmnt-article-sidebar {
    position: static;
    top: auto;
  }

  .flmnt-featured-post__media,
  .flmnt-article-head__image img {
    max-height: 360px;
  }
}

@media (max-width: 767px) {
  .flmnt-blog-shell,
  .flmnt-article-shell {
    padding: 14px 0 30px;
  }

  .flmnt-blog-hero,
  .flmnt-featured-post,
  .flmnt-blog-cta,
  .flmnt-article-cta,
  .flmnt-author-box,
  .flmnt-comment-card__inner {
    padding: 18px;
  }

  .flmnt-blog-hero__visual {
    min-height: 200px;
  }

  .flmnt-blog-hero__visual img {
    max-height: 190px;
  }

  .flmnt-blog-hero__content h1,
  .flmnt-article-head h1 {
    font-size: 34px;
  }

  .flmnt-blog-search input {
    height: 54px;
    border-radius: 18px;
    font-size: 14px;
  }

  .flmnt-blog-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .flmnt-blog-chips::-webkit-scrollbar { display: none; }

  .flmnt-blog-chip {
    flex: 0 0 auto;
    min-height: 48px;
    font-size: 13px;
  }

  .flmnt-featured-post__title,
  .flmnt-post-card__title,
  .flmnt-related-post__title,
  .flmnt-section-head h2,
  .flmnt-sidebar-panel__title,
  .flmnt-article-sidebar__title,
  .flmnt-comments-title,
  .flmnt-comments-form-title,
  .flmnt-related-posts__title,
  .flmnt-article-mobile-toc__title {
    font-size: 18px;
  }

  .flmnt-blog-filter-btn {
    display: inline-flex;
  }

  .flmnt-blog-sidebar {
    display: none;
  }

  .flmnt-post-grid,
  .flmnt-related-posts__grid,
  .flmnt-popular-inline__list,
  .comment-form {
    grid-template-columns: 1fr;
  }

  .flmnt-post-card {
    display: grid;
    grid-template-columns: 132px minmax(0,1fr);
    gap: 12px;
    align-items: stretch;
  }

  .flmnt-post-card__media {
    height: 128px;
    margin-bottom: 0;
  }

  .flmnt-post-card__body {
    gap: 8px;
  }

  .flmnt-post-card__title {
    min-height: auto;
    font-size: 16px;
  }

  .flmnt-post-card__excerpt {
    display: none;
  }

  .flmnt-post-card__footer,
  .flmnt-related-post__footer,
  .flmnt-featured-post__footer {
    gap: 10px;
  }

  .flmnt-link-arrow,
  .flmnt-button,
  .comment-form .submit {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .flmnt-blog-cta__content h2,
  .flmnt-article-cta__content h2 {
    font-size: 22px;
  }

  .flmnt-blog-cta__visual,
  .flmnt-article-cta__visual {
    justify-content: center;
  }

  .flmnt-article-head {
    text-align: right;
  }

  .flmnt-article-meta {
    justify-content: flex-start;
  }

  .flmnt-article-mobile-toc {
    display: block;
  }

  .flmnt-article-sidebar .flmnt-sidebar-panel--toc,
  .flmnt-article-sidebar .flmnt-sidebar-panel--share {
    display: none;
  }

  .flmnt-article-content-wrap {
    padding: 18px;
  }

  .flmnt-article-content,
  .flmnt-article-content p,
  .flmnt-blog-hero__content p,
  .flmnt-article-head__excerpt {
    font-size: 15px;
  }

  .flmnt-article-content h2 {
    font-size: 24px;
  }

  .flmnt-article-content h3 {
    font-size: 20px;
  }

  .flmnt-author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .flmnt-author-box__avatar {
    margin: 0 auto;
  }
}

@media (max-width: 389px) {
  .flmnt-post-card {
    grid-template-columns: 108px minmax(0,1fr);
  }

  .flmnt-post-card__media {
    height: 108px;
  }

  .flmnt-blog-hero__content h1,
  .flmnt-article-head h1 {
    font-size: 30px;
  }
}

.flmnt-article-sidebar__recent-title {
  color: var(--flmnt-blog-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.comments-area .children {
  list-style: none;
  margin: 14px 0 0;
  padding: 0 18px 0 0;
  border-right: 1px solid var(--flmnt-blog-border);
}

/* v1.1.0: Blog hero uses parent-theme image as full background; content stays on the right side. */
.flmnt-blog-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 31vw, 430px);
  padding: clamp(28px, 4vw, 54px);
  background-image: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.22) 42%, rgba(255,255,255,0.94) 64%, rgba(255,255,255,0.98) 100%), var(--flmnt-blog-hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.flmnt-blog-hero__content {
  width: min(620px, 100%);
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .flmnt-blog-hero {
    min-height: auto;
    padding: 24px 18px 20px;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.95) 42%, rgba(255,255,255,1) 100%), var(--flmnt-blog-hero-bg);
    background-size: auto 190px, auto 190px;
    background-position: top left, top left;
    align-items: flex-start;
    padding-top: 190px;
  }

  .flmnt-blog-hero__content {
    width: 100%;
    margin: 0;
  }
}

/* v1.1.2 refinements: compact typography, hero fitting, comments form and mobile spacing. */
body.flmnt-blog-page *,
body.flmnt-blog-single-page * {
  box-sizing: border-box;
}

body.flmnt-blog-page .flmnt-blog-shell,
body.flmnt-blog-single-page .flmnt-article-shell {
  overflow-x: hidden;
}

.flmnt-blog-hero {
  min-height: clamp(330px, 30vw, 420px);
  background-size: 100% 100%;
  background-position: center center;
  padding-block: clamp(22px, 3vw, 44px);
  border-radius: 28px;
}

.flmnt-blog-hero__content h1 {
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 700;
  line-height: 1.24;
}

.flmnt-article-head h1 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.015em;
}

.flmnt-blog-hero__content p,
.flmnt-article-head__excerpt,
.flmnt-article-content,
.flmnt-article-content p {
  font-size: 15px;
  line-height: 2;
}

.flmnt-featured-post__title {
  font-size: 19px;
  font-weight: 650;
}

.flmnt-post-card__title,
.flmnt-related-post__title {
  font-size: 18px;
  font-weight: 650;
}

.flmnt-section-head h2,
.flmnt-sidebar-panel__title,
.flmnt-article-sidebar__title,
.flmnt-article-mobile-toc__title,
.flmnt-related-posts__title,
.flmnt-comments-title,
.flmnt-comments-form-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 650;
}

.flmnt-section-head h2::after,
.flmnt-sidebar-panel__title::after,
.flmnt-article-sidebar__title::after,
.flmnt-article-mobile-toc__title::after,
.flmnt-related-posts__title::after,
.flmnt-comments-title::after,
.flmnt-comments-form-title::after {
  display: none;
  content: none;
}

.flmnt-section-head h2::before,
.flmnt-sidebar-panel__title::before,
.flmnt-article-sidebar__title::before,
.flmnt-article-mobile-toc__title::before,
.flmnt-related-posts__title::before,
.flmnt-comments-title::before,
.flmnt-comments-form-title::before {
  content: '';
  flex: 0 0 auto;
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--flmnt-blog-green), var(--flmnt-blog-green-dark));
}

.flmnt-blog-cta__title,
.flmnt-article-cta__content .flmnt-blog-cta__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.55;
  font-weight: 700;
}

.flmnt-blog-cta__text,
.flmnt-article-cta__content .flmnt-blog-cta__text {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 2;
}

.flmnt-blog-cta__visual img,
.flmnt-article-cta__visual img {
  border-radius: 14px;
}

.comment-form-url {
  display: none !important;
}

.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea {
  width: 100%;
}

.comment-form .submit {
  width: auto;
  min-width: 168px;
  max-width: 100%;
  cursor: pointer;
  border-radius: 16px;
  text-align: center;
}

.comment-form .form-submit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flmnt-comment-respond {
  overflow: hidden;
}

@media (max-width: 767px) {
  body.flmnt-blog-page .flmnt-blog-shell,
  body.flmnt-blog-single-page .flmnt-article-shell {
    width: 100%;
    padding-inline: 14px;
  }

  .flmnt-blog-hero {
    min-height: 0;
    padding: 178px 16px 18px;
    background-size: auto 190px, 100% 100%;
    background-position: top left, center center;
    border-radius: 22px;
  }

  .flmnt-blog-hero__content {
    text-align: center;
  }

  .flmnt-blog-hero__content h1 {
    font-size: 30px;
    line-height: 1.32;
  }

  .flmnt-article-head h1 {
    font-size: 28px;
    line-height: 1.55;
    text-align: center;
  }

  .flmnt-article-head,
  .flmnt-article-meta {
    text-align: center;
    justify-content: center;
  }

  .flmnt-blog-hero__content p,
  .flmnt-article-head__excerpt,
  .flmnt-article-content,
  .flmnt-article-content p {
    font-size: 14px;
  }

  .flmnt-article-card,
  .flmnt-article-content-wrap,
  .flmnt-author-box,
  .flmnt-related-posts,
  .flmnt-comments-wrap,
  .flmnt-comment-respond,
  .flmnt-blog-cta,
  .flmnt-article-cta,
  .flmnt-sidebar-panel,
  .flmnt-article-mobile-toc {
    border-radius: 20px;
    padding: 16px;
    width: 100%;
    max-width: 100%;
  }

  .flmnt-comments-wrap,
  .flmnt-comment-respond {
    margin-inline: 0;
  }

  .comment-form {
    grid-template-columns: 1fr;
    gap: 13px;
    width: 100%;
  }

  .comment-form input:not([type="checkbox"]):not([type="submit"]),
  .comment-form textarea {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 13px;
  }

  .comment-form textarea {
    min-height: 140px;
  }

  .comment-form-cookies-consent {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.9;
  }

  .comment-form .form-submit {
    width: 100%;
  }

  .comment-form .submit {
    width: 100%;
    min-width: 0;
  }

  .flmnt-blog-cta__content,
  .flmnt-article-cta__content {
    text-align: center;
  }

  .flmnt-blog-cta__title,
  .flmnt-article-cta__content .flmnt-blog-cta__title {
    font-size: 22px;
  }

  .flmnt-blog-cta__actions,
  .flmnt-article-cta__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .flmnt-blog-cta__actions .flmnt-button,
  .flmnt-article-cta__actions .flmnt-button {
    width: 100%;
    padding-inline: 10px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .flmnt-section-head h2,
  .flmnt-sidebar-panel__title,
  .flmnt-article-sidebar__title,
  .flmnt-article-mobile-toc__title,
  .flmnt-related-posts__title,
  .flmnt-comments-title,
  .flmnt-comments-form-title {
    font-size: 18px;
  }

  .flmnt-section-head h2::before,
  .flmnt-sidebar-panel__title::before,
  .flmnt-article-sidebar__title::before,
  .flmnt-article-mobile-toc__title::before,
  .flmnt-related-posts__title::before,
  .flmnt-comments-title::before,
  .flmnt-comments-form-title::before {
    height: 18px;
  }
}

@media (max-width: 389px) {
  .flmnt-blog-hero__content h1 {
    font-size: 28px;
  }

  .flmnt-article-head h1 {
    font-size: 25px;
  }

  .flmnt-blog-cta__actions,
  .flmnt-article-cta__actions {
    grid-template-columns: 1fr;
  }
}

.flmnt-blog-cta__content .flmnt-blog-cta__title,
.flmnt-article-cta__content .flmnt-blog-cta__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.55;
  font-weight: 700;
}

.flmnt-blog-cta__content .flmnt-blog-cta__text,
.flmnt-article-cta__content .flmnt-blog-cta__text {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 767px) {
  .flmnt-blog-hero {
    background-size: 100% 100%, auto 190px;
    background-position: center center, top left;
  }

  .flmnt-blog-cta__content .flmnt-blog-cta__title,
  .flmnt-article-cta__content .flmnt-blog-cta__title {
    font-size: 22px;
  }
}

/* v1.1.3: blog/single fine tuning requested after live test. */
.flmnt-featured-post__footer .flmnt-button,
.flmnt-featured-post__footer .flmnt-button:visited,
.flmnt-button,
.flmnt-button:visited,
.comment-form .submit,
.comment-form .submit:visited {
  color: #fff;
}

.flmnt-featured-post__footer .flmnt-button svg,
.flmnt-button svg,
.comment-form .submit svg {
  color: currentColor;
  stroke: currentColor;
  fill: none;
}

.flmnt-article-mobile-share {
  display: none;
}

@media (min-width: 992px) {
  body.flmnt-blog-single-page .flmnt-article-shell,
  body.flmnt-blog-single-page .flmnt-article-layout {
    overflow: visible !important;
  }

  body.flmnt-blog-single-page .flmnt-article-sidebar {
    position: sticky !important;
    top: 94px;
    align-self: flex-start;
    height: max-content;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
}

@media (max-width: 767px) {
  .flmnt-article-mobile-share {
    display: block;
    margin-top: 18px;
  }

  .flmnt-article-mobile-share .flmnt-sidebar-panel--share {
    display: block;
  }

  .flmnt-blog-hero {
    display: flex;
    align-items: center;
    min-height: 304px;
    padding: 18px 16px;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.18) 38%, rgba(255,255,255,0.82) 58%, rgba(255,255,255,0.98) 100%), var(--flmnt-blog-hero-bg);
    background-size: cover;
    background-position: center center;
  }

  .flmnt-blog-hero__content {
    width: min(64%, 310px);
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }

  .flmnt-blog-hero__content h1 {
    font-size: clamp(23px, 7vw, 28px);
    line-height: 1.35;
  }

  .flmnt-blog-hero__content p {
    font-size: 12.5px;
    line-height: 1.9;
    margin-top: 8px;
  }

  .flmnt-blog-search {
    margin: 14px 0 12px;
  }

  .flmnt-blog-search input {
    height: 46px;
    border-radius: 16px;
    font-size: 12.5px;
    padding-right: 44px;
  }

  .flmnt-blog-search button {
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .flmnt-blog-chip {
    min-height: 38px;
    padding-inline: 12px;
    gap: 7px;
    font-size: 12px;
    border-radius: 14px;
  }

  .flmnt-blog-chip__icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 389px) {
  .flmnt-blog-hero {
    min-height: 286px;
    padding-inline: 14px;
  }

  .flmnt-blog-hero__content {
    width: 68%;
  }

  .flmnt-blog-hero__content h1 {
    font-size: 22px;
  }

  .flmnt-blog-hero__content p {
    font-size: 12px;
  }
}

/* v1.1.4: final requested fixes for hero, sidebar and comment submit. */
body.flmnt-blog-page .flmnt-blog-hero,
body.flmnt-blog-single-page .flmnt-blog-hero {
  border: 0 !important;
  box-shadow: none !important;
}

body.flmnt-blog-single-page .flmnt-article-sidebar__consult {
  display: none !important;
}

body.flmnt-blog-single-page .comment-form input[type="submit"].submit,
body.flmnt-blog-single-page .comment-form .form-submit input.submit,
body.flmnt-blog-single-page #submit.submit {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 150px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, var(--flmnt-blog-green), var(--flmnt-blog-green-dark)) !important;
  color: #fff !important;
  font-family: inherit;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(63, 143, 47, .18);
}

body.flmnt-blog-single-page .comment-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  margin-top: 2px;
}

body.flmnt-blog-single-page .comment-form input[type="submit"].submit:hover,
body.flmnt-blog-single-page #submit.submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(63, 143, 47, .22);
}

@media (max-width: 767px) {
  body.flmnt-blog-single-page .comment-form .form-submit {
    justify-content: stretch;
  }

  body.flmnt-blog-single-page .comment-form input[type="submit"].submit,
  body.flmnt-blog-single-page .comment-form .form-submit input.submit,
  body.flmnt-blog-single-page #submit.submit {
    width: 100% !important;
    min-width: 0;
    min-height: 46px;
    font-size: 13.5px !important;
  }
}

/* v1.1.5: comment reply modal and spacing refinements. */
body.flmnt-blog-single-page .flmnt-comments-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.flmnt-blog-single-page .flmnt-comments-list > .flmnt-comment-card,
body.flmnt-blog-single-page .flmnt-comments-list li.flmnt-comment-card {
  margin: 0 !important;
}

body.flmnt-blog-single-page .flmnt-comment-card__inner {
  min-height: 118px;
}

body.flmnt-blog-single-page .flmnt-comment-form-anchor {
  margin-top: 34px;
}

body.flmnt-blog-single-page .flmnt-comments-wrap + .flmnt-comment-form-anchor {
  margin-top: 36px;
}

body.flmnt-blog-single-page .flmnt-comment-respond,
body.flmnt-blog-single-page #respond.comment-respond {
  scroll-margin-top: 110px;
}

body.flmnt-comment-reply-open {
  overflow: hidden;
}

.flmnt-comment-reply-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.flmnt-comment-reply-modal[aria-hidden="false"] {
  display: block;
}

.flmnt-comment-reply-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 27, 31, .42);
  backdrop-filter: blur(7px);
}

.flmnt-comment-reply-modal__dialog {
  position: relative;
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 52px);
  overflow: auto;
  margin: 26px auto;
  background: #fff;
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, .22);
}

.flmnt-comment-reply-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.flmnt-comment-reply-modal__head span {
  display: inline-flex;
  margin-bottom: 4px;
  color: var(--flmnt-blog-green-dark);
  font-size: 13px;
  font-weight: 600;
}

.flmnt-comment-reply-modal__head h2 {
  margin: 0;
  color: var(--flmnt-blog-text);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.7;
}

.flmnt-comment-reply-modal__close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--flmnt-blog-border);
  border-radius: 14px;
  background: #fff;
  color: var(--flmnt-blog-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.flmnt-comment-reply-modal__close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.flmnt-comment-reply-modal__target {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(107, 207, 63, .28);
  border-radius: 16px;
  background: rgba(107, 207, 63, .08);
  color: var(--flmnt-blog-green-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.flmnt-comment-reply-modal__slot .flmnt-comment-respond,
.flmnt-comment-reply-modal__slot #respond.comment-respond {
  margin-top: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.flmnt-comment-reply-modal__slot .flmnt-comments-form-title {
  display: none;
}

.flmnt-comment-reply-modal__slot .comment-notes {
  margin-bottom: 2px;
}

body.flmnt-blog-single-page .flmnt-comment-card__reply .comment-reply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 11px;
  background: rgba(107, 207, 63, .1);
  color: var(--flmnt-blog-green-dark);
  font-size: 13px;
  font-weight: 650;
}

body.flmnt-blog-single-page .flmnt-comment-card__reply .comment-reply-link:hover {
  background: rgba(107, 207, 63, .16);
}

@media (max-width: 767px) {
  body.flmnt-blog-single-page .flmnt-comments-list {
    gap: 14px;
  }

  body.flmnt-blog-single-page .flmnt-comment-form-anchor {
    margin-top: 28px;
  }

  body.flmnt-blog-single-page .flmnt-comments-wrap + .flmnt-comment-form-anchor {
    margin-top: 30px;
  }

  .flmnt-comment-reply-modal__dialog {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px - env(safe-area-inset-bottom));
    margin: 12px auto calc(12px + env(safe-area-inset-bottom));
    border-radius: 22px;
    padding: 18px;
  }

  .flmnt-comment-reply-modal__head h2 {
    font-size: 17px;
  }

  .flmnt-comment-reply-modal__target {
    font-size: 13px;
  }
}

/* v1.1.6: approved-only comments, no list markers, better threaded spacing. */
body.flmnt-blog-single-page .flmnt-comments-list,
body.flmnt-blog-single-page .flmnt-comments-list ol,
body.flmnt-blog-single-page .flmnt-comments-list ul,
body.flmnt-blog-single-page .flmnt-comments-list li,
body.flmnt-blog-single-page .flmnt-comments-list .children {
  list-style: none !important;
}

body.flmnt-blog-single-page .flmnt-comments-list {
  margin: 0;
  padding: 0;
  display: grid !important;
  gap: 22px !important;
}

body.flmnt-blog-single-page .flmnt-comments-list .flmnt-comment-card,
body.flmnt-blog-single-page .flmnt-comments-list li.flmnt-comment-card {
  margin: 0 !important;
  padding: 0 !important;
}

body.flmnt-blog-single-page .flmnt-comments-list .children {
  margin: 18px 0 0 !important;
  padding: 0 28px 0 0 !important;
  display: grid !important;
  gap: 18px !important;
  border-right: 1px solid var(--flmnt-blog-border);
}

body.flmnt-blog-single-page .flmnt-comments-list .children .flmnt-comment-card__inner {
  background: #fbfcfd;
}

body.flmnt-blog-single-page .flmnt-comment-card__inner {
  margin: 0 !important;
}

body.flmnt-blog-single-page .flmnt-comment-form-anchor {
  margin-top: 42px !important;
}

body.flmnt-blog-single-page .flmnt-comments-wrap + .flmnt-comment-form-anchor {
  margin-top: 46px !important;
}

@media (max-width: 767px) {
  body.flmnt-blog-single-page .flmnt-comments-list {
    gap: 18px !important;
  }

  body.flmnt-blog-single-page .flmnt-comments-list .children {
    margin-top: 14px !important;
    padding: 0 16px 0 0 !important;
    gap: 14px !important;
  }

  body.flmnt-blog-single-page .flmnt-comment-form-anchor,
  body.flmnt-blog-single-page .flmnt-comments-wrap + .flmnt-comment-form-anchor {
    margin-top: 34px !important;
  }
}

/* v1.1.7: keep WordPress native comment moderation/threading; only presentation is customized. */
body.flmnt-blog-single-page ol.flmnt-comments-list,
body.flmnt-blog-single-page ol.flmnt-comments-list ol.children,
body.flmnt-blog-single-page ol.flmnt-comments-list li {
  list-style: none !important;
  counter-reset: none !important;
}

body.flmnt-blog-single-page ol.flmnt-comments-list li::marker,
body.flmnt-blog-single-page ol.flmnt-comments-list ol.children li::marker {
  content: '' !important;
  font-size: 0 !important;
}

body.flmnt-blog-single-page ol.flmnt-comments-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.flmnt-blog-single-page ol.flmnt-comments-list ol.children {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  margin: 20px 0 0 !important;
  padding: 0 28px 0 0 !important;
  border-right: 1px solid var(--flmnt-blog-border);
}

body.flmnt-blog-single-page ol.flmnt-comments-list .flmnt-comment-card {
  margin: 0 !important;
  padding: 0 !important;
}

body.flmnt-blog-single-page ol.flmnt-comments-list .children .flmnt-comment-card__inner {
  margin-top: 0 !important;
  background: #fbfcfd;
}

body.flmnt-blog-single-page .flmnt-comment-card__moderation {
  margin: 0 0 10px;
  padding: 9px 12px;
  border-radius: 13px;
  background: rgba(107, 207, 63, .1);
  color: var(--flmnt-blog-green-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

body.flmnt-blog-single-page .flmnt-comment-form-anchor {
  margin-top: 46px !important;
}

body.flmnt-blog-single-page .flmnt-comments-wrap + .flmnt-comment-form-anchor {
  margin-top: 48px !important;
}

@media (max-width: 767px) {
  body.flmnt-blog-single-page ol.flmnt-comments-list {
    gap: 18px !important;
  }

  body.flmnt-blog-single-page ol.flmnt-comments-list ol.children {
    gap: 16px !important;
    margin-top: 16px !important;
    padding: 0 16px 0 0 !important;
  }
}
