
pre, .fbac-pre {
  padding: var(--fbac-space-md);
  font-size: 0.875rem;
  margin: var(--fbac-space-lg) 0;
}
@media (max-width: 480px) {
  pre, .fbac-pre {
    padding: var(--fbac-space-sm);
    font-size: 0.8rem;
    margin: var(--fbac-space-md) 0;
  }
}

.fbac-text-center { text-align: center; }
.fbac-text-muted { color: var(--fbac-text-muted); }
.fbac-text-italic { font-style: italic; }
.fbac-mt-1 { margin-top: 0.5rem; }
.fbac-mt-2 { margin-top: 1rem; }
.fbac-mt-3 { margin-top: 1.5rem; }
.fbac-mt-4 { margin-top: 2rem; }
.fbac-mb-1 { margin-bottom: 0.5rem; }
.fbac-mb-2 { margin-bottom: 1rem; }
.fbac-mb-3 { margin-bottom: 1.5rem; }
.fbac-mb-4 { margin-bottom: 2rem; }
.fbac-segment { padding: var(--fbac-space-xl) 0; width: 100%; }

.fbac-constrained {
  max-width: var(--fbac-content-width, 100%);
}
.fbac-wrapper.fbac-constrained {
  max-width: calc(var(--fbac-content-width, 100%) + clamp(2rem, 6vw, 4rem));
}
.fbac-entry.fbac-entry--centered,
.fbac-entry.fbac-entry--centered {
  max-width: var(--fbac-content-width, 800px);
  margin: 0 auto;
}

.fbac-figure img,
.fbac-tableau img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-figure figcaption,
.fbac-tableau figcaption {
  font-size: 0.875rem;
  color: var(--fbac-text-muted);
  margin-top: var(--fbac-space-sm, 0.5rem);
  text-align: center;
}
.fbac-img-full {
  width: 100%;
  height: auto;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-figure--float-left,
.fbac-tableau--float-left {
  float: left;
  max-width: 40%;
  margin: 0 var(--fbac-space-lg) var(--fbac-space-md) 0;
  clear: left;
}
.fbac-figure--float-left img,
.fbac-tableau--float-left img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-figure--float-right,
.fbac-tableau--float-right {
  float: right;
  max-width: 40%;
  margin: 0 0 var(--fbac-space-md) var(--fbac-space-lg);
  clear: right;
}
.fbac-figure--float-right img,
.fbac-tableau--float-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-entry-wrapper--sidebar .fbac-figure--float-left,
.fbac-entry-wrapper--sidebar .fbac-tableau--float-left,
.fbac-entry-wrapper--sidebar .fbac-figure--float-right,
.fbac-entry-wrapper--sidebar .fbac-tableau--float-right {
  max-width: 50%;
}

@media (max-width: 480px) {
  .fbac-figure--float-left,
  .fbac-tableau--float-left,
  .fbac-figure--float-right,
  .fbac-tableau--float-right {
    float: none;
    max-width: 100%;
    margin: var(--fbac-space-md) 0;
  }
}

.fbac-figure--float-left.fbac-figure--diagram,
.fbac-figure--float-right.fbac-figure--diagram,
.fbac-tableau--float-left.fbac-tableau--diagram,
.fbac-tableau--float-right.fbac-tableau--diagram {
  max-width: 40%;
  width: auto;
}

.fbac-entry__content h2,
.fbac-entry__content h3,
.fbac-entry__content .fbac-subheading {
  clear: both;
}

.fbac-figure--full-width,
.fbac-tableau--full-width {
  width: 100%;
  margin: var(--fbac-space-lg) 0;
}
.fbac-figure--full-width img,
.fbac-tableau--full-width img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-figure--medium,
.fbac-tableau--medium {
  width: 100%;
  max-width: var(--fbac-figure-medium);
  margin: var(--fbac-space-lg) auto;
}
.fbac-figure--medium img,
.fbac-tableau--medium img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-figure--small,
.fbac-figure--inline,
.fbac-tableau--small,
.fbac-tableau--inline {
  width: 100%;
  max-width: var(--fbac-figure-small);
  margin: var(--fbac-space-md) auto;
}
.fbac-figure--small img,
.fbac-figure--inline img,
.fbac-tableau--small img,
.fbac-tableau--inline img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-figure--diagram,
.fbac-tableau--diagram {
  width: fit-content;
  max-width: min(790px, 100%);
  margin: var(--fbac-space-lg) auto;
  padding: var(--fbac-space-md);
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-figure--diagram.fbac-diagram-bg--gradient,
.fbac-tableau--diagram.fbac-diagram-bg--gradient {
  background: linear-gradient(180deg, var(--fbac-surface) 0%, var(--fbac-bg-alt, #f5f5f5) 100%);
}

.fbac-figure--diagram.fbac-diagram-bg--solid,
.fbac-tableau--diagram.fbac-diagram-bg--solid {
  background: var(--fbac-bg-alt, #f5f5f5);
}

.fbac-figure--diagram.fbac-diagram-bg--tinted,
.fbac-tableau--diagram.fbac-diagram-bg--tinted {
  background: color-mix(in srgb, var(--fbac-primary) 0.03, var(--fbac-surface) 100%);
}

.fbac-figure--diagram.fbac-diagram-bg--bordered,
.fbac-tableau--diagram.fbac-diagram-bg--bordered {
  background: var(--fbac-surface, #fff);
  border-left: 3px solid var(--fbac-primary);
}
.fbac-figure--diagram.fbac-diagram-bg--bordered.fbac-border-top,
.fbac-tableau--diagram.fbac-diagram-bg--bordered.fbac-border-top {
  border-left: none;
  border-top: 3px solid var(--fbac-primary);
}
.fbac-figure--diagram.fbac-diagram-bg--bordered.fbac-border-full,
.fbac-tableau--diagram.fbac-diagram-bg--bordered.fbac-border-full {
  border: 2px solid var(--fbac-primary);
  border-left-width: 2px;
}
.fbac-figure--diagram.fbac-diagram-bg--bordered.fbac-border-bottom,
.fbac-tableau--diagram.fbac-diagram-bg--bordered.fbac-border-bottom {
  border-left: none;
  border-bottom: 3px solid var(--fbac-primary);
}
.fbac-figure--diagram img,
.fbac-tableau--diagram img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fbac-figure--wide,
.fbac-tableau--wide {
  width: 100%;
  margin: var(--fbac-space-xl) 0;
}
.fbac-figure--wide img,
.fbac-tableau--wide img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-figure--wide.fbac-figure--diagram img,
.fbac-tableau--wide.fbac-tableau--diagram img {
  aspect-ratio: auto;
  object-fit: contain;
  height: auto;
}

.fbac-figure--hero,
.fbac-tableau--hero {
  width: 100%;
  margin: 0 0 var(--fbac-space-lg) 0;
}
.fbac-figure--hero img,
.fbac-wrapper .fbac-figure--hero img,
.fbac-tableau--hero img,
.fbac-wrapper .fbac-tableau--hero img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-figure--square,
.fbac-tableau--square {
  width: 100%;
  max-width: var(--fbac-figure-square);
  margin: var(--fbac-space-lg) auto;
}
.fbac-figure--square img,
.fbac-tableau--square img {
  max-width: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-figure--portrait,
.fbac-tableau--portrait {
  width: 100%;
  max-width: var(--fbac-figure-portrait);
  margin: var(--fbac-space-lg) auto;
}
.fbac-figure--portrait img,
.fbac-tableau--portrait img {
  max-width: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-img-float-left {
  float: left;
  max-width: 40%;
  margin: 0 var(--fbac-space-lg) var(--fbac-space-md) 0;
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-img-float-right {
  float: right;
  max-width: 40%;
  margin: 0 0 var(--fbac-space-md) var(--fbac-space-lg);
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: var(--fbac-space-lg) 0;
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fbac-team-photo {
  max-width: 100%;
  height: auto;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-team-grid .fbac-capsule .fbac-team-photo {
  width: auto;  
  height: auto;
  aspect-ratio: 1/1;
  max-width: 260px;  
  margin: 0 auto 1rem;
  display: block;
  object-fit: cover;
}

.fbac-highlight {
  background: linear-gradient(transparent 60%, rgba(var(--fbac-primary-rgb, 0, 90, 140), 0.2) 60%);
  padding: 0 0.25rem;
}
.fbac-excerpt {
  padding: var(--fbac-space-md) var(--fbac-space-lg);
  border-left: 2px solid var(--fbac-accent);
  font-style: italic;
  background: var(--fbac-surface);
  margin: var(--fbac-space-lg) 0;
  border-radius: 0 var(--fbac-radius, 0.5rem) var(--fbac-radius, 0.5rem) 0;
}
.fbac-summary {
  padding: var(--fbac-space-lg);
  background: var(--fbac-surface);
  border: 1px solid var(--fbac-border);
  border-radius: var(--fbac-radius, 0.5rem);
  margin: var(--fbac-space-lg) 0;
}

.fbac-list--numbered {
  list-style: decimal;
  padding-left: 1.5rem;
}
.fbac-list--pros {
  list-style: none;
  padding-left: 0;
}
.fbac-list--pros li::before {
  content: "✓";
  color: var(--fbac-success);
  margin-right: 0.5rem;
  font-weight: bold;
}
.fbac-list--cons {
  list-style: none;
  padding-left: 0;
}
.fbac-list--cons li::before {
  content: "✗";
  color: var(--fbac-error);
  margin-right: 0.5rem;
  font-weight: bold;
}

.fbac-matrix--comparison {
  width: 100%;
}
.fbac-matrix--comparison th {
  background: var(--fbac-surface);
  text-align: left;
}
.fbac-matrix--comparison td:first-child {
  font-weight: 600;
}

.fbac-lever {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--fbac-button-padding-y, 0.75rem) var(--fbac-button-padding-x, 1.5rem);
  min-height: var(--fbac-button-height, 2.75rem);
  text-decoration: none;
  border-radius: var(--fbac-radius, 0.5rem);
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 120ms cubic-bezier(.87,0,.13,1), filter 120ms cubic-bezier(.87,0,.13,1);
}
.fbac-lever:hover {
  filter: brightness(1.1);
}
.fbac-lever:focus-visible,
.fbac-lever-main:focus-visible,
.fbac-lever-ghost:focus-visible {
  outline: 2px solid var(--fbac-primary);
  outline-offset: 2px;
}

.fbac-has-disclose {
  position: relative;
}
.fbac-disclose-toggle {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm, .5rem);
  padding: var(--fbac-space-sm, .5rem) 0;
  background: transparent;
  border: none;
  color: var(--fbac-header-text, inherit);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}
.fbac-disclose-toggle:hover {
  opacity: 0.8;
}
.fbac-disclose-arrow {
  font-size: 0.7em;
  transition: transform 120ms cubic-bezier(.87,0,.13,1);
}
.fbac-has-disclose[data-open="true"] .fbac-disclose-arrow {
  transform: rotate(180deg);
}

@media (min-width: 1061px) {
  .fbac-disclose-toggle,
  .fbac-disclose a {
    white-space: nowrap;
  }
}

@media (max-width: 1060px) {
  nav[data-mode="open"] .fbac-disclose,
  .fbac-topbar[data-mode="open"] .fbac-disclose {
    position: static;
    transform: none;
    background: var(--fbac-bg, #fff);  
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    min-width: auto;  
    padding: 0;
  }
  nav[data-mode="open"] .fbac-disclose a,
  .fbac-topbar[data-mode="open"] .fbac-disclose a {
    color: var(--fbac-text, #333);  
    padding: var(--fbac-space-sm) var(--fbac-space-lg);
    border-bottom: 1px solid var(--fbac-border, #e5e7eb);
  }
  nav[data-mode="open"] .fbac-disclose a:hover,
  .fbac-topbar[data-mode="open"] .fbac-disclose a:hover {
    background: var(--fbac-bg-alt, #f5f5f5);
    color: var(--fbac-text, #333);
  }
  
  nav[data-mode="open"] .fbac-disclose-toggle,
  .fbac-topbar[data-mode="open"] .fbac-disclose-toggle {
    color: var(--fbac-text, #333);  
    width: 100%;
    justify-content: center;
    padding: var(--fbac-space-md);
    font-size: 1.125rem;
  }
}

.fbac-related-section {
  padding: 2rem 0;
  background: var(--fbac-bg, #f8f9fa);
}
.fbac-related-section .fbac-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.fbac-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--fbac-inner-width);
  margin: 0 auto;
}

.fbac-lattice--compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 400px));
  gap: var(--fbac-space-md);
}
@media (max-width: 480px) {
  .fbac-lattice--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--fbac-space-sm);
  }
}

.fbac-correspondent-grid,
.fbac-author-grid,
.fbac-category-grid {
  display: grid;
  
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--fbac-grid-gap, 1.5rem);
  align-items: start;
  width: 100%;
  max-width: var(--fbac-content-width, var(--fbac-max-width, 1200px));
  margin-left: auto;
  margin-right: auto;
  justify-content: start;
}

.fbac-correspondent-grid:has(> *:only-child),
.fbac-author-grid:has(> *:only-child),
.fbac-category-grid:has(> *:only-child) {
  grid-template-columns: 1fr;
  justify-items: center;
}
.fbac-correspondent-grid > *:only-child,
.fbac-author-grid > *:only-child,
.fbac-category-grid > *:only-child {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 768px) {
  .fbac-correspondent-grid,
  .fbac-author-grid,
  .fbac-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fbac-correspondent-grid > *,
  .fbac-author-grid > *,
  .fbac-category-grid > * {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .fbac-correspondent-grid,
  .fbac-author-grid,
  .fbac-category-grid {
    grid-template-columns: 1fr;
  }
  .fbac-correspondent-grid > *,
  .fbac-author-grid > *,
  .fbac-category-grid > * {
    max-width: none;
  }
}

.fbac-lattice--cols-2 > .fbac-capsule,
.fbac-lattice--cols-3 > .fbac-capsule,
.fbac-lattice--cols-4 > .fbac-capsule {
  max-width: 100%;
  width: 100%;
}

.fbac-grid-2 > .fbac-capsule,
.fbac-grid-3 > .fbac-capsule,
.fbac-grid-4 > .fbac-capsule {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1060px) {
  .fbac-lattice--cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .fbac-lattice--cols-2,
  .fbac-lattice--cols-3,
  .fbac-lattice--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fbac-team-grid .fbac-lattice,
  .fbac-lattice .fbac-lattice {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .fbac-lattice--cols-2 > *,
  .fbac-lattice--cols-3 > *,
  .fbac-lattice--cols-4 > * {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .fbac-lattice--cols-2,
  .fbac-lattice--cols-3,
  .fbac-lattice--cols-4 {
    grid-template-columns: 1fr;
  }
}

.fbac-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(min(100%, 170px), 1fr));
  gap: var(--fbac-grid-gap, 1.5rem);
  max-width: 100%;
  overflow: visible;  
  box-sizing: border-box;
}

@media (min-width: 1061px) {
  .fbac-team-grid:has(> *:only-child) {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
  }
  .fbac-team-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(min(100%, 170px), 1fr));
  }
  .fbac-team-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(min(100%, 170px), 1fr));
  }
  .fbac-team-grid:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(3, minmax(min(100%, 170px), 1fr));
  }
  .fbac-team-grid:has(> :nth-child(6):last-child) {
    grid-template-columns: repeat(3, minmax(min(100%, 170px), 1fr));
  }
  .fbac-team-grid:has(> :nth-child(9):last-child) {
    grid-template-columns: repeat(3, minmax(min(100%, 170px), 1fr));
  }
}

@media (max-width: 1060px) {
  .fbac-team-grid {
    grid-template-columns: repeat(2, minmax(min(100%, 170px), 1fr));
  }
}
@media (max-width: 768px) {
  .fbac-team-grid {
    grid-template-columns: 1fr;
    gap: var(--fbac-space-sm, 0.75rem);
  }
  .fbac-team-avatar,
  .fbac-team-grid .fbac-capsule img {
    max-width: 100%;
    width: auto;
    margin-bottom: 0.5rem;
  }
  .fbac-team-grid .fbac-capsule,
  .fbac-team-grid .fbac-tract,
  .fbac-team-grid > article {
    padding: var(--fbac-space-sm, 0.75rem);
  }
}

.fbac-team-grid .fbac-capsule,
.fbac-team-grid .fbac-tract,
.fbac-team-grid > article {
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  padding: var(--fbac-space-md, 1rem);
  height: auto;
  border-top: none;
}

img.fbac-team-avatar.fbac-team-avatar {
  width: 140px;
  height: 140px;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}
.fbac-team-grid .fbac-capsule img {
  width: 140px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}
.fbac-team-grid img.fbac-team-photo.fbac-team-photo,

figure.fbac-team-photo,
.fbac-team-photo {
  max-width: 100%;
  border-radius: var(--fbac-radius);
  aspect-ratio: auto;
  object-fit: initial;
  margin: 0.5rem auto 1rem;
  height: auto;
}
.fbac-team-grid .fbac-capsule-label {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.fbac-team-grid .fbac-capsule-body {
  font-size: 0.9rem;
  color: var(--fbac-text-muted);
  margin: 0;
}

.fbac-lattice .fbac-capsule img[width="140"],
.fbac-lattice .fbac-capsule img[width="120"],
.fbac-lattice .fbac-capsule img[width="100"] {
  width: 140px;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  aspect-ratio: 1/1;
}
.fbac-lattice .fbac-capsule--small-img,
.fbac-lattice .fbac-capsule:has(img[width="140"]),
.fbac-lattice .fbac-capsule:has(img[width="120"]),
.fbac-lattice .fbac-capsule:has(img[width="100"]) {
  text-align: center;
  align-items: center;
  border-left: none;
  border-top: 2px solid var(--fbac-accent);
  height: auto;
}

.fbac-rate-average,.fbac-rating-average{font-size:0.85rem;color:var(--fbac-text-muted);margin-top:var(--fbac-space-xs,0.25rem)}
.fbac-related-section,.fbac-author-articles-section,.fbac-category-top-section{margin-block:var(--fbac-space-xl,2.5rem);max-width:none;padding-inline:0}

.fbac-entry__content p,
.fbac-entry__content li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.fbac-hero-cover--gradient-up .fbac-tableau--overlay::before,
body.fbac-hero-cover--gradient-up .fbac-tableau--centered[style*="background-image"]::before {
  background: linear-gradient(to top, var(--fbac-bg, #fff) 0%, var(--fbac-bg, #fff) 8%, rgba(255,255,255,0.85) 25%, transparent 65%);
}
body.fbac-hero-cover--gradient-up .fbac-tableau--overlay,
body.fbac-hero-cover--gradient-up .fbac-tableau--centered[style*="background-image"] {
  --fbac-hero-fg: var(--fbac-text, #1a1a2e);
  --fbac-hero-fg-muted: var(--fbac-text-muted, #555);
  --fbac-hero-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

body.fbac-hero-cover--vignette .fbac-tableau--overlay::before,
body.fbac-hero-cover--vignette .fbac-tableau--centered[style*="background-image"]::before {
  background: radial-gradient(ellipse at center, rgba(0,0,0,var(--overlay-alpha-faint)) 0%, rgba(0,0,0,var(--overlay-alpha-strong)) 100%);
}

body.fbac-hero-cover--diagonal .fbac-tableau--overlay::before,
body.fbac-hero-cover--diagonal .fbac-tableau--centered[style*="background-image"]::before {
  background: linear-gradient(135deg, rgba(0,0,0,var(--overlay-alpha-strong)) 0%, rgba(0,0,0,var(--overlay-alpha-soft)) 50%, rgba(0,0,0,var(--overlay-alpha-faint)) 100%);
}

.fbac-edge-fx--left .fbac-tableau--split .fbac-hero-image,
.fbac-edge-fx--left .fbac-tableau--split > img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

.fbac-edge-fx--right .fbac-tableau--split-reverse .fbac-hero-image,
.fbac-edge-fx--right .fbac-tableau--split-reverse > img {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%);
  mask-image: linear-gradient(to left, transparent 0%, black 25%);
}

.fbac-edge-fx--down .fbac-tableau img {
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%);
  mask-image: linear-gradient(to top, transparent 0%, black 30%);
}

.fbac-edge-fx--vignette .fbac-tableau--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,var(--overlay-alpha-soft)) 100%);
  pointer-events: none;
}

.fbac-bottom-grad .fbac-tableau::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to top, var(--fbac-bg, #fff), transparent);
  pointer-events: none;
  z-index: 2;
}

.fbac-bottom-grad .fbac-tableau {
  position: relative;
}

.fbac-assist--simple .fbac-assist-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.fbac-assist--simple .fbac-assist-item summary {
  pointer-events: none;
  padding-bottom: 0.5rem;
}
.fbac-assist--simple .fbac-assist-item summary::after {
  display: none;
}
.fbac-assist--simple .fbac-assist-answer {
  display: block !important;
  padding-top: 0;
}

.fbac-ground {
  background: var(--fbac-header-bg);
  color: var(--fbac-header-text);
  padding: 3rem 0 2rem;  
  margin-top: auto;
  text-align: center;
}
.fbac-ground h2,
.fbac-ground a,
.fbac-ground p {
  color: var(--fbac-header-text);
}
.fbac-ground a:hover {
  text-decoration: underline;
}

.fbac-ground .fbac-wrapper h2 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.35;
  margin-top: var(--fbac-h4-margin-top, 1rem);
  margin-bottom: var(--fbac-h4-margin-bottom, 0.5rem);
}

.fbac-ground-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--fbac-space-xl);
  margin-bottom: 2rem;
}
.fbac-ground-about {
  max-width: var(--fbac-figure-portrait);
  margin-inline: auto;
}
.fbac-ground-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fbac-ground-links li {
  margin-bottom: 1rem;  
  overflow-wrap: break-word; 
}

.fbac-ground-categories ul {
  list-style: none;
  padding: 0;
  margin: var(--fbac-space-lg, 1.5rem) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--fbac-space-sm, 0.5rem);
}

.fbac-copyright-text {
  text-align: center;
  border-top: 1px solid var(--fbac-border-on-dark);
  padding-top: 1.5rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;  
  word-break: break-word; 
}

@media (max-width: 768px) {
  .fbac-ground-grid {
    grid-template-columns: 1fr;
  }
}

.fbac-cc-banner {
  position: fixed;
  contain: layout;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  background: var(--fbac-bg, #fff);
  color: var(--fbac-text, #111);
  padding: var(--fbac-ck-pad, 1rem);
  border: 1px solid var(--fbac-border, rgba(0,0,0,var(--shadow-alpha-md)));
  border-radius: var(--fbac-ck-radius, 0.5rem);
  box-shadow: 0 4px 24px rgba(0,0,0,var(--shadow-alpha-lg));
  max-width: var(--fbac-ck-width-lg, 560px);
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.45;
}
.fbac-cc-banner__body {
  margin-bottom: 0.25rem;
}
.fbac-cc-banner__title {
  font-size: 1rem;
  margin: 0 0 0.35rem 0;
  font-weight: 600;
}
.fbac-cc-banner__text {
  margin: 0 0 0.75rem 0;
}
.fbac-cc-banner__link {
  color: var(--fbac-link, var(--fbac-primary, #06c));
  text-decoration: underline;
}
.fbac-cc-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fbac-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--fbac-ck-radius, 0.5rem);
  border: 1px solid var(--fbac-border, rgba(0,0,0,var(--shadow-alpha-lg)));
  background: var(--fbac-surface, #f4f4f5);
  color: inherit;
  font: inherit;
  cursor: pointer;
  min-height: 2.75rem;
  min-width: 6rem;
}
.fbac-cookie-btn--primary {
  background: var(--fbac-primary, #06c);
  color: var(--fbac-on-primary, #fff);
  border-color: transparent;
}
.fbac-cookie-btn--secondary {
  background: transparent;
}
.fbac-cookie-btn:focus-visible {
  outline: 2px solid var(--fbac-focus, var(--fbac-primary, #06c));
  outline-offset: 2px;
}

.fbac-cc-modal {
  border: 0;
  padding: 0;
  border-radius: var(--fbac-ck-radius, 0.5rem);
  background: var(--fbac-bg, #fff);
  color: var(--fbac-text, #111);
  max-width: min(90vw, 560px);
  width: 100%;
}
.fbac-cc-modal::backdrop {
  background: rgba(0,0,0,var(--overlay-alpha-medium));
}
.fbac-cc-modal__form {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fbac-cc-modal__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}
.fbac-cc-modal__toggles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fbac-cc-modal__actions {
  display: flex;
  justify-content: flex-end;
}

.fbac-cc-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.625rem;
  row-gap: 0.15rem;
  align-items: start;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--fbac-border, rgba(0,0,0,var(--shadow-alpha-sm)));
}
.fbac-cc-toggle:last-child {
  border-bottom: 0;
}
.fbac-cc-toggle input[type="checkbox"] {
  grid-row: 1;
  grid-column: 1;
  margin: 0.2rem 0 0 0;
}
.fbac-cc-toggle__label {
  grid-row: 1;
  grid-column: 2;
  font-weight: 600;
}
.fbac-cc-toggle__desc {
  grid-row: 2;
  grid-column: 2;
  font-size: 0.85rem;
  color: var(--fbac-text-muted, rgba(0,0,0,var(--overlay-alpha-strong)));
}

.fbac-cc-withdraw {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  color: var(--fbac-header-text, inherit);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fbac-cc-banner__actions {
    flex-direction: column;
  }
  .fbac-cookie-btn {
    width: 100%;
  }
}

.fbac-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fbac-space-sm);
  margin-top: 1rem;
}

.fbac-social-links--centered {
  justify-content: center;
  margin: var(--fbac-space-lg) 0;
}

.fbac-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  line-height: 0;
  font-size: 0;

  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--fbac-footer-text, #fff);
  transition: all 120ms cubic-bezier(.87,0,.13,1) ease;
  text-decoration: none;
}

.fbac-social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}

.fbac-social-link svg {
  width: 26px;
  height: 26px;
}

.fbac-social-link:hover {
  background: var(--fbac-text, #222);
  color: var(--fbac-bg, #fff);
  filter: brightness(1.15);
}

.fbac-correspondent-section {
  padding-bottom: 2.5rem;
}

.fbac-correspondent-profile {
  margin: 0;
}

.fbac-correspondent-profile--hero-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.5rem;
  align-items: start;
  max-width: 780px;
  margin-inline: auto;
}

.fbac-correspondent-profile--hero-banner .fbac-correspondent-photo {
  grid-row: 1 / -1;
}

.fbac-correspondent-photo {
  display: block;
}

.fbac-correspondent-photo img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 30%;  
  aspect-ratio: 1/1;
}

.fbac-correspondent-photo img.fbac-photo--square {
  border-radius: 0;
  border: 4px solid var(--fbac-surface, #f5f5f5);
}

.fbac-correspondent-photo img.fbac-photo--rounded {
  border-radius: var(--fbac-radius, 0.5rem);
  box-shadow: 0 4px 22px rgba(0,0,0,var(--shadow-alpha-lg));
}

.fbac-correspondent-photo img.fbac-photo--circle {
  border-radius: 50%;
  border: 4px solid var(--fbac-surface, #f5f5f5);
}

.fbac-correspondent-photo img.fbac-photo--minimal {
  border-radius: var(--fbac-radius-sm, 0.25rem);
  box-shadow: 0 12px 32px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
}

.fbac-correspondent-meta {
  margin-top: var(--fbac-space-sm, 0.5rem);
  padding: var(--fbac-space-xs, 0.25rem) var(--fbac-space-sm, 0.5rem);
  background: var(--fbac-surface);
  border-radius: var(--fbac-radius-sm, 0.25rem);
  font-size: 0.875rem;
  text-align: center;
  color: var(--fbac-text-muted);
  display: inline-block;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.fbac-correspondent-info {
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-word;
}

.fbac-correspondent-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 var(--fbac-space-xs, 0.25rem);
  line-height: 1.2;
  overflow-wrap: break-word;
}

.fbac-correspondent-role {
  color: var(--fbac-text-muted);
  font-size: 1rem;
  margin-bottom: var(--fbac-space-md, 1rem);
}

.fbac-correspondent-expertise {
  font-size: 0.9rem;
  margin-bottom: var(--fbac-space-md, 1rem);
}
.fbac-correspondent-expertise--primary { color: var(--fbac-primary-on-surface, var(--fbac-primary)); }
.fbac-correspondent-expertise--accent { color: var(--fbac-link-hover); }
.fbac-correspondent-expertise--muted { color: var(--fbac-text-muted); }

.fbac-correspondent-info p {
  margin-bottom: var(--fbac-space-md, 1rem);
}

.fbac-correspondent-info .fbac-lead {
  margin-bottom: var(--fbac-space-md, 1rem);
}

.fbac-correspondent-credentials--inline {
  font-size: 0.9rem;
  color: var(--fbac-text-muted);
  margin-bottom: var(--fbac-space-md, 1rem);
}

.fbac-correspondent-credentials--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--fbac-space-md, 1rem);
}

.fbac-correspondent-credentials--tags .fbac-tally,
.fbac-correspondent-credentials--tags .fbac-tag,
.fbac-author-credentials--tags .fbac-tally {
  display: inline-block;
  
  margin: 0;
  padding: 0.25rem 0.75rem;
  background: var(--fbac-surface);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius-sm, 0.25rem);
  font-size: 0.8rem;
  color: var(--fbac-tag-text, var(--fbac-text-muted));
}

.fbac-correspondent-credentials--block {
  padding: var(--fbac-space-md, 1rem);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius-sm, 0.25rem);
  background: var(--fbac-surface);
  margin-bottom: var(--fbac-space-md, 1rem);
  font-size: 0.9rem;
  color: var(--fbac-text-muted);
}

.fbac-correspondent-email {
  font-size: 0.9rem;
  margin-bottom: var(--fbac-space-md, 1rem);
}

.fbac-correspondent-email a {
  color: var(--fbac-primary);
  text-decoration: none;
}

.fbac-correspondent-info--surface {
  background: var(--fbac-surface);
  padding: 1.5rem;
  border-radius: var(--fbac-radius, 0.5rem);
  border: 1px solid var(--fbac-border);
}

.fbac-correspondent-info--border {
  border: 3px solid var(--fbac-text-muted);
  padding: 1.5rem;
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-correspondent-info--accent-left {
  border-left: 3px solid var(--fbac-text-muted);
  padding-left: 1.5rem;
}
.fbac-correspondent-info--accent-top {
  border-top: 3px solid var(--fbac-text-muted);
  padding-top: 1.5rem;
}
.fbac-correspondent-info--accent-bottom {
  border-bottom: 3px solid var(--fbac-text-muted);
  padding-bottom: 1.5rem;
}

.fbac-correspondent-hero {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.fbac-correspondent-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, transparent);
  opacity: 0.35;
  z-index: 1;
}

.fbac-correspondent-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--fbac-text-inv, #fff);
}

.fbac-correspondent-hero-inner .fbac-correspondent-name {
  color: var(--fbac-text-inv, #fff);
  text-shadow: 0 1px 3px rgba(0,0,0,var(--overlay-alpha-soft));
}

.fbac-correspondent-hero-inner .fbac-correspondent-role {
  color: rgba(255,255,255,0.85);
}

.fbac-correspondent-profile--hero-banner .fbac-correspondent-photo {
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}
.fbac-correspondent-profile--hero-banner .fbac-correspondent-photo img {
  border-color: rgba(255,255,255,0.6);
}

.fbac-correspondent-profile--hero-banner .fbac-correspondent-body {
  padding-top: 1rem;
}

.fbac-correspondent-profile--card-box .fbac-correspondent-card {
  background: var(--fbac-surface);
  border-radius: 0.25rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 780px;
  margin-inline: auto;
}

.fbac-correspondent-profile--card-box .fbac-correspondent-card--border-left {
  border-left: 4px solid var(--fbac-primary);
}

.fbac-correspondent-profile--card-box .fbac-correspondent-card--border-top {
  border-top: 4px solid var(--fbac-primary);
}

.fbac-correspondent-profile--card-box .fbac-correspondent-card--photo-right {
  grid-template-columns: 1fr auto;
}

.fbac-correspondent-profile--card-box .fbac-correspondent-card--photo-right .fbac-correspondent-photo {
  order: 2;
}

.fbac-correspondent-profile--card-box .fbac-correspondent-card--photo-right .fbac-correspondent-info {
  order: 1;
}

.fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar {
  background: var(--fbac-surface);
  padding: 1.5rem;
  border-radius: var(--fbac-radius, 0.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 780px;
  margin-inline: auto;
}

.fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar--photo-right {
  grid-template-columns: 1fr auto;
}

.fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar--photo-right .fbac-correspondent-photo {
  order: 2;
}

.fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar--photo-right .fbac-correspondent-info {
  order: 1;
}

.fbac-correspondent-profile--centered-magazine {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.5rem;
  max-width: 780px;
  margin-inline: auto;
  align-items: start;
}

.fbac-correspondent-profile--centered-magazine .fbac-correspondent-header {
  display: contents;
}

.fbac-correspondent-profile--centered-magazine .fbac-correspondent-photo {
  grid-row: 1 / -1;
}

.fbac-correspondent-profile--split-panel .fbac-correspondent-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 300px;
  border-radius: var(--fbac-radius, 0.5rem);
  overflow: hidden;
}

.fbac-correspondent-profile--split-panel .fbac-correspondent-panel-left {
  background: var(--fbac-header-bg);
  color: var(--fbac-header-text, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.fbac-correspondent-profile--split-panel .fbac-correspondent-panel-left .fbac-correspondent-name {
  color: var(--fbac-header-text, #fff);
}

.fbac-correspondent-profile--split-panel .fbac-correspondent-panel-left .fbac-correspondent-role {
  color: var(--fbac-header-text, rgba(255,255,255,0.85));
}

.fbac-correspondent-profile--split-panel .fbac-correspondent-panel-right {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fbac-correspondent-profile--split-panel .fbac-correspondent-split--reversed {
  direction: rtl;
}

.fbac-correspondent-profile--split-panel .fbac-correspondent-split--reversed > * {
  direction: ltr;
}

.fbac-compact-articles {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.fbac-compact-articles li {
  padding: 0.75rem 0;
}

.fbac-compact-articles li a {
  color: var(--fbac-accent);
  text-decoration: underline dotted;
  font-weight: 500;
}

.fbac-compact-articles li a:hover {
  text-decoration: underline;
}

.fbac-compact-articles .fbac-compact-date {
  font-size: 0.8rem;
  color: var(--fbac-text-muted);
  white-space: nowrap;
}

.fbac-compact-articles .fbac-compact-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--fbac-text-muted);
  margin-top: 0.25rem;
}

.fbac-compact-articles .fbac-compact-num {
  display: inline-block;
  min-width: 2rem;
  flex-shrink: 0;
  color: var(--fbac-text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 0.25rem;
}

.fbac-compact-articles--clean li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.fbac-compact-articles--border-bottom li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-compact-articles--numbered li {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-compact-articles--numbered .fbac-compact-date {
  margin-left: auto;
  padding-left: 1rem;
}

.fbac-compact-articles--with-desc li {
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-compact-articles--with-desc li .fbac-compact-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.fbac-compact-articles--date-before li {
  flex-direction: row-reverse;
}
.fbac-compact-articles--date-before .fbac-compact-date {
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: 1rem;
}

.fbac-compact-articles--date-below li {
  flex-wrap: wrap;
}
.fbac-compact-articles--date-below .fbac-compact-date {
  display: block;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.fbac-compact-articles--date-above li {
  flex-wrap: wrap;
  flex-direction: column;
}
.fbac-compact-articles--date-above .fbac-compact-date {
  display: block;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  order: -1;
}

.fbac-photo-top.fbac-correspondent-profile--hero-banner,
.fbac-photo-top.fbac-correspondent-profile--centered-magazine {
  grid-template-columns: 1fr;
  gap: 1.5rem 0;
}
.fbac-photo-top .fbac-correspondent-photo img {
  margin-left: auto;
  margin-right: auto;
}

.fbac-photo-top .fbac-correspondent-sidebar,
.fbac-photo-top .fbac-correspondent-card {
  grid-template-columns: 1fr;
  text-align: center;
}

.fbac-photo-top--centered .fbac-correspondent-photo {
  grid-row: auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.fbac-photo-top--centered.fbac-correspondent-profile--centered-magazine .fbac-correspondent-header {
  display: block;
  text-align: center;
}
.fbac-photo-top--centered .fbac-correspondent-body {
  max-width: 720px;
  margin: 0 auto;
}

.fbac-photo-top--inline-left .fbac-correspondent-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.fbac-photo-top--inline-left .fbac-correspondent-photo {
  flex-shrink: 0;
  width: fit-content;
}

.fbac-photo-top--inline-right .fbac-correspondent-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.fbac-photo-top--inline-right .fbac-correspondent-photo {
  order: 2;
  flex-shrink: 0;
  width: fit-content;
}

.fbac-photo-top--name-first.fbac-correspondent-profile--centered-magazine .fbac-correspondent-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
}
.fbac-photo-top--name-first .fbac-correspondent-info-compact {
  margin-bottom: 1.5rem;
}
.fbac-photo-top--name-first .fbac-correspondent-body {
  max-width: 720px;
  margin: 0 auto;
}

.fbac-photo-top--full-left .fbac-correspondent-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.fbac-photo-top--full-left .fbac-correspondent-photo {
  flex-shrink: 0;
  width: fit-content;
}

.fbac-photo-top--inline-left .fbac-correspondent-body,
.fbac-photo-top--inline-right .fbac-correspondent-body,
.fbac-photo-top--full-left .fbac-correspondent-body,
.fbac-photo-top--full-right .fbac-correspondent-body {
  max-width: 720px;
  margin: 0 auto;
}
.fbac-photo-top--inline-left .fbac-correspondent-articles,
.fbac-photo-top--inline-right .fbac-correspondent-articles,
.fbac-photo-top--full-left .fbac-correspondent-articles,
.fbac-photo-top--full-right .fbac-correspondent-articles {
  text-align: center;
}

.fbac-photo-top--full-right .fbac-correspondent-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.fbac-photo-top--full-right .fbac-correspondent-photo {
  order: 2;
  flex-shrink: 0;
  width: fit-content;
}

.fbac-photo-top.fbac-correspondent-profile--hero-banner .fbac-correspondent-photo {
  grid-row: auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fbac-photo-right.fbac-correspondent-profile--hero-banner,
.fbac-photo-right.fbac-correspondent-profile--centered-magazine {
  direction: rtl;
}
.fbac-photo-right.fbac-correspondent-profile--hero-banner > *,
.fbac-photo-right.fbac-correspondent-profile--centered-magazine > *,
.fbac-photo-right .fbac-correspondent-info,
.fbac-photo-right .fbac-correspondent-info-compact,
.fbac-photo-right .fbac-correspondent-body {
  direction: ltr;
}

.fbac-correspondent-articles-wrap {
  padding-top: 0.75rem;
  padding-bottom: 3rem;
}

.fbac-correspondent-articles-wrap h2 {
  margin-top: 0.5rem;
}

.fbac-correspondent-page-bottom {
  padding-bottom: 3rem;
}

@media (max-width: 1060px) {
  .fbac-correspondent-photo img {
    margin-left: auto;
    margin-right: auto;
  }

  .fbac-correspondent-hero {
    min-height: auto;
    padding: var(--fbac-space-lg, 1.5rem);
  }
  .fbac-correspondent-profile--hero-banner {
    grid-template-columns: 1fr;
  }
  .fbac-correspondent-profile--hero-banner .fbac-correspondent-photo {
    margin-top: -2rem;
    grid-row: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .fbac-correspondent-profile--card-box .fbac-correspondent-card,
  .fbac-correspondent-profile--card-box .fbac-correspondent-card--photo-right,
  .fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar,
  .fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar--photo-right {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar--photo-right .fbac-correspondent-photo,
  .fbac-correspondent-profile--card-box .fbac-correspondent-card--photo-right .fbac-correspondent-photo {
    order: 1;
  }
  .fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar--photo-right .fbac-correspondent-info,
  .fbac-correspondent-profile--card-box .fbac-correspondent-card--photo-right .fbac-correspondent-info {
    order: 2;
  }
  .fbac-correspondent-profile--card-box .fbac-correspondent-photo,
  .fbac-correspondent-profile--sidebar-classic .fbac-correspondent-photo {
    margin: 0 auto 0;
    text-align: center;
  }

  .fbac-correspondent-profile--centered-magazine,
  .fbac-photo-right.fbac-correspondent-profile--hero-banner,
  .fbac-photo-right.fbac-correspondent-profile--centered-magazine {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .fbac-correspondent-profile--centered-magazine .fbac-correspondent-header {
    display: block;
  }
  .fbac-correspondent-profile--centered-magazine .fbac-correspondent-photo {
    grid-row: auto;
    text-align: center;
    margin: 0 auto;
  }
  .fbac-correspondent-profile--centered-magazine .fbac-correspondent-info-compact {
    text-align: center;
  }

  
  .fbac-photo-top--inline-left .fbac-correspondent-header,
  .fbac-photo-top--inline-right .fbac-correspondent-header {
    display: block;
    text-align: center;
  }
  .fbac-photo-top--inline-left .fbac-correspondent-photo,
  .fbac-photo-top--inline-right .fbac-correspondent-photo {
    order: 0;
    width: auto;
    margin: 0 auto;
  }

  
  .fbac-photo-top--full-left .fbac-correspondent-header,
  .fbac-photo-top--full-right .fbac-correspondent-header {
    display: block;
    text-align: center;
  }
  .fbac-photo-top--full-left .fbac-correspondent-photo,
  .fbac-photo-top--full-right .fbac-correspondent-photo {
    order: 0;
    width: auto;
    margin: 0 auto;
  }

  .fbac-correspondent-profile--split-panel .fbac-correspondent-split,
  .fbac-correspondent-profile--split-panel .fbac-correspondent-split--reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .fbac-correspondent-profile--split-panel .fbac-correspondent-panel-left {
    padding: var(--fbac-space-lg, 1.5rem);
    text-align: center;
  }

  .fbac-mob-info-first.fbac-correspondent-profile--sidebar-classic .fbac-correspondent-sidebar .fbac-correspondent-info,
  .fbac-mob-info-first.fbac-correspondent-profile--card-box .fbac-correspondent-card .fbac-correspondent-info,
  .fbac-mob-info-first.fbac-correspondent-profile--centered-magazine .fbac-correspondent-header .fbac-correspondent-info-compact {
    order: -1;
  }

  
  .fbac-mob-text-center .fbac-correspondent-name,
  .fbac-mob-text-center .fbac-correspondent-role,
  .fbac-mob-text-center .fbac-correspondent-expertise,
  .fbac-mob-text-center .fbac-correspondent-meta,
  .fbac-mob-text-center .fbac-correspondent-info-compact {
    text-align: center;
  }

  
  .fbac-correspondent-info--surface,
  .fbac-correspondent-info--border {
    padding: 1.5rem;
  }
  .fbac-correspondent-info--accent-left {
    padding-left: 1.5rem;
  }
  .fbac-correspondent-info--accent-top {
    padding-top: 1.5rem;
  }
  .fbac-correspondent-info--accent-bottom {
    padding-bottom: 1.5rem;
  }
  .fbac-correspondent-profile--hero-banner .fbac-correspondent-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.fbac-lead-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--fbac-space-xl);
  align-items: center;
  margin-bottom: 3rem;
  padding: var(--fbac-space-xl);
  background: var(--fbac-surface);
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-lead-profile__photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 30%;  
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.fbac-lead-profile__info {
  text-align: left;
}
.fbac-lead-profile__info h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.fbac-lead-profile__info h2 a {
  color: var(--fbac-link-hover);
  text-decoration: none;
}
.fbac-lead-profile__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.fbac-lead-profile__role {
  font-size: 0.9rem;
  color: var(--fbac-text-muted);
  margin-bottom: 0.5rem;
}
.fbac-lead-profile__bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fbac-text-muted);
}
@media (max-width: 768px) {
  .fbac-lead-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fbac-lead-profile__photo {
    display: flex;
    justify-content: center;
  }
  .fbac-lead-profile__info {
    text-align: center;
  }
}

.fbac-correspondent,
.fbac-author {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  padding: 1rem 0;
  border-top: 1px solid var(--fbac-border);
  margin-top: 1.5rem;
}
.fbac-correspondent__avatar,
.fbac-author__avatar {
  width: var(--fbac-byline-avatar-size, 48px);   
  height: var(--fbac-byline-avatar-size, 48px);  
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;  
  aspect-ratio: 1/1;  
}

.fbac-capsule .fbac-correspondent__avatar,
.fbac-capsule .fbac-author__avatar {
  aspect-ratio: 1/1;
  width: auto;
  height: auto;  
  max-width: var(--fbac-author-avatar-size, 240px);
  margin: 0 auto 1rem;
  align-self: center;
  border-radius: 0.125rem;
}

.fbac-correspondent__name,
.fbac-author__name {
  font-weight: 600;
  color: var(--fbac-text);
}
.fbac-correspondent__bio,
.fbac-author__bio {
  font-size: 0.9rem;
  color: var(--fbac-text-muted);
}

.fbac-credentials {
  background: var(--fbac-surface);
  border-radius: var(--fbac-radius, 0.5rem);
  padding: var(--fbac-space-lg);
  margin: var(--fbac-space-lg) 0;
  border-left: 2px solid var(--fbac-accent);
}
.fbac-credentials h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fbac-text-muted);
}
.fbac-credentials ul {
  margin: 0;
  padding-left: 1.25rem;
}
.fbac-credentials li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.fbac-sources {
  background: var(--fbac-surface);
  border-radius: var(--fbac-radius, 0.5rem);
  padding: var(--fbac-space-lg);
  margin: var(--fbac-space-xl) 0;
  border-top: 1px solid var(--fbac-border);
  font-size: 0.9em;
  color: var(--fbac-text-muted);
}

.fbac-sources :is(h3, h4) {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fbac-text-muted);
}
.fbac-sources ol {
  margin: 0;
  padding-left: 1.5rem;
}
.fbac-sources li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.fbac-sources a {
  color: var(--fbac-accent-on-surface);
  word-break: break-word;
}
.fbac-sources--boxed {
  border: 1px solid var(--fbac-border);
  padding: 1.5rem;
  background: var(--fbac-surface);
  border-radius: var(--fbac-radius);
}
.fbac-sources--links li {
  margin-bottom: 0.5rem;
}

.fbac-fact-check {
  display: inline-flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  background: linear-gradient(135deg, var(--fbac-surface) 0%, rgba(var(--fbac-success-rgb, 0,128,0), 0.1) 100%);
  border: 1px solid rgba(var(--fbac-success-rgb, 0,128,0), 0.3);
  border-radius: var(--fbac-radius, 0.5rem);
  padding: var(--fbac-space-sm) var(--fbac-space-md);
  font-size: 0.85rem;
  margin: var(--fbac-space-md) 0;
}
.fbac-fact-check::before {
  content: "✓";
  color: var(--fbac-success, #10b981);
  font-weight: bold;
}

.fbac-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fbac-space-md);
  padding: var(--fbac-space-lg);
  background: var(--fbac-surface);
  border-radius: var(--fbac-radius, 0.5rem);
  margin: var(--fbac-space-xl) 0;
}

.fbac-updated {
  font-size: 0.85rem;
  color: var(--fbac-text-muted);
  font-style: italic;
}

.fbac-author-page {
  max-width: var(--fbac-inner-width, 64rem);
  margin: 0 auto;
  padding: var(--fbac-space-xl, 2rem) var(--fbac-space-md, 1rem);
}
.fbac-author-page .fbac-author-name {
  margin: 0 0 var(--fbac-space-sm, 0.5rem);
  color: var(--fbac-text);
}
.fbac-author-page .fbac-author-tagline {
  color: var(--fbac-text-muted);
  margin: 0 0 var(--fbac-space-md, 1rem);
}
.fbac-author-page .fbac-author-bio {
  color: var(--fbac-text);
  line-height: 1.6;
}
.fbac-author-page .fbac-author-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;  
  aspect-ratio: 1 / 1;
}

.fbac-author-page--A1 {
  text-align: center;
}
.fbac-author-page--A1 .fbac-author-photo--top-center img {
  width: var(--fbac-author-photo-size, 160px);
}
.fbac-author-page--A1 .fbac-author-stats--inline {
  list-style: none;
  margin: var(--fbac-space-lg, 1.5rem) 0 0;
  padding: 0;
  display: inline-flex;
  gap: var(--fbac-space-lg, 1.5rem);
  color: var(--fbac-text-muted);
}

.fbac-author-page--A2 {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 3fr;
  gap: var(--fbac-space-xl, 2rem);
  align-items: start;
}
.fbac-author-page--A2 .fbac-author-sidebar--left .fbac-author-photo img {
  width: 100%;
  max-width: var(--fbac-author-photo-size, 200px);
}
.fbac-author-page--A2 .fbac-author-credentials {
  list-style: none;
  margin: var(--fbac-space-md, 1rem) 0 0;
  padding: 0;
  color: var(--fbac-text-muted);
  font-size: var(--fbac-font-sm, 14px);
}
.fbac-author-page--A2 .fbac-author-credentials li {
  padding: var(--fbac-space-xs, 0.25rem) 0;
  border-bottom: 1px dashed var(--fbac-border);
}
.fbac-author-page--A2 .fbac-author-subsection {
  margin-top: var(--fbac-space-lg, 1.5rem);
}
@media (max-width: 768px) {
  .fbac-author-page--A2 {
    grid-template-columns: 1fr;
  }
}

.fbac-author-page--A3 .fbac-author-stats--grid {
  list-style: none;
  margin: var(--fbac-space-lg, 1.5rem) 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--fbac-space-md, 1rem);
}
.fbac-author-page--A3 .fbac-stat-card {
  text-align: center;
  padding: var(--fbac-space-md, 1rem);
  background: var(--fbac-surface);
  border: 1px solid var(--fbac-border);
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-author-page--A3 .fbac-stat-card strong {
  display: block;
  font-size: var(--fbac-font-xl, 1.5rem);
  color: var(--fbac-primary);
}
.fbac-author-page--A3 .fbac-stat-card span {
  display: block;
  font-size: var(--fbac-font-xs, 12px);
  color: var(--fbac-text-muted);
}
.fbac-author-page--A3 .fbac-author-bio-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--fbac-space-lg, 1.5rem);
  align-items: start;
}
.fbac-author-page--A3 .fbac-author-photo--inline-left img {
  width: var(--fbac-author-photo-size, 140px);
}

.fbac-author-page--A4 .fbac-author-testimonials {
  margin-bottom: var(--fbac-space-xl, 2rem);
}
.fbac-author-page--A4 .fbac-testimonial-card {
  margin: 0 0 var(--fbac-space-md, 1rem);
  padding: var(--fbac-space-lg, 1.5rem);
  background: var(--fbac-surface);
  border-left: 4px solid var(--fbac-primary);
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-author-page--A4 .fbac-testimonial-quote {
  margin: 0 0 var(--fbac-space-sm, 0.5rem);
  font-style: italic;
  color: var(--fbac-text);
}
.fbac-author-page--A4 .fbac-testimonial-card footer cite {
  font-style: normal;
  color: var(--fbac-text-muted);
}
.fbac-author-page--A4 .fbac-author-bio-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--fbac-space-lg, 1.5rem);
  align-items: start;
}
.fbac-author-page--A4 .fbac-author-photo--inline-right img {
  width: var(--fbac-author-photo-size, 140px);
}

.fbac-author-page--A5 .fbac-author-photo--top-center {
  text-align: center;
}
.fbac-author-page--A5 .fbac-author-photo--top-center img {
  width: var(--fbac-author-photo-size, 160px);
}
.fbac-author-page--A5 .fbac-author-timeline {
  list-style: none;
  margin: var(--fbac-space-lg, 1.5rem) 0 0;
  padding: 0 0 0 var(--fbac-space-lg, 1.5rem);
  border-left: 2px solid var(--fbac-border);
}
.fbac-author-page--A5 .fbac-timeline-item {
  position: relative;
  padding: var(--fbac-space-sm, 0.5rem) 0;
}
.fbac-author-page--A5 .fbac-timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--fbac-space-lg, 1.5rem) - 5px);
  top: 0.85em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fbac-primary);
}
.fbac-author-page--A5 .fbac-timeline-year {
  display: inline-block;
  min-width: 4ch;
  font-weight: 600;
  color: var(--fbac-primary);
  margin-right: var(--fbac-space-sm, 0.5rem);
}
.fbac-author-page--A5 .fbac-timeline-category {
  display: block;
  font-size: var(--fbac-font-xs, 12px);
  color: var(--fbac-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fbac-author-page--A6 .fbac-author-expertise--grid {
  list-style: none;
  margin: var(--fbac-space-lg, 1.5rem) 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--fbac-space-md, 1rem);
}
.fbac-author-page--A6 .fbac-expertise-card {
  padding: var(--fbac-space-md, 1rem);
  background: var(--fbac-surface);
  border: 1px solid var(--fbac-border);
  border-radius: var(--fbac-radius, 0.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--fbac-space-xs, 0.25rem);
}
.fbac-author-page--A6 .fbac-expertise-icon {
  font-size: var(--fbac-font-icon-md, 20px);
  color: var(--fbac-primary);
}
.fbac-author-page--A6 .fbac-expertise-card strong {
  color: var(--fbac-text);
}
.fbac-author-page--A6 .fbac-expertise-card span {
  color: var(--fbac-text-muted);
  font-size: var(--fbac-font-sm, 14px);
}
.fbac-author-page--A6 .fbac-author-bio-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--fbac-space-lg, 1.5rem);
  align-items: start;
}
.fbac-author-page--A6 .fbac-author-photo--inline img {
  width: var(--fbac-author-photo-size, 140px);
}

.fbac-author-page--A7 .fbac-author-header--compact {
  text-align: center;
  margin-bottom: var(--fbac-space-xl, 2rem);
}
.fbac-author-page--A7 .fbac-author-header--compact .fbac-author-photo img {
  width: var(--fbac-author-photo-size, 120px);
}
.fbac-author-page--A7 .fbac-author-articles-title {
  margin: 0 0 var(--fbac-space-md, 1rem);
  font-size: var(--fbac-font-lg, 1.25rem);
}
.fbac-author-page--A7 .fbac-author-articles-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--fbac-space-md, 1rem);
  justify-content: start;
}
.fbac-author-page--A7 .fbac-author-articles-grid:has(> *:only-child) {
  grid-template-columns: minmax(0, 320px);
  justify-content: center;
}
.fbac-author-page--A7 .fbac-article-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: var(--fbac-space-md, 1rem);
  background: var(--fbac-surface);
  border: 1px solid var(--fbac-border);
  border-radius: var(--fbac-radius, 0.5rem);
  transition: box-shadow var(--fbac-transition-base, 0.2s ease);
}
.fbac-author-page--A7 .fbac-article-card a:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,var(--shadow-alpha-sm));
}
.fbac-author-page--A7 .fbac-article-card img {
  width: 100%;
  height: auto;
  border-radius: var(--fbac-radius-sm, 0.25rem);
  margin-bottom: var(--fbac-space-sm, 0.5rem);
}
.fbac-author-page--A7 .fbac-article-card h3 {
  margin: 0 0 var(--fbac-space-xs, 0.25rem);
  font-size: var(--fbac-font-md, 1rem);
  color: var(--fbac-text);
}
.fbac-author-page--A7 .fbac-article-card time {
  font-size: var(--fbac-font-xs, 12px);
  color: var(--fbac-text-muted);
}

.fbac-author-page--A8 .fbac-author-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--fbac-space-lg, 1.5rem);
  align-items: start;
  margin-bottom: var(--fbac-space-xl, 2rem);
}
.fbac-author-page--A8 .fbac-author-photo--top-right img {
  width: var(--fbac-author-photo-size, 140px);
}
.fbac-author-page--A8 .fbac-author-qa .fbac-qa-pair {
  margin-bottom: var(--fbac-space-lg, 1.5rem);
  padding-bottom: var(--fbac-space-lg, 1.5rem);
  border-bottom: 1px solid var(--fbac-border);
}
.fbac-author-page--A8 .fbac-author-qa .fbac-qa-pair:last-child {
  border-bottom: none;
}
.fbac-author-page--A8 .fbac-qa-question {
  margin: 0 0 var(--fbac-space-sm, 0.5rem);
  font-size: var(--fbac-font-md, 1rem);
  color: var(--fbac-primary);
}
.fbac-author-page--A8 .fbac-qa-answer {
  margin: 0;
  color: var(--fbac-text);
  line-height: 1.6;
}

.fbac-author-page--A9 {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 3fr;
  gap: var(--fbac-space-xl, 2rem);
  align-items: start;
}
.fbac-author-page--A9 .fbac-author-sidebar--left .fbac-author-photo img {
  width: 100%;
  max-width: var(--fbac-author-photo-size, 200px);
}
.fbac-author-page--A9 .fbac-author-affiliation {
  color: var(--fbac-text-muted);
  margin: var(--fbac-space-sm, 0.5rem) 0;
  font-size: var(--fbac-font-sm, 14px);
}
.fbac-author-page--A9 .fbac-publications-list {
  margin: var(--fbac-space-md, 1rem) 0 0;
  padding-left: var(--fbac-space-lg, 1.5rem);
}
.fbac-author-page--A9 .fbac-publication-item {
  margin-bottom: var(--fbac-space-md, 1rem);
  line-height: 1.5;
}
.fbac-author-page--A9 .fbac-publication-item em {
  color: var(--fbac-text-muted);
  margin-left: var(--fbac-space-sm, 0.5rem);
}
.fbac-author-page--A9 .fbac-publication-item time {
  color: var(--fbac-text-muted);
  margin-left: var(--fbac-space-sm, 0.5rem);
}
@media (max-width: 768px) {
  .fbac-author-page--A9 {
    grid-template-columns: 1fr;
  }
}

.fbac-author-page--A10 .fbac-author-photo--inline-top img {
  width: var(--fbac-author-photo-size, 140px);
}
.fbac-author-page--A10 .fbac-author-cred-board {
  margin-top: var(--fbac-space-xl, 2rem);
}
.fbac-author-page--A10 .fbac-cred-board-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--fbac-space-md, 1rem);
  justify-content: start;
}
.fbac-author-page--A10 .fbac-cred-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--fbac-space-xs, 0.25rem);
  padding: var(--fbac-space-md, 1rem);
  background: var(--fbac-surface);
  border: 1px solid var(--fbac-border);
  border-radius: var(--fbac-radius, 0.5rem);
  transition: box-shadow var(--fbac-transition-base, 0.2s ease);
}
.fbac-author-page--A10 .fbac-cred-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,var(--shadow-alpha-sm));
}
.fbac-author-page--A10 .fbac-cred-icon {
  font-size: var(--fbac-font-icon-md, 20px);
  color: var(--fbac-primary);
}
.fbac-author-page--A10 .fbac-cred-card strong {
  font-weight: 600;
  color: var(--fbac-text);
}
.fbac-author-page--A10 .fbac-cred-card time {
  font-size: var(--fbac-font-xs, 12px);
  color: var(--fbac-text-muted);
}
.fbac-author-page--A10 .fbac-author-affiliations {
  list-style: none;
  margin: var(--fbac-space-lg, 1.5rem) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--fbac-space-sm, 0.5rem);
  color: var(--fbac-text-muted);
  font-size: var(--fbac-font-sm, 14px);
}
.fbac-author-page--A10 .fbac-author-affiliations li {
  padding: var(--fbac-space-xs, 0.25rem) var(--fbac-space-sm, 0.5rem);
  background: var(--fbac-surface-alt, var(--fbac-surface));
  border-radius: var(--fbac-radius-sm, 0.25rem);
}

.fbac-accordion {
  border: 1px solid var(--fbac-border);
  border-radius: var(--fbac-radius, 0.5rem);
  overflow: hidden;
  margin: var(--fbac-space-lg) 0;
}
.fbac-accordion__item {
  border-bottom: 1px solid var(--fbac-border);
}
.fbac-accordion__item:last-child {
  border-bottom: none;
}
.fbac-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  background: var(--fbac-surface);
  transition: background 120ms cubic-bezier(.87,0,.13,1);
}
.fbac-accordion__header:hover {
  background: var(--fbac-border);
  color: var(--fbac-text);
}
.fbac-accordion__header::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--fbac-link-hover);
  transition: transform 120ms cubic-bezier(.87,0,.13,1);
}
.fbac-accordion__item[open] .fbac-accordion__header::after {
  content: '−';
}
.fbac-accordion__content {
  padding: 1rem 1.25rem;
  line-height: 1.7;
  color: var(--fbac-text-muted);
}

.fbac-tabs {
  margin: var(--fbac-space-lg) 0;
}
.fbac-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--fbac-border);
  gap: 0;
  overflow-x: auto;
}

.fbac-tabs__nav .fbac-tab {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--fbac-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 120ms cubic-bezier(.87,0,.13,1), border-color 120ms cubic-bezier(.87,0,.13,1);
  white-space: nowrap;
}
.fbac-tabs__nav .fbac-tab:hover {
  color: var(--fbac-text);
  background: transparent;
}
.fbac-tabs__nav .fbac-tab.active,
.fbac-tabs__nav .fbac-tab--active {
  color: var(--fbac-link-hover);
  border-bottom-color: var(--fbac-accent);
}
.fbac-tab-content {
  display: none;
  padding: 1.5rem 0;
}
.fbac-tab-content.active,
.fbac-tab-content--active {
  display: block;
}

.fbac-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--fbac-space-md);
  margin: var(--fbac-space-lg) 0;
  align-items: stretch; 
}

.fbac-info-cards.fbac-lattice--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fbac-info-cards.fbac-lattice--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fbac-info-cards .fbac-capsule {
  overflow: visible;
  min-height: 0;  
}
.fbac-info-cards > div {
  display: flex;
  flex-direction: column;
  background: var(--fbac-surface);
  border-radius: var(--fbac-radius, 0.5rem);
  text-align: center;
}

.fbac-lattice.fbac-info-cards > .fbac-capsule,
.fbac-info-cards > div {
  padding: var(--fbac-space-lg);
}
.fbac-info-cards > div p:last-child {
  margin-top: auto;
  color: var(--fbac-text-muted);
  font-size: 0.9rem;
}

.fbac-info-cards .fbac-capsule-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.fbac-info-cards .fbac-lever,
.fbac-info-cards .fbac-capsule-body > a:last-child {
  margin-top: auto;
}
.fbac-info-cards strong {
  display: block;
  font-size: 1.5rem;
  color: var(--fbac-accent-on-surface);
  margin-bottom: 0.5rem;
}

.fbac-info-cards .fbac-capsule-body > p,
.fbac-info-cards .fbac-capsule-body > p.fbac-text-muted,
.fbac-info-cards .fbac-capsule-body,
.fbac-info-cards p {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
}

.fbac-info-cards .fbac-capsule-body {
  margin-left: 0;
  margin-right: 0;
}

.fbac-assist-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--fbac-text);
}

.fbac-entry-sidebar {
  min-width: 0;
  position: sticky;
  top: calc(var(--fbac-space-4xl, 6rem) + var(--fbac-space-lg, 1.5rem));
  align-self: start;
}
.fbac-sidebar-block {
  margin-bottom: 1.5rem;
  padding: var(--fbac-space-lg);
  background: var(--fbac-surface, #fff);
  border-radius: var(--fbac-radius, 0.5rem);
  box-shadow: 0 12px 32px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
}
.fbac-sidebar-title {
  margin: 0 0 var(--fbac-space-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fbac-text-muted);
}
.fbac-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fbac-sidebar-list li {
  padding: var(--fbac-space-sm) 0;
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}
.fbac-sidebar-list li:last-child {
  border-bottom: none;
}
.fbac-sidebar-list a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--fbac-text);
  display: block;
  line-height: 1.4;
}
.fbac-sidebar-list a:hover {
  color: var(--fbac-link-hover);
  background: var(--fbac-link-hover-bg, transparent);
}

.fbac-sidebar-author {
  text-align: center;
}
.fbac-sidebar-author img {
  border-radius: 50%;
  margin: 0 auto 0.75rem auto;
  width: var(--fbac-sidebar-author-size, 80%); 
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.fbac-sidebar-author strong {
  display: block;
  margin-bottom: 0.25rem;
}
.fbac-sidebar-author__role {
  display: block;
  font-size: 0.85rem;
  color: var(--fbac-text-muted);
  margin-bottom: 0.5rem;
}
.fbac-sidebar-author p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  color: var(--fbac-text-muted);
}

.fbac-outline {
  font-size: 0.95rem;
}
.fbac-outline ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fbac-outline li {
  padding: 0.4rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
}
.fbac-outline li.active {
  border-left-color: var(--fbac-accent);
}
.fbac-outline a {
  color: var(--fbac-primary);
  text-decoration: none;
  font-weight: 500;
}
.fbac-outline a:hover {
  color: var(--fbac-link-hover);
  background: transparent;
  text-decoration: underline;
}
.fbac-outline-placeholder {
  font-size: 0.85rem;
  color: var(--fbac-text-muted);
  font-style: italic;
}

.fbac-outline-box {
  background: var(--fbac-bg, #f8fafc);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius, 0.5rem);
  padding: var(--fbac-card-padding) var(--fbac-space-lg);
  margin: var(--fbac-space-lg) 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
}
.fbac-outline-box li {
  white-space: normal;
}
.fbac-outline-box a {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.fbac-outline-box__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: var(--fbac-text);
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm);
}
.fbac-outline-box__title::before {
  content: '📋';
  font-size: 1.1rem;
}
.fbac-outline-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fbac-outline-box li {
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.fbac-outline-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--fbac-primary);
}
.fbac-outline-box a {
  color: var(--fbac-primary);
  text-decoration: none;
  font-size: 0.95rem;
}
.fbac-outline-box a:hover {
  text-decoration: underline;
}

.fbac-outline-box a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--fbac-primary, #3b82f6);
  border-radius: var(--fbac-radius-xs, 2px);
}

.fbac-outline-box .fbac-list--checked li::before {
  content: '→';
  color: var(--fbac-primary);
}
.fbac-outline-box .fbac-list--checked li {
  padding-left: 1rem;
}

.fbac-correspondent-compact {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  margin: var(--fbac-space-lg) 0;
  padding: var(--fbac-space-md);
  background: var(--fbac-bg, #f8f9fa);
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-correspondent-compact img {
  border-radius: 50%;
  flex-shrink: 0;
}
.fbac-correspondent-compact__info strong {
  display: block;
}
.fbac-correspondent-compact__info span {
  font-size: 0.85rem;
  color: var(--fbac-text-muted);
}

.fbac-correspondent-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 2.5rem auto;
  padding: var(--fbac-space-lg);
  background: var(--fbac-surface, #f8f9fa);
  border-radius: var(--fbac-radius, 0.5rem);
  border-left: 2px solid var(--fbac-accent, #3b82f6);
  max-width: var(--fbac-max-width, 1200px);
  box-sizing: border-box;
}
.fbac-entry-wrapper .fbac-correspondent-box,
.fbac-entry-wrapper .fbac-author-box,
.fbac-sidebar-block .fbac-correspondent-box {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.fbac-correspondent-box__avatar {
  
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 30%;  
  width: 96px;
  height: 96px;
}
.fbac-correspondent-box--round .fbac-correspondent-box__avatar {
  border-radius: 50%;
}
.fbac-correspondent-box--square .fbac-correspondent-box__avatar {
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-correspondent-inline__avatar {
  border-radius: 50%;
}
.fbac-correspondent-box__info {
  flex: 1;
  min-width: 0;
}
.fbac-correspondent-box__info strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--fbac-text, #1a1a2e);
}
.fbac-correspondent-box__role {
  display: block;
  font-size: 0.875rem;
  color: var(--fbac-accent-on-surface, #3b82f6);
  margin-bottom: 0.75rem;
}
.fbac-correspondent-box__info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fbac-text-muted, #666);
}

.fbac-correspondent-box--no-avatar {
  border-left: none;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
  padding-top: 1.5rem;
}

.fbac-correspondent-box--minimal {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-md);
  background: transparent;
  padding: 1.5rem 0 0;
  border: none;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
  margin: 2rem 0 0;
}
.fbac-correspondent-box--minimal .fbac-correspondent-box__avatar {
  width: var(--fbac-byline-avatar-size, 48px);   
  height: var(--fbac-byline-avatar-size, 48px);
  border-radius: 50%;
  flex-shrink: 0;
}
.fbac-correspondent-box--minimal .fbac-correspondent-box__info {
  display: block;
}
.fbac-correspondent-box--minimal .fbac-correspondent-box__info strong {
  font-size: 0.95rem;
  display: inline;
}
.fbac-correspondent-box--minimal .fbac-correspondent-box__role {
  display: inline;
  margin-left: 0.5rem;
  font-size: 0.85rem;
}
.fbac-correspondent-box--minimal .fbac-correspondent-box__info p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #666);
}
.fbac-correspondent-box__link {
  color: inherit;
  text-decoration: none;
}
.fbac-correspondent-box__link:hover {
  color: var(--fbac-link-hover);
  background: var(--fbac-link-hover-bg, transparent);
}
.fbac-correspondent-box__btn {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--fbac-accent-on-surface);
  text-decoration: none;
  font-weight: 500;
}
.fbac-correspondent-box__btn:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .fbac-correspondent-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fbac-correspondent-box__info {
    text-align: center;
  }
}

.fbac-correspondent-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  font-size: 0.9rem;
  color: var(--fbac-text-muted, #666);
}
.fbac-correspondent-inline img {
  width: 36px;
  height: 36px;

  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;  
}
.fbac-correspondent-inline__name {
  font-weight: 500;
  color: var(--fbac-text, #1a1a2e);
}
.fbac-correspondent-inline__role {
  font-size: 0.8rem;
  color: var(--fbac-text-muted, #888);
}
.fbac-correspondent-inline--name-only {
  font-weight: 500;
  color: var(--fbac-text, #1a1a2e);
}

.fbac-correspondent-header {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm, 0.5rem);
  margin-top: var(--fbac-space-md, 0.75rem);
  font-size: 0.9rem;
  color: var(--fbac-text-muted, #666);
}
.fbac-correspondent-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;  
}
.fbac-correspondent-header__name {
  font-weight: 500;
  color: var(--fbac-text, #1a1a2e);
}
.fbac-correspondent-header__name:hover {
  color: var(--fbac-primary, #3b82f6);
  background: transparent;
}
.fbac-correspondent-header__role {
  font-size: 0.8rem;
  color: var(--fbac-text-muted, #888);
}
.fbac-correspondent-header--name-only {
  display: block;
  margin-top: var(--fbac-space-sm, 0.5rem);
  font-weight: 500;
  color: var(--fbac-text-muted, #666);
}
.fbac-correspondent-header--name-only a {
  color: var(--fbac-text, #1a1a2e);
  text-decoration: none;
}
.fbac-correspondent-header--name-only a:hover {
  color: var(--fbac-primary, #3b82f6);
  background: transparent;
}

.fbac-correspondent-header__prefix {
  color: var(--fbac-text-muted, #666);
  font-weight: 400;
}

.fbac-correspondent-combo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fbac-space-lg, 1.5rem);
  margin: 2rem 0;
  align-items: start;
}
.fbac-correspondent-combo--author-right {
  direction: rtl;
}
.fbac-correspondent-combo--author-right > * {
  direction: ltr;
}
.fbac-correspondent-combo .fbac-correspondent-box {
  margin: 0;
}
.fbac-correspondent-combo .fbac-enroll,
.fbac-correspondent-combo .fbac-subscribe,
.fbac-author-combo .fbac-enroll,
.fbac-correspondent-combo .fbac-rate-widget,
.fbac-correspondent-combo .fbac-rating-widget,
.fbac-author-combo .fbac-rate-widget {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .fbac-correspondent-combo {
    grid-template-columns: 1fr;
  }
  .fbac-correspondent-combo--author-right {
    direction: ltr;
  }
}

.fbac-correspondent-standalone {
  margin: 2.5rem auto;
  max-width: var(--fbac-figure-portrait);
  padding: var(--fbac-space-lg, 1.5rem);
}
.fbac-correspondent-standalone .fbac-correspondent-box {
  margin: 0;
}

.fbac-correspondent-centered {
  text-align: center;
  margin: 2.5rem auto;
  max-width: var(--fbac-figure-portrait);
  padding: var(--fbac-space-lg, 1.5rem);
}
.fbac-correspondent-centered .fbac-correspondent-box {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.fbac-correspondent-centered .fbac-correspondent-box__avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
}
.fbac-correspondent-centered .fbac-correspondent-box__info {
  text-align: center;
}
.fbac-correspondent-centered .fbac-correspondent-box__info p {
  text-align: center;
}

.fbac-correspondent-centered--card {
  background: var(--fbac-surface, #f8f9fa);
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-correspondent-centered--clean {
  background: transparent;
  padding: var(--fbac-space-md, 1rem) 0;
}
.fbac-correspondent-centered--bordered {
  background: transparent;
  border: 1px solid var(--fbac-border, #dee2e6);
  border-radius: var(--fbac-radius, 0.5rem);
}
.fbac-correspondent-centered--outline {
  background: transparent;
  border: 2px solid var(--fbac-muted, #6c757d);
  border-radius: 1.5rem;
}
.fbac-correspondent-centered--shadow {
  background: var(--fbac-bg, #fff);
  border-radius: var(--fbac-radius, 0.5rem);
  box-shadow: 0 12px 32px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
}

.fbac-correspondent-centered--row .fbac-correspondent-box {
  flex-direction: row;
  gap: var(--fbac-space-md, 1rem);
}
.fbac-correspondent-centered--row .fbac-correspondent-box__info {
  text-align: left;
}
.fbac-correspondent-centered--row .fbac-correspondent-box__info p {
  text-align: left;
}

.fbac-correspondent-bottom-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fbac-muted, #6c757d);
  margin-bottom: 0.75rem;
}
.fbac-correspondent-centered .fbac-correspondent-bottom-label {
  text-align: center;
}

.fbac-meta-wrapper--divider-bottom {
  padding-bottom: var(--fbac-space-sm, 0.5rem);
  margin-bottom: var(--fbac-space-sm, 0.5rem);
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}
.fbac-meta-wrapper--divider-top-bottom {
  padding: var(--fbac-space-sm, 0.5rem) 0;
  margin: var(--fbac-space-sm, 0.5rem) 0;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}
.fbac-entry__header .fbac-meta-wrapper--divider-bottom {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.fbac-entry__header .fbac-meta-wrapper--divider-top-bottom {
  border-bottom: none;
}

.fbac-meta-wrapper--box {
  padding: var(--fbac-space-sm, 0.5rem) var(--fbac-space-md, 1rem);
  background: var(--fbac-bg-alt, #f8f9fa);
  border-radius: var(--fbac-radius-sm, 4px);
  margin-bottom: var(--fbac-space-sm, 0.5rem);
}

.fbac-meta-wrapper--pill > * {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--fbac-pill-bg, var(--fbac-bg-alt, #f5f5f5));
  color: var(--fbac-pill-text, inherit);
  border-radius: 999px;
  margin-right: var(--fbac-space-xs, 0.25rem);
  margin-bottom: var(--fbac-space-xs, 0.25rem);
}

[class*="--dark"]:not([class*="--backdrop-dark"]):not([class*="--contrast-dark"]) .fbac-meta-wrapper--pill > *,
.fbac-entry--overlay .fbac-meta-wrapper--pill > *,
[class*="--backdrop-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-meta-wrapper--pill > *,
[class*="--contrast-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-meta-wrapper--pill > * {
  --fbac-pill-bg: rgba(var(--fbac-primary-rgb, 0,0,0), 0.3);
  --fbac-pill-text: var(--fbac-text-inv, #fff);
}

[class*="--dark"]:not([class*="--backdrop-dark"]):not([class*="--contrast-dark"]) .fbac-entry__category--badge,
.fbac-entry--overlay .fbac-entry__category--badge,
[class*="--backdrop-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-entry__category--badge,
[class*="--contrast-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-entry__category--badge {
  background: rgba(255,255,255,0.15);
  color: var(--fbac-text-inv, #fff);
  border: 1px solid rgba(255,255,255,0.3);
}

[class*="--dark"]:not([class*="--backdrop-dark"]):not([class*="--contrast-dark"]) .fbac-entry__category--badge:hover,
.fbac-entry--overlay .fbac-entry__category--badge:hover,
[class*="--backdrop-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-entry__category--badge:hover,
[class*="--contrast-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-entry__category--badge:hover {
  background: rgba(255,255,255,0.25);
  color: var(--fbac-text-inv, #fff);
}

.fbac-meta-wrapper--accent {
  padding-left: var(--fbac-space-md, 1rem);
  border-left: 3px solid var(--fbac-primary, #3b82f6);
  margin-bottom: var(--fbac-space-sm, 0.5rem);
}

.fbac-entry__meta--above {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fbac-entry__meta--above + .fbac-entry__title {
  margin-top: 0;
}

.fbac-entry__meta--between {
  margin: var(--fbac-space-md) 0;
  padding: var(--fbac-space-sm) 0;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-entry__meta--sep-dot > *:not(:last-child)::after {
  content: '·';
  margin: 0 var(--fbac-space-sm, 0.5rem);
  color: var(--fbac-text-muted, #888);
}
.fbac-entry__meta--sep-dash > *:not(:last-child)::after {
  content: '—';
  margin: 0 var(--fbac-space-sm, 0.5rem);
  color: var(--fbac-text-muted, #888);
}
.fbac-entry__meta--sep-pipe > *:not(:last-child)::after {
  content: '|';
  margin: 0 var(--fbac-space-sm, 0.5rem);
  color: var(--fbac-text-muted, #888);
}
.fbac-entry__meta--sep-newline {
  display: flex;
  flex-direction: column;
  gap: var(--fbac-space-xs);
  align-items: flex-start;
}
.fbac-entry__meta--sep-newline > *::after {
  display: none;
}

.fbac-entry__category {
  color: var(--fbac-link, var(--fbac-primary));
}
.fbac-entry__category:visited {
  color: var(--fbac-link, var(--fbac-primary));
}
.fbac-entry__category:hover {
  color: var(--fbac-link-hover, var(--fbac-primary));
  background: transparent;
}

.fbac-entry__category--label {
  color: var(--fbac-text-muted, #666);
  text-decoration: none;
  font-weight: 400;
}
.fbac-entry__category--label:hover {
  color: var(--fbac-text, #1a1a2e);
  background: transparent;
  text-decoration: none;
}

.fbac-entry__category--badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: color-mix(in srgb, var(--fbac-accent, #3b82f6) 16%, var(--fbac-bg, #fff));
  color: color-mix(in srgb, var(--fbac-accent, #3b82f6) 52%, #000);
  border: 1px solid color-mix(in srgb, var(--fbac-accent, #3b82f6) 32%, var(--fbac-bg, #fff));
  border-radius: var(--fbac-radius-xs, 3px);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.fbac-entry__category--badge:hover {
  background: color-mix(in srgb, var(--fbac-accent, #3b82f6) 24%, var(--fbac-bg, #fff));
  color: color-mix(in srgb, var(--fbac-accent, #3b82f6) 52%, #000);
  text-decoration: none;
}

.fbac-entry__category--caps {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--fbac-accent-on-surface, #3b82f6);
}

[class*="--dark"]:not([class*="--backdrop-dark"]):not([class*="--contrast-dark"]) .fbac-entry__category:not(.fbac-entry__category--badge),
.fbac-entry--overlay .fbac-entry__category:not(.fbac-entry__category--badge),
[class*="--backdrop-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-entry__category:not(.fbac-entry__category--badge),
[class*="--contrast-dark"] .fbac-feature-banner:not([class*="--plain"]) .fbac-entry__category:not(.fbac-entry__category--badge) {
  color: var(--fbac-text-inv, #fff);
}

.fbac-entry__type {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: var(--fbac-bg, #f1f5f9);
  color: var(--fbac-text-muted, #666);
  border-radius: var(--fbac-radius-xs, 3px);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.fbac-entry__reading-time {
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #666);
}
.fbac-entry__reading-time::before {
  content: '⏱';
  margin-right: 0.25rem;
}

.fbac-entry__rating {
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #666);
}
.fbac-entry__rating::before {
  content: '★';
  color: var(--fbac-warning, #f59e0b);
  margin-right: 0.2rem;
}
.fbac-entry__rating small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.fbac-entry__comments {
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #666);
  text-decoration: none;
  cursor: pointer;
}
.fbac-entry__comments::before {
  content: '💬';
  margin-right: 0.25rem;
}
.fbac-entry__comments:hover {
  color: var(--fbac-link-hover, #3b82f6);
  background: var(--fbac-link-hover-bg, transparent);
}

.fbac-rate-float {
  position: fixed;
  bottom: 2rem;
  z-index: var(--fbac-z-floating); 
  background: var(--fbac-surface, #fff);
  padding: 0.75rem 1rem;
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius, 0.5rem);
  box-shadow: 0 4px 22px rgba(0,0,0,var(--shadow-alpha-lg));
  transform: translateY(150%);
  opacity: 0;
  transition: transform 120ms cubic-bezier(.87,0,.13,1) ease, opacity 120ms cubic-bezier(.87,0,.13,1) ease;
  max-width: 280px;
  pointer-events: none; 
}

.fbac-rate-float--bottom-right {
  right: 1.5rem;
}
.fbac-rate-float--bottom-left {
  left: 2rem;
}
.fbac-rate-float--bottom-center {
  left: 50%;
  transform: translateX(-50%) translateY(150%);
}
.fbac-rate-float--bottom-center.fbac-rate-float--visible {
  transform: translateX(-50%) translateY(0);
}

.fbac-rate-float--top-right {
  top: 5rem; 
  bottom: auto;
  right: 1.5rem;
  transform: translateY(-150%);
}
.fbac-rate-float--top-right.fbac-rate-float--visible {
  transform: translateY(0);
}
.fbac-rate-float--top-center {
  top: 5rem;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
}
.fbac-rate-float--top-center.fbac-rate-float--visible {
  transform: translateX(-50%) translateY(0);
}

.fbac-rate-float--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto; 
}
.fbac-rate-float__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--fbac-text-muted, #888);
  line-height: 1;
  padding: var(--fbac-space-xs);
}
.fbac-rate-float__close:hover {
  color: var(--fbac-text, #1a1a2e);
  background: transparent;
}
.fbac-rate-float .fbac-rate-prompt {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 769px) {
  
  body.fbac-has-enroll-float .fbac-rate-float--bottom-right,
  body.fbac-has-enroll-float .fbac-rating-float--bottom-right,
  body.fbac-has-subscribe-float .fbac-rate-float--bottom-right {
    right: 1.5rem; 
  }
}

@media (max-width: 768px) {
  .fbac-rate-float {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 1rem;
    top: auto !important; 
    max-width: none;
    text-align: center;
    width: auto;
  }
  
  .fbac-rate-float--bottom-right,
  .fbac-rate-float--bottom-left,
  .fbac-rate-float--bottom-center,
  .fbac-rate-float--top-right,
  .fbac-rate-float--top-center {
    left: 0.75rem !important;
    right: 0.75rem !important;
    top: auto !important;
    bottom: 1rem;
    transform: translateY(150%);
  }
  .fbac-rate-float--bottom-center.fbac-rate-float--visible,
  .fbac-rate-float--bottom-right.fbac-rate-float--visible,
  .fbac-rate-float--bottom-left.fbac-rate-float--visible,
  .fbac-rate-float--top-right.fbac-rate-float--visible,
  .fbac-rate-float--top-center.fbac-rate-float--visible {
    transform: translateY(0);
  }
  
  .fbac-rate-float .fbac-rate-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .fbac-rate-float .fbac-rate-thumbs,
  .fbac-rate-float .fbac-rate-stars,
  .fbac-rate-float .fbac-rate-numbers {
    justify-content: center;
  }
  
  
}

.fbac-rate-position--after-content {
  margin: var(--fbac-space-xl) 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-rate-position--after-author {
  margin-top: 1rem;
}

.fbac-entry-interactions {
  margin: 2rem auto 0;
  padding: 1.5rem var(--fbac-hero-padding-h, 1.5rem) 0;
  max-width: var(--fbac-content-width, var(--fbac-max-width, 1200px));
  border-top: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-matrix-wrap,
.fbac-matrix-wrapper {
  overflow-x: auto;
  max-width: 100%;
  clear: both;
  margin: var(--fbac-space-lg) 0;
  -webkit-overflow-scrolling: touch;
}
.fbac-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--fbac-text, #1f2937);
}
.fbac-matrix caption {
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #666);
  margin-bottom: 0.75rem;
  text-align: left;
  font-style: italic;
}
.fbac-matrix th,
.fbac-matrix td {
  padding: var(--fbac-space-sm, 0.5rem) var(--fbac-space-md, 1rem);
  text-align: left;
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}

@media (max-width: 768px) {
  .fbac-matrix th,
  .fbac-matrix td {
    padding: var(--fbac-space-xs, 0.25rem) var(--fbac-space-sm, 0.5rem);
  }
}
.fbac-matrix th {
  font-weight: 600;
  background: var(--fbac-bg, #f8f9fa);
  white-space: nowrap;
}
.fbac-matrix--striped tbody tr:nth-child(even) {
  background: var(--fbac-bg-alt, #f8fafc);
}
.fbac-matrix--bordered {
  border: 1px solid var(--fbac-border, #e5e7eb);
}
.fbac-matrix--bordered th,
.fbac-matrix--bordered td {
  border: 1px solid var(--fbac-border, #e5e7eb);
}
.fbac-matrix--compact th,
.fbac-matrix--compact td {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}
@media (max-width: 480px) {
  .fbac-matrix {
    font-size: 0.8rem;
  }
  .fbac-matrix th,
  .fbac-matrix td {
    padding: var(--fbac-space-sm);
  }
}

.fbac-matrix-wrap .fbac-matrix-wrap,
.fbac-matrix-wrap .fbac-matrix-wrapper,
.fbac-matrix-wrapper .fbac-matrix-wrap,
.fbac-matrix-wrapper .fbac-matrix-wrapper {
  overflow-x: visible;
  max-width: none;
  margin: 0;
}

.fbac-entry__meta--hero {
  color: rgba(255,255,255,0.85);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.fbac-entry__meta--hero a {
  color: rgba(255,255,255,0.9);
}
.fbac-entry__meta--hero time {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.fbac-entry__meta--hero .fbac-entry__category--badge {
  background: rgba(255,255,255,0.15);
  color: var(--fbac-text-inv, #fff);
  border: 1px solid rgba(255,255,255,0.3);
}
.fbac-entry__meta--hero .fbac-entry__category--badge:hover {
  background: rgba(255,255,255,0.25);
  color: var(--fbac-text-inv, #fff);
}
.fbac-entry__meta--hero .fbac-entry__category--label {
  color: rgba(255,255,255,0.85);
}
.fbac-entry__meta--hero .fbac-entry__category--caps {
  color: rgba(255,255,255,0.9);
}

.fbac-entry-grid {
  display: grid;
  gap: var(--fbac-space-lg);
}

.fbac-entry-grid--cards {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  justify-content: center;
}

.fbac-entry-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  justify-content: center;
}
.fbac-entry-grid--list {
  grid-template-columns: 1fr;
  max-width: var(--fbac-content-width, 720px);
  margin: 0 auto;
}
@media (max-width: 480px) {
  .fbac-entry-grid,
  .fbac-entry-grid--cards,
  .fbac-entry-grid--compact {
    gap: var(--fbac-space-md); 
  }
  .fbac-entry-grid--cards,
  .fbac-entry-grid--compact {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.fbac-entry-item {
  background: var(--fbac-surface, #fff);
  border-radius: var(--fbac-radius, 0.5rem);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
}
.fbac-entry-item--card {
  display: flex;
  flex-direction: column;
}
.fbac-entry-item--compact {
  display: flex;
  flex-direction: column;
}
.fbac-entry-item__image {
  display: block;
  overflow: hidden;
}
.fbac-entry-item--card .fbac-entry-item__image {
  aspect-ratio: 3/2;
}
.fbac-entry-item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.fbac-entry-item--card .fbac-entry-item__image img {
  height: 300px;
}

.fbac-entry-item--compact .fbac-entry-item__image img {
  height: 160px;
}

.fbac-entry-item__content {
  padding: var(--fbac-space-md);
}
.fbac-entry-item--compact .fbac-entry-item__content {
  padding: var(--fbac-space-sm);
}
.fbac-entry-item__category {
  font-size: 0.75rem;
  color: var(--fbac-link-hover);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.fbac-entry-item__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}
.fbac-entry-item--compact .fbac-entry-item__title {
  font-size: 0.95rem;
}
.fbac-entry-item__title a {
  text-decoration: none;
  color: inherit;
}
.fbac-entry-item__title a:hover {
  color: var(--fbac-link-hover);
  background: var(--fbac-link-hover-bg, transparent);
}
.fbac-entry-item__excerpt {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--fbac-text-muted);
  line-height: 1.4;
}

.fbac-entry-item--list {
  display: flex;
  gap: var(--fbac-space-md);
  padding: 1rem 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: 0;
}
.fbac-entry-item--list .fbac-entry-item__image {
  flex-shrink: 0;
}
.fbac-entry-item--list .fbac-entry-item__image img {
  width: 100px;
  height: 70px;
  border-radius: var(--fbac-radius-sm, 4px);
}
.fbac-entry-item--list .fbac-entry-item__content {
  padding: 0;
}

.fbac-entry-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--fbac-text-muted, #666);
}
.fbac-entry-item__date {
  display: inline-flex;
  align-items: center;
}
.fbac-entry-item__reading-time {
  display: inline-flex;
  align-items: center;
}
.fbac-entry-item__reading-time::before {
  content: '⏱';
  margin-right: 0.25rem;
  font-size: 0.9em;
}
.fbac-entry-item__rating {
  display: inline-flex;
  align-items: center;
  color: var(--fbac-warning, #f59e0b);
  font-weight: 500;
}
.fbac-entry-item__author {
  display: inline-flex;
  align-items: center;
}
.fbac-entry-item__author::before {
  content: 'By';
  margin-right: 0.25rem;
  font-weight: 400;
}

.fbac-entry-item--compact .fbac-entry-item__date,
.fbac-entry-item--list .fbac-entry-item__date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--fbac-text-muted, #888);
}

.fbac-correspondent-articles-section {
  padding: 3rem 0;
}
.fbac-category-top-section {
  padding: 3rem 0;
  background: var(--fbac-surface, #fff);
}
.fbac-section-title {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.fbac-section-pad .fbac-section-title,
.fbac-related-section .fbac-section-title {
  margin-top: 0;
}

@media (max-width: 768px) {
  h2, .fbac-section-title {
    margin-top: var(--fbac-space-lg, 1.5rem);
  }
  
  .fbac-stratum > h2:first-child,
  .fbac-section-pad h2:first-child {
    margin-top: var(--fbac-space-md, 1rem);
  }
}

.fbac-inquiry-form {
  max-width: var(--fbac-inner-width);
  margin: 2rem auto;
}

.fbac-field-block {
  margin-bottom: 1.25rem;
  min-width: 200px;
}
.fbac-form-line {
  display: flex;
  gap: var(--fbac-space-md, 1rem);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .fbac-form-line {
    flex-direction: column;
  }
}
.fbac-form-line .fbac-field-block {
  flex: 1;
}

.fbac-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--fbac-text);
  font-size: 0.95rem;
}

.fbac-text-input,
.fbac-form-textarea,
.fbac-field-select {
  width: 100%;
  padding: var(--fbac-input-padding);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius, 0.375rem);
  background: var(--fbac-surface, #fff);
  color: var(--fbac-text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 120ms cubic-bezier(.87,0,.13,1), box-shadow 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-text-input:focus,
.fbac-form-textarea:focus,
.fbac-field-select:focus {
  outline: 2px solid var(--fbac-primary, #2563eb);
  outline-offset: -2px;
  border-color: var(--fbac-primary, #2563eb);
}

.fbac-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.fbac-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--fbac-primary, #2563eb);
  color: var(--fbac-text-inv, #fff);
  border: none;
  border-radius: var(--fbac-radius, 0.375rem);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 120ms cubic-bezier(.87,0,.13,1), filter 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-form-btn:hover {
  filter: brightness(1.1);
}

.fbac-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 480px) {
  .fbac-text-input,
  .fbac-field-select {
    min-height: 44px;
  }
  .fbac-inquiry-form {
    padding-inline: 1rem;
  }
}

.fbac-inquiry-form--standard {
  
}

.fbac-inquiry-form--simple .fbac-field-block--name,
.fbac-inquiry-form--simple .fbac-field-block--subject,
.fbac-inquiry-form--simple .fbac-field-block--department {
  display: none;
}

.fbac-inquiry-form--subject .fbac-field-block--department {
  display: none;
}

.fbac-inquiry-form--department .fbac-field-block--subject {
  display: none;
}

.fbac-inquiry-form-wrapper {
  max-width: var(--fbac-content-width, 800px);
  margin: 0 auto;
}

.fbac-field-block--message {
  grid-column: 1 / -1;
}

.fbac-input-alert {
  padding: 0.75rem 1rem;
  background: var(--fbac-bg-warning, #fef3cd);
  border-radius: var(--fbac-radius-sm, 0.25rem);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.fbac-remarks-section {
  margin-top: 3rem;
  padding: 2rem var(--fbac-hero-padding-h, 1.5rem) 0;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
  max-width: var(--fbac-content-width, var(--fbac-max-width, 1200px));
  margin-left: auto;
  margin-right: auto;
}

.fbac-entry-interactions .fbac-remarks-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  padding-left: 0;
  padding-right: 0;
}

.fbac-remarks-section-title,
.fbac-remarks-section__title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.fbac-reply-form__title,
.fbac-inquiry-form-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.fbac-feedback-count {
  font-size: 0.9rem;
  color: var(--fbac-text-muted, #6b7280);
  margin-bottom: var(--fbac-space-md, 1rem);
}
.fbac-feedbacks-list,
.fbac-feedback-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fbac-reply-form-wrapper {
  max-width: var(--fbac-content-width, 800px);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-reply-form {
  margin-bottom: 2rem;
  padding: var(--fbac-space-lg);
  background: var(--fbac-bg, #f8fafc);
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-reply-form--full {
  
}

.fbac-reply-form--simple .fbac-field-block--email {
  display: none;
}

.fbac-reply-form--minimal .fbac-field-block--name,
.fbac-reply-form--minimal .fbac-field-block--email {
  display: none;
}

.fbac-reply-form--inline {
  display: flex;
  gap: var(--fbac-space-md);
  flex-wrap: wrap;
}
.fbac-reply-form--inline .fbac-field-block {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0;
}
.fbac-reply-form--inline .fbac-field-block--comment {
  flex: 100%;
}
@media (max-width: 480px) {
  .fbac-reply-form--inline {
    flex-direction: column;
  }
  .fbac-reply-form--inline .fbac-field-block {
    min-width: 0;
  }
}

.fbac-feedback {
  position: relative;
  background: var(--fbac-surface, #fff);
  padding: var(--fbac-space-lg);
  padding-right: 2.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius, 0.5rem);
}

.fbac-feedback__header {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  margin-bottom: 0.5rem;
}

.fbac-feedback__author {
  font-weight: 600;
  color: var(--fbac-text);
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.fbac-feedback__date,
.fbac-feedback__date-sub,
.fbac-feedback__date-foot,
.fbac-feedback__date-inline {
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #64748b);
}
.fbac-feedback__date-sub {
  display: block;
  margin-bottom: 5px;
}
.fbac-feedback__date-foot {
  display: block;
  margin-top: 8px;
}
.fbac-feedback__date-inline {
  margin-left: 0.5rem;
}

.fbac-feedback__subtitle {
  font-size: 0.8rem;
  color: var(--fbac-text-muted);
  margin-top: 0.15rem;
}

.fbac-feedback__footer {
  background: transparent;
  color: inherit;
  padding: 0;
  margin-top: 0.5rem;
}

.fbac-feedback__flag {
  margin-right: 0.25rem;
}

.fbac-feedback__content {
  line-height: 1.6;
  color: var(--fbac-text);
  word-break: break-word;
  overflow-wrap: break-word;
}

.fbac-remarks-section--flat .fbac-feedback {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.25rem 2.5rem 1.25rem 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-remarks-section--flat .fbac-feedback:last-child {
  border-bottom: none;
}

.fbac-remarks-section--cards .fbac-feedback,
.fbac-feedback--card {
  background: var(--fbac-surface, #fff);
  box-shadow: var(--fbac-shadow, 0 1px 3px rgba(0,0,0,var(--shadow-alpha-sm)));
}

.fbac-remarks-section--thread .fbac-feedback {
  margin-left: 0;
}
.fbac-remarks-section--thread .fbac-feedback[data-depth="1"] {
  margin-left: 1.5rem;
  border-left: 2px solid var(--fbac-border, #e5e7eb);
}
.fbac-remarks-section--thread .fbac-feedback[data-depth="2"] {
  margin-left: 3rem;
  border-left: 2px solid var(--fbac-border, #e5e7eb);
}

.fbac-feedback-author { font-weight: 600; word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
.fbac-feedback-date { font-size: 0.85rem; color: var(--fbac-text-muted, #64748b); }
.fbac-feedback-text { margin-top: 0.5rem; line-height: 1.6; word-break: break-word; overflow-wrap: break-word; }

.fbac-feedbacks-empty {
  text-align: center;
  padding: var(--fbac-space-xl);
  color: var(--fbac-text-muted, #64748b);
  font-style: italic;
}

.fbac-feedback--pending {
  background: var(--fbac-bg-warning, #fffbeb);
  border: 2px dashed var(--fbac-border-warning, #fbbf24);
  border-radius: var(--fbac-radius, 0.5rem);
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.fbac-feedback--pending .fbac-feedback__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--fbac-text-muted, #64748b);
  background: transparent;
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius-sm, 4px);
  cursor: pointer;
  transition: all 0.15s ease;
}
.fbac-feedback--pending .fbac-feedback__close:hover {
  color: var(--fbac-error, #dc2626);
  border-color: var(--fbac-error, #dc2626);
  background: var(--fbac-error-bg, #fef2f2);
}

.fbac-feedback--pending .fbac-feedback__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fbac-warning-dark, #92400e);
  background: var(--fbac-warning-light, #fde68a);
  padding: 0.2rem 0.5rem;
  border-radius: var(--fbac-radius-xs, 3px);
}

.fbac-feedback--pending .fbac-feedback__content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fbac-text);
}

.fbac-feedback--pending__status { display: none; }
.fbac-feedback--pending__delete { display: none; }

.fbac-feedback__admin-delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--fbac-error, #dc2626);
  background: var(--fbac-error-bg, #fef2f2);
  border: 1px solid var(--fbac-error, #dc2626);
  border-radius: var(--fbac-radius-xs, 3px);
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.15s ease;
}
.fbac-feedback__admin-delete:hover {
  opacity: 1;
  background: var(--fbac-error, #dc2626);
  color: var(--fbac-button-text, #fff);
}

.fbac-feedbacks-loadmore {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.fbac-feedbacks-loadmore button {
  display: inline-flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  padding: var(--fbac-space-sm) var(--fbac-space-lg);
  background: var(--fbac-bg-alt, #f8fafc);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius, 0.375rem);
  color: var(--fbac-text);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--fbac-transition, 0.2s) ease;
}
.fbac-feedbacks-loadmore button:hover {
  background: var(--fbac-surface, #fff);
  border-color: var(--fbac-primary, #2563eb);
  color: var(--fbac-primary, #2563eb);
}
.fbac-feedbacks-loadmore button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.fbac-feedbacks-loadmore--outline button {
  background: transparent;
}
.fbac-feedbacks-loadmore--filled button {
  background: var(--fbac-primary, #2563eb);
  border-color: var(--fbac-primary, #2563eb);
  color: var(--fbac-text-inv, #fff);
}
.fbac-feedbacks-loadmore--filled button:hover {
  background: var(--fbac-primary-dark, #1d4ed8);
  color: var(--fbac-text-inv, #fff);
}
.fbac-feedbacks-loadmore--minimal button {
  background: transparent;
  border: none;
  text-decoration: underline;
  padding: var(--fbac-space-sm) var(--fbac-space-md);
}
.fbac-feedbacks-loadmore--text button {
  background: transparent;
  border: none;
  color: var(--fbac-primary, #2563eb);
}

.fbac-feedback-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--fbac-space-md);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-feedback-pagination a {
  display: inline-flex;
  align-items: center;
  padding: var(--fbac-space-sm) var(--fbac-space-md);
  background: var(--fbac-bg, #f8fafc);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius, 0.375rem);
  color: var(--fbac-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 120ms cubic-bezier(.87,0,.13,1), border-color 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-feedback-pagination a:hover {
  background: var(--fbac-surface, #fff);
  border-color: var(--fbac-primary, #2563eb);
  color: var(--fbac-primary, #2563eb);
}

.fbac-feedback-pagination-info {
  font-size: 0.9rem;
  color: var(--fbac-text-muted, #64748b);
}

.fbac-btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.fbac-btn-group .cf-turnstile {
  flex: 0 0 auto;
}
.fbac-btn-group .fbac-form-btn {
  margin: 0;
}

.fbac-btn-group--ts-left {
  justify-content: space-between;
}
.fbac-btn-group--ts-left .fbac-form-btn {
  margin-left: auto;
}

.fbac-btn-group--ts-right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.fbac-btn-group--ts-stacked {
  flex-direction: column;
  align-items: center;
}

.fbac-btn-group .fbac-form-btn:first-child {
  margin-left: auto;
}

.fbac-rate,
.fbac-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  font-size: 0.95rem;
}

.fbac-rate-widget--stars .fbac-rate-stars,
.fbac-rating-widget--stars .fbac-rating-stars {
  color: var(--fbac-accent-on-surface, #f59e0b);
  letter-spacing: 2px;  
}

.fbac-rate-widget--stars .fbac-rate-stars span,
.fbac-rating-widget--stars .fbac-rating-stars span {
  cursor: pointer;
  transition: transform 0.1s;
}

.fbac-rate-widget--stars .fbac-rate-stars span:hover,
.fbac-rating-widget--stars .fbac-rating-stars span:hover {
  transform: scale(1.2);
}

.fbac-rate-widget--number .fbac-rate-value,
.fbac-rating-widget--number .fbac-rating-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fbac-primary, #2563eb);
}

.fbac-rate-widget,
.fbac-rating-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fbac-space-sm);
  padding: 1.5rem 0;
}

.fbac-rate-prompt,
.fbac-rating-prompt {
  font-weight: 500;
  color: var(--fbac-text, #333);
  font-size: 1rem;
}

.fbac-rate-numbers,
.fbac-rating-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fbac-space-sm);
  justify-content: center;
}

@media (max-width: 480px) {
  .fbac-rate-numbers,
  .fbac-rating-numbers {
    gap: var(--fbac-space-xs);
  }
  .fbac-rate-number,
  .fbac-rating-number {
    min-width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
    padding: 0 0.25rem;
  }
  
  .fbac-rate-float .fbac-rate-numbers,
  .fbac-rating-float .fbac-rating-numbers {
    justify-content: center;
  }
}

.fbac-rate-scale,
.fbac-rating-scale {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  flex-wrap: wrap;
}

.fbac-rate-scale-label,
.fbac-rating-scale-label {
  font-size: 0.8rem;
  color: var(--fbac-text-muted, #666);
  white-space: nowrap;
}

.fbac-rate-scale-label--low,
.fbac-rating-scale-label--low {
  text-align: right;
}

.fbac-rate-scale-label--high,
.fbac-rating-scale-label--high {
  text-align: left;
}

@media (max-width: 480px) {
  .fbac-rate-scale,
  .fbac-rating-scale {
    flex-direction: column;
    align-items: flex-start;
  }
  .fbac-rate-scale-label,
  .fbac-rating-scale-label {
    display: none; 
  }
}

.fbac-rate-number,
.fbac-rating-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  background: var(--fbac-surface, #fff);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: 0.25rem;
  color: var(--fbac-text, #333);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.fbac-rate-number:hover,
.fbac-rating-number:hover {
  background: var(--fbac-primary, #2563eb);
  border-color: var(--fbac-primary, #2563eb);
  color: var(--fbac-text-inv, #fff);
}

.fbac-rate-widget--voted,
.fbac-rating-widget--voted {
  
}

.fbac-rate-widget--voted .fbac-rate-number,
.fbac-rating-widget--voted .fbac-rating-number {
  cursor: default;
  pointer-events: none;
}

.fbac-rate-widget--voted .fbac-rate-number:hover,
.fbac-rating-widget--voted .fbac-rating-number:hover {
  transform: none;
  background: var(--fbac-surface, #fff);
  border-color: var(--fbac-border, #e5e7eb);
  color: var(--fbac-text, #333);
}

.fbac-rate--selected,
.fbac-rating--selected {
  background: var(--fbac-primary, #2563eb) !important;
  border-color: var(--fbac-primary, #2563eb) !important;
  color: var(--fbac-primary-text, #fff);
  box-shadow: 0 2px 8px 0 12px 32px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
}

.fbac-rate--disabled:not(.fbac-rate--selected),
.fbac-rating--disabled:not(.fbac-rating--selected) {
  opacity: 0.5;
  background: var(--fbac-bg, #f8f9fa) !important;
}

.fbac-rate-widget--style-rounded .fbac-rate-number,
.fbac-rating-widget--style-rounded .fbac-rating-number {
  border-radius: 0.5rem;
}

.fbac-rate-widget--style-pill .fbac-rate-number,
.fbac-rating-widget--style-pill .fbac-rating-number {
  border-radius: 9999px;
  min-width: 2.5rem;
}

.fbac-rate-widget--style-minimal .fbac-rate-number,
.fbac-rating-widget--style-minimal .fbac-rating-number {
  border: none;
  background: var(--fbac-bg, #f1f5f9);
}
.fbac-rate-widget--style-minimal .fbac-rate-number:hover,
.fbac-rating-widget--style-minimal .fbac-rating-number:hover {
  background: var(--fbac-primary, #2563eb);
  color: var(--fbac-text-inv, #fff);
}

.fbac-rate-widget--style-outline .fbac-rate-number,
.fbac-rating-widget--style-outline .fbac-rating-number {
  background: transparent;
  border: 2px solid var(--fbac-border, #d1d5db);
}
.fbac-rate-widget--style-outline .fbac-rate-number:hover,
.fbac-rating-widget--style-outline .fbac-rating-number:hover {
  border-color: var(--fbac-primary, #2563eb);
  background: var(--fbac-primary, #2563eb);
  color: var(--fbac-text-inv, #fff);
}

.fbac-rate-widget--style-compact .fbac-rate-number,
.fbac-rating-widget--style-compact .fbac-rating-number {
  min-width: 1.75rem;
  height: 1.75rem;
  font-size: 0.8rem;
  padding: 0 0.3rem;
}

.fbac-rate-feedback,
.fbac-rating-feedback {
  margin-top: 0.75rem;
  padding: var(--fbac-space-sm, .5rem);
  background: var(--fbac-bg-success, #ecfdf5);
  border-radius: var(--fbac-radius, 0.375rem);
  font-size: 0.9rem;
  text-align: center;
}
.fbac-rate-feedback strong,
.fbac-rating-feedback strong {
  color: var(--fbac-success, #10b981);
  display: block;
  margin-bottom: 0.25rem;
}
.fbac-rate-feedback small,
.fbac-rating-feedback small {
  color: var(--fbac-text-muted, #666);
}

.fbac-rate-stars,
.fbac-rating-stars {
  display: flex;
  gap: var(--fbac-space-xs);
}

.fbac-rate-star,
.fbac-rating-star {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--fbac-space-xs);
  font-size: 1.5rem;
  color: var(--fbac-border, #d1d5db);
  transition: color 0.1s, transform 0.1s;
}

.fbac-rate-star:hover,
.fbac-rating-star:hover,
.fbac-rate-star--active,
.fbac-rating-star--active {
  color: var(--fbac-accent-on-surface, #f59e0b);
  background: transparent;
}

.fbac-rate-star:hover,
.fbac-rating-star:hover {
  transform: scale(1.15);
}

.fbac-rate-widget:not(.fbac-rate-widget--voted) .fbac-rate-feedback,
.fbac-rating-widget:not(.fbac-rating-widget--voted) .fbac-rating-feedback {
  font-size: 0.9rem;
  color: var(--fbac-text-muted, #64748b);
  margin-top: 0.5rem;
}

.fbac-rate-widget--full,
.fbac-rating-widget--full {
  gap: var(--fbac-space-sm);
}

.fbac-rate-widget--bar,
.fbac-rating-widget--bar {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--fbac-space-xs);
}

.fbac-rate-bar,
.fbac-rating-bar {
  width: 120px;
  height: 8px;
  background: var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius-sm, 4px);
  overflow: hidden;
}

.fbac-rate-bar-fill,
.fbac-rating-bar-fill {
  height: 100%;
  background: var(--fbac-accent, #f59e0b);
  transition: width 120ms cubic-bezier(.87,0,.13,1) ease;
}

.fbac-rate-bar-container,
.fbac-rating-bar-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.fbac-rate-bar-value,
.fbac-rating-bar-value {
  font-size: 0.85rem;
  color: var(--fbac-text-muted);
}
.fbac-rate-bar-submit,
.fbac-rating-bar-submit {
  display: none;
}

.fbac-rate-count,
.fbac-rating-count {
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #6b7280);
}
.fbac-rate-stats,
.fbac-rating-stats {
  display: flex;
  align-items: center;
  gap: var(--fbac-space-sm, 0.5rem);
  font-size: 0.9rem;
  color: var(--fbac-text-muted);
}
.fbac-rate-full,
.fbac-rating-full {
  text-align: center;
  padding: var(--fbac-space-md);
}
.fbac-rate-thumb,
.fbac-rating-thumb {
  display: inline-flex;
  align-items: center;
  gap: var(--fbac-space-xs, 0.25rem);
  cursor: pointer;
}

.fbac-rate-widget--thumbs,
.fbac-rating-widget--thumbs {
  gap: var(--fbac-space-md);
}

.fbac-rate-thumbs,
.fbac-rating-thumbs {
  display: flex;
  gap: var(--fbac-space-sm);
  justify-content: center;
  align-items: center;
}

.fbac-rate-widget--thumbs button,
.fbac-rating-widget--thumbs button {
  display: inline-flex;
  align-items: center;
  gap: var(--fbac-space-sm);
  padding: var(--fbac-space-sm) var(--fbac-space-md);
  background: var(--fbac-bg, #f8fafc);
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: 2rem;
  cursor: pointer;
  transition: background 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-rate-widget--thumbs button:hover,
.fbac-rating-widget--thumbs button:hover {
  background: var(--fbac-surface, #fff);
  color: var(--fbac-text);
}

.fbac-rate-widget--thumbs .fbac-rate-thumb--up:hover,
.fbac-rating-widget--thumbs .fbac-rating-thumb--up:hover {
  border-color: var(--fbac-success, #10b981);
}

.fbac-rate-widget--thumbs .fbac-rate-thumb--down:hover,
.fbac-rating-widget--thumbs .fbac-rating-thumb--down:hover {
  border-color: var(--fbac-error, #ef4444);
}

.fbac-rate-voted,
.fbac-rating-voted {
  color: var(--fbac-text-muted, #64748b);
  font-size: 0.9rem;
}

.fbac-rate-voted strong,
.fbac-rating-voted strong {
  color: var(--fbac-accent-on-surface, #f59e0b);
}

.fbac-rate-widget--voted .fbac-rate--selected,
.fbac-rating-widget--voted .fbac-rating--selected {
  color: var(--fbac-accent-on-surface, #f59e0b) !important;
  border-color: var(--fbac-accent, #f59e0b) !important;
  background: rgba(var(--fbac-accent-rgb, 245,158,11), 0.1) !important;
  transform: scale(1.05);
}

.fbac-rate--unselected,
.fbac-rating--unselected {
  opacity: 0.4;
  cursor: default;
}

.fbac-rate--filled svg,
.fbac-rating--filled svg {
  fill: var(--fbac-accent, #f59e0b);
  stroke: var(--fbac-accent, #f59e0b);
}

.fbac-rate-prompt--voted,
.fbac-rating-prompt--voted {
  color: var(--fbac-success, #10b981);
  font-weight: 500;
}

.fbac-rate-thumb--up.fbac-rate--selected,
.fbac-rating-thumb--up.fbac-rating--selected {
  border-color: var(--fbac-success, #10b981) !important;
  background: rgba(var(--fbac-success-rgb, 16,185,129), 0.1) !important;
  color: var(--fbac-success, #10b981) !important;
}

.fbac-rate-thumb--down.fbac-rate--selected,
.fbac-rating-thumb--down.fbac-rating--selected {
  border-color: var(--fbac-error, #ef4444) !important;
  background: rgba(var(--fbac-error-rgb, 239,68,68), 0.1) !important;
  color: var(--fbac-error, #ef4444) !important;
}

.fbac-rate-widget--voted button:disabled,
.fbac-rating-widget--voted button:disabled {
  cursor: default;
}

.fbac-remarks-section,.fbac-inquiry-form-wrapper{max-width:774px;margin-left:auto;margin-right:auto}

.fbac-related-section-bg--gradient{background:linear-gradient(90deg,color-mix(in srgb,var(--fbac-primary) 5%,transparent),color-mix(in srgb,var(--fbac-accent) 5%,transparent))!important}
@media print{.fbac-related-section-bg--gradient{background:none!important;background-image:none!important}}
.fbac-author-section-bg--accent{background:var(--fbac-surface,#f5f5f5)!important}
@media print{.fbac-author-section-bg--accent{background:none!important;background-image:none!important}}
.fbac-category-section-bg--gradient{background:linear-gradient(105deg,color-mix(in srgb,var(--fbac-primary) 2%,transparent),color-mix(in srgb,var(--fbac-accent) 2%,transparent))!important}
@media print{.fbac-category-section-bg--gradient{background:none!important;background-image:none!important}}
.fbac-footer-section-bg--lines{background-image:repeating-linear-gradient(75deg,transparent,transparent 9px,var(--fbac-border,#e5e7eb) 9px,var(--fbac-border,#e5e7eb) 10px)!important}
@media print{.fbac-footer-section-bg--lines{background:none!important;background-image:none!important}}
.fbac-cta-section-bg--accent{background:var(--fbac-surface,#f5f5f5)!important}
@media print{.fbac-cta-section-bg--accent{background:none!important;background-image:none!important}}

.fbac-feedback {
  position: fixed;
  z-index: var(--fbac-z-toast); 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fbac-space-sm, .5rem);
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  width: auto;
  min-width: 240px;
  max-width: min(90vw, 400px);
  box-shadow: 0 10px 28px rgba(0,0,0,var(--shadow-alpha-lg));
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms cubic-bezier(.87,0,.13,1), transform 120ms cubic-bezier(.87,0,.13,1), visibility 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-feedback--visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.fbac-feedback--toast {
  border-radius: 0.125rem;
}

.fbac-feedback--pill {
  border-radius: 999px;
}

.fbac-feedback--modal {
  border-radius: 1rem;
}

.fbac-feedback--compact {
  border-radius: 0.25rem;
}

.fbac-feedback--success {
  background: var(--fbac-success, #10b981);
  color: var(--fbac-success-text, #fff);
}

.fbac-feedback--primary {
  background: var(--fbac-primary, #2563eb);
  color: var(--fbac-primary-text, #fff);
}

.fbac-feedback--accent {
  background: var(--fbac-accent, #f59e0b);
  color: var(--fbac-accent-text, #fff);
}

.fbac-feedback--neutral {
  background: var(--fbac-surface, #fff);
  color: var(--fbac-text, #333);
  border: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-feedback--error {
  background: var(--fbac-error, #ef4444);
  color: var(--fbac-error-text, #fff);
}

.fbac-feedback-close {
  display: block;
  margin: 0 auto;
  background: rgba(255,255,255,0.25);
  border: none;
  border-radius: 0.375rem;
  color: inherit;
  opacity: 0.85;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.2rem 0.6rem;
}

.fbac-feedback-close:hover {
  opacity: 1;
  filter: brightness(1.2);
}

.fbac-feedback--anim-fade {
  transition: opacity 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-feedback--anim-slide {
  transition: opacity 120ms cubic-bezier(.87,0,.13,1), transform 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-feedback--anim-scale {
  transition: opacity 120ms cubic-bezier(.87,0,.13,1), transform 120ms cubic-bezier(.87,0,.13,1);
}
.fbac-feedback--anim-scale:not(.fbac-feedback--visible) {
  transform: translate(-50%, -50%) scale(0.8);
}

.fbac-feedback--anim-none {
  transition: none;
}

@media (max-width: 480px) {
  .fbac-feedback {
    min-width: 0;
    max-width: calc(100vw - 2rem);
    font-size: 0.9rem;
  }
}

@media print {
  .fbac-parapet,
  .fbac-parapet-search,
  .fbac-sidebar-trigger,
  .fbac-scroll-top,
  .fbac-cookie-bar,
  .fbac-rate-float,
  .fbac-share-buttons,
  .fbac-comment-form,
  .fbac-subscribe-box {
    display: none !important;
  }

  .fbac-capsule {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--fbac-border, #ccc);
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

.fbac-misplaced-image {
  display: block;
  max-width: var(--fbac-figure-portrait);
  width: 100%;
  height: auto;
  margin: 0 auto var(--fbac-space-lg, 2rem) auto;
  mix-blend-mode: multiply;
}

.fbac-misplaced-subheading {
  font-size: 1.5rem;
  color: var(--fbac-text-muted, #6b7280);
  margin-bottom: 0.5rem;
}

.fbac-misplaced-btn {
  display: inline-block;
  margin-top: 1rem;
}

.fbac-misplaced-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fbac-misplaced-message {
  color: var(--fbac-text-muted, #6b7280);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.fbac-misplaced-btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  margin-left: 0.5rem;
}

.fbac-403-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fbac-403-message {
  color: var(--fbac-text-muted, #6b7280);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.fbac-403-btn {
  display: inline-block;
  margin-top: 1rem;
}

.fbac-misplaced-categories {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-misplaced-browse-text {
  color: var(--fbac-text-muted, #6b7280);
  margin-bottom: 1rem;
}

.fbac-misplaced-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--fbac-space-sm);
}

.fbac-misplaced-category-link {
  display: inline-block;
  padding: var(--fbac-space-sm) var(--fbac-space-md);
  background: var(--fbac-bg-alt, #f3f4f6);
  color: var(--fbac-text);
  border-radius: var(--fbac-radius, 0.5rem);
  text-decoration: none;
  transition: background 120ms cubic-bezier(.87,0,.13,1);
}

.fbac-misplaced-category-link:hover {
  background: var(--fbac-primary, #3b82f6);
  color: var(--fbac-text-inv, #fff);
}

.fbac-lever-prime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--fbac-accent);
  color: var(--fbac-button-text, #fff);
  border-radius: var(--fbac-radius, 0.5rem);
  text-decoration: none;
  font-weight: 600;
}

.fbac-error-split {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.fbac-error-text {
  flex: 3;
}

.fbac-error-visual {
  flex: 2;
  display: flex;
  justify-content: center;
}

.fbac-error-visual .fbac-misplaced-image {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .fbac-error-split {
    flex-direction: column;
    text-align: center;
  }
  .fbac-error-text,
  .fbac-error-visual {
    flex: none;
    width: 100%;
  }
}

.fbac-process {
  padding: 2rem 0;
}

.fbac-process__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fbac-text);
  margin: 0 0 0.25rem;
}

.fbac-process__desc {
  font-size: 0.875rem;
  color: var(--fbac-text-muted, #6b7280);
  margin: 0;
  line-height: 1.5;
}

.fbac-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--fbac-primary);
}

.fbac-process__icon svg {
  display: block;
}

.fbac-process__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--fbac-primary);
  flex-shrink: 0;
}

.fbac-process__check::after {
  content: "\2713";
  color: var(--fbac-primary-text, #fff);
  font-size: 0.875rem;
  font-weight: 700;
}

.fbac-process__content {
  flex: 1;
  min-width: 0;
}

.fbac-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fbac-process__marker {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--fbac-primary);
  flex-shrink: 0;
}

.fbac-process--feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fbac-process--feature-list .fbac-process__step {
  border-left: 4px solid var(--fbac-primary);
  padding: 1rem 0 1rem 1.25rem;
  align-items: flex-start;
}

.fbac-process--feature-list .fbac-process__step + .fbac-process__step {
  border-top: 1px solid var(--fbac-border, #e5e7eb);
}

.fbac-process--feature-list .fbac-process__title {
  margin-bottom: 0.25rem;
}

.fbac-module-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--fbac-space-lg, 1.5rem);
}

.fbac-stats {
  padding: var(--fbac-space-xl, 2rem) 0;
}
.fbac-stats__item {
  text-align: center;
}
.fbac-stats__value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fbac-primary);
}
.fbac-stats__label {
  display: block;
  font-size: 0.85rem;
  color: var(--fbac-text-muted, #6b7280);
  margin-top: 0.25rem;
}

.fbac-stats--cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fbac-stats--cards .fbac-stats__item {
  flex: 1 1 8rem;
  max-width: 12rem;
  padding: 1.25rem 1rem;
  border: 1px solid var(--fbac-border, #e5e7eb);
  border-radius: var(--fbac-radius, 0.5rem);
}
@media (max-width: 768px) {
  .fbac-stats--cards {
    gap: 1rem;
  }
  .fbac-stats--cards .fbac-stats__item {
    flex-basis: calc(50% - 0.5rem);
  }
  .fbac-stats--cards .fbac-stats__value {
    font-size: 1.5rem;
  }
}

.fbac-hp-with-sidebar{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:3rem;max-width:var(--fbac-max-width,1200px);margin:0 auto;padding:0 var(--fbac-space-lg,1.5rem)}
.fbac-hp-main{min-width:0}
.fbac-hp-sidebar{min-width:0}
@media(max-width:1060px){.fbac-hp-with-sidebar{grid-template-columns:1fr}.fbac-hp-sidebar{order:2}}

.fbac-paginate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin: 3rem 0;
  font-size: 0.95rem;
}

.fbac-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.6rem;
  text-decoration: none;
  color: var(--fbac-text);
  border: 1px solid var(--fbac-border-subtle);
  background: transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border .15s ease;
}

.fbac-page:hover {
  background: var(--fbac-surface-alt);
  color: var(--fbac-text);
}

.fbac-page.is-active {
  font-weight: 600;
  pointer-events: none;
}

.fbac-page.is-ellipsis {
  border: none;
  cursor: default;
  background: none;
}

@media (max-width: 480px) {
  .fbac-paginate {
    gap: var(--fbac-space-xs);
  }
}

.fbac-topbar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: var(--fbac-z-overlay);
}
.fbac-topbar-overlay.fbac-active {
  display: block;
}

@keyframes fbac-slide-l { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes fbac-slide-r { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fbac-fade-in { from { opacity: 0; } to { opacity: 1; } }
body.fbac-menu-slide-left nav[data-mode="open"],
body.fbac-menu-slide-left .fbac-topbar[data-mode="open"] {
  animation: fbac-slide-l 0.3s ease-out;
}
body.fbac-menu-slide-right nav[data-mode="open"],
body.fbac-menu-slide-right .fbac-topbar[data-mode="open"] {
  animation: fbac-slide-r 0.3s ease-out;
}
body.fbac-menu-fade nav[data-mode="open"],
body.fbac-menu-fade .fbac-topbar[data-mode="open"] {
  animation: fbac-fade-in 0.25s ease-out;
}

@media (max-width: 1060px) {
  
  nav[data-mode="open"].fbac-topbar,
  .fbac-topbar[data-mode="open"] {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fbac-surface, #fff); 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: var(--fbac-z-drawer);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav[data-mode="open"] ul,
  .fbac-topbar[data-mode="open"] ul {
    display: flex !important;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    width: 100%;
    max-width: var(--fbac-figure-portrait);
    padding: 0 1rem;
    list-style: none;
    margin: 0;
  }
  nav[data-mode="open"] li,
  .fbac-topbar[data-mode="open"] li {
    width: 100%;
    border-bottom: none;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav[data-mode="open"] a,
  .fbac-topbar[data-mode="open"] a {
    display: block;
    padding: var(--fbac-space-md);
    color: var(--fbac-text, #1a1a1a) !important; 
    text-decoration: none;
    font-size: 1.125rem;
    border-left: none;
  }
}

@media (max-width: 1060px) {
  
  nav[data-mode="open"] ~ .fbac-sidebar-trigger,
  .fbac-topbar[data-mode="open"] ~ .fbac-sidebar-trigger {
    display: none;
  }
}

body.fbac-menu-open,
body.fbac-explore-open {
  overflow: hidden;
}
html.fbac-menu-open {
  overflow: hidden;
}

@media (min-width: 1061px) {
  
  .fbac-topbar,
  nav[data-mode="open"],
  .fbac-topbar[data-mode="open"] {
    display: block;
    position: static;
    background: transparent;
    z-index: auto;
  }
  
  
  .fbac-sidebar-trigger {
    display: none;
  }
}

.fbac-mobile-explore {
  display: none;
}
nav[data-mode="open"] .fbac-mobile-explore,
.fbac-topbar[data-mode="open"] .fbac-mobile-explore,
.fbac-topbar.fbac-topbar--open .fbac-mobile-explore {
  display: block;
}
.fbac-mobile-explore a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--fbac-space-sm);
}

.fbac-paginate--square .fbac-page {
  border-radius: var(--fbac-radius-sm, 4px);
}
.fbac-paginate--square .fbac-page.is-active {
  background: var(--fbac-surface-alt, #f5f5f5);
  border-color: var(--fbac-accent);
  color: var(--fbac-accent-on-surface);
}

.fbac-paginate--square.fbac-paginate--arrows-css .fbac-page--prev::before {
  content: "\2039";
  margin-right: 0.3rem;
  font-size: 1.2em;
}
.fbac-paginate--square.fbac-paginate--arrows-css .fbac-page--next::after {
  content: "\203A";
  margin-left: 0.3rem;
  font-size: 1.2em;
}

@media (max-width: 480px) {
  .fbac-paginate--square {
    gap: var(--fbac-space-sm);
  }
  .fbac-paginate--square .fbac-page {
    display: none;
  }
  .fbac-paginate--square .fbac-page.is-active,
  .fbac-paginate--square .fbac-page--first,
  .fbac-paginate--square .fbac-page--last {
    display: inline-flex;
  }
  
  .fbac-paginate--square .fbac-page--prev,
  .fbac-paginate--square .fbac-page--next {
    display: none;
  }
}

.fbac-footer--simple {
  padding: 2rem 0;
  text-align: center;
}

.fbac-footer--simple .fbac-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.fbac-footer--simple .fbac-ground-about-text {
  max-width: 500px;
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.fbac-footer--simple .fbac-social-links {
  justify-content: center;
  margin: 0;
}

.fbac-footer--simple .fbac-ground-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fbac-footer--simple .fbac-ground-nav a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9rem;
}

.fbac-footer--simple .fbac-ground-nav a:hover {
  text-decoration: underline;
}

.fbac-footer--simple .fbac-ground-copyright {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
  padding: 0;
  border: none;
}

.fbac-capsule:not(.fbac-capsule--compact):has(> a) {
  transition: transform 120ms cubic-bezier(.87,0,.13,1), box-shadow 120ms cubic-bezier(.87,0,.13,1);
}
.fbac-capsule:not(.fbac-capsule--compact):has(> a):hover {
  transform: rotate(-1deg) translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.15);
}

.fbac-cookie-bar {
  position: fixed;
  z-index: var(--fbac-z-modal); 
  background: var(--fbac-surface, #fff);
  color: var(--fbac-text, #333);
  box-shadow: 0 4px 22px rgba(0,0,0,var(--shadow-alpha-lg));
  
  padding: var(--fbac-ck-pad, 1rem);
  border-radius: var(--fbac-ck-radius, 0);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--fbac-space-md);
  font-size: 0.9rem;
  line-height: 1.5;
}
.fbac-cookie-bar p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.fbac-cookie-actions {
  display: flex;
  gap: var(--fbac-space-sm);
  align-items: center;
  flex-wrap: wrap;
}
.fbac-consent-ok {
  background: var(--fbac-accent, #2563eb);
  color: var(--fbac-button-text, #fff);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--fbac-ck-radius, 0.375rem);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 120ms cubic-bezier(.87,0,.13,1);
}
.fbac-consent-ok:hover {
  background: var(--fbac-accent-hover, #1d4ed8);
  color: var(--fbac-button-text, #fff);
}
.fbac-cookie-link {
  color: var(--fbac-text-muted, #666);
  text-decoration: underline;
  font-size: 0.85rem;
}
.fbac-cookie-link:hover {
  color: var(--fbac-accent-on-surface, #2563eb);
  background: transparent;
}

.fbac-cookie-bar.fbac-hidden,
.fbac-cookie-bar[hidden] {
  display: none !important;
}

@media (min-width: 481px) {
  
  body.fbac-has-cookie-banner .fbac-scroll-top {
    bottom: calc(2rem + 80px);
  }
  
  body.fbac-has-cookie-banner .fbac-rate-float:not([class*="top-"]) {
    bottom: calc(2rem + 100px);
  }
  
  body:has(.fbac-cookie-bar--corner-left) .fbac-scroll-top,
  body:has(.fbac-cookie-bar--corner-right) .fbac-scroll-top {
    bottom: calc(2rem + 140px);
  }
  body:has(.fbac-cookie-bar--corner-left) .fbac-rate-float:not([class*="top-"]),
  body:has(.fbac-cookie-bar--corner-right) .fbac-rate-float:not([class*="top-"]),
  body:has(.fbac-cookie-bar--corner-left) .fbac-rating-float:not([class*="top-"]),
  body:has(.fbac-cookie-bar--corner-right) .fbac-rating-float:not([class*="top-"]) {
    bottom: calc(2rem + 160px);
  }
  body:has(.fbac-cookie-bar--floating) .fbac-rate-float:not([class*="top-"]),
  body:has(.fbac-cookie-bar--floating) .fbac-rating-float:not([class*="top-"]) {
    bottom: calc(2rem + 120px);
  }
}

@media (max-width: 480px) {
  body.fbac-has-cookie-banner .fbac-scroll-top {
    bottom: calc(1rem + 80px);
  }
  body.fbac-has-cookie-banner .fbac-rate-float:not([class*="top-"]) {
    bottom: calc(1rem + 130px);
  }
}

.fbac-cookie-bar--bar-dark {
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--fbac-header-bg, #1e293b);
  color: var(--fbac-header-text, #f1f5f9);
  border-top: 1px solid var(--fbac-border-on-dark);
  border-radius: 0;
  gap: var(--fbac-space-sm, .5rem);
}
.fbac-cookie-bar--bar-dark p {
  flex: 0 1 auto;
  color: inherit;
}
.fbac-cookie-bar--bar-dark .fbac-consent-ok {
  background: var(--fbac-accent, #3b82f6);
}
.fbac-cookie-bar--bar-dark .fbac-consent-ok:hover {
  filter: brightness(0.85);
}

.fbac-cookie-bar--bar-dark .fbac-cc-banner__title,
.fbac-cookie-bar--bar-dark .fbac-cc-banner__text,
.fbac-cookie-bar--bar-dark .fbac-cc-banner__link {
  
  color: var(--fbac-header-text, #f1f5f9);
}
.fbac-cookie-bar--bar-dark .fbac-cc-banner__link:hover {
  color: var(--fbac-header-text, #f1f5f9);
  opacity: 0.82;
  background: transparent;
}
@media (max-width: 480px) {
  .fbac-cookie-bar--bar-dark {
    flex-direction: column;
    text-align: center;
    gap: var(--fbac-space-sm, .5rem);
  }
}

.fbac-message--top-accent {
    border-left: none;
    border-top: 4px solid var(--fbac-primary);
}

.fbac-message--boxed {
    border: 1px solid var(--fbac-border);
    border-left: 4px solid var(--fbac-primary); 
    background: var(--fbac-surface);
    box-shadow: var(--fbac-shadow-sm);
    padding: 1.5rem;
}

.fbac-message--minimal {
    border: none;
    background: transparent;
    padding: 0.5rem 0;
    font-style: italic;
    color: var(--fbac-text-muted);
    border-left: 2px solid var(--fbac-border); 
    padding-left: 1rem;
}

.fbac-excerpt--big-icon {
    padding-left: 3rem;
    border-left: none;
}
.fbac-excerpt--big-icon::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--fbac-border);
    font-family: serif;
}

.fbac-excerpt--boxed {
    border: 1px solid var(--fbac-border);
    padding: 2rem;
    background: var(--fbac-surface-alt);
    border-radius: var(--fbac-radius);
    border-left: none; 
}

.fbac-excerpt--simple {
    border: none;
    padding: 0;
    font-family: var(--fbac-font-display);
    font-size: 1.5em;
    text-align: center;
    color: var(--fbac-primary);
}

.fbac-matrix--bordered {
    border: 1px solid var(--fbac-border);
}
.fbac-matrix--bordered td, 
.fbac-matrix--bordered th { 
    border: 1px solid var(--fbac-border); 
}

.fbac-matrix--minimal { 
    border: none; 
}
.fbac-matrix--minimal td { 
    border-bottom: 1px solid var(--fbac-border); 
}
.fbac-matrix--minimal th {
    border-bottom: 2px solid var(--fbac-primary);
}

