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

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

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

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

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

.abbc-story-wrapper--sidebar .abbc-figure--float-left,
.abbc-story-wrapper--sidebar .abbc-visual--float-left,
.abbc-story-wrapper--sidebar .abbc-figure--float-right,
.abbc-story-wrapper--sidebar .abbc-visual--float-right {
  max-width: 50%;
}

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

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

.abbc-story__content h2,
.abbc-story__content h3,
.abbc-story__content .abbc-subheading {
  clear: both;
}

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

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

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

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

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

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

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

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

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

figure.abbc-cover-art {
  aspect-ratio: auto;
  object-fit: initial;
  width: auto;
  height: auto;
}
.abbc-cover-art--float-left {
  float: left;
  max-width: 40%;
  margin: 0 var(--abbc-space-lg) var(--abbc-space-md) 0;
  clear: left;
}
.abbc-cover-art--float-left img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--abbc-radius, 0.5rem);
}
.abbc-cover-art--float-right {
  float: right;
  max-width: 40%;
  margin: 0 0 var(--abbc-space-md) var(--abbc-space-lg);
  clear: right;
}
.abbc-cover-art--float-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--abbc-radius, 0.5rem);
}
.abbc-story-wrapper--sidebar .abbc-cover-art--float-left,
.abbc-story-wrapper--sidebar .abbc-cover-art--float-right {
  max-width: 50%;
}
.abbc-cover-art--full-width {
  width: 100%;
  margin: var(--abbc-space-lg) 0;
}
.abbc-cover-art--full-width img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--abbc-radius, 0.5rem);
}
.abbc-cover-art--medium {
  width: 100%;
  max-width: var(--abbc-figure-medium);
  margin: var(--abbc-space-lg) auto;
}
.abbc-cover-art--medium img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--abbc-radius, 0.5rem);
}
.abbc-cover-art--small,
.abbc-cover-art--inline {
  width: 100%;
  max-width: var(--abbc-figure-small);
  margin: var(--abbc-space-md) auto;
}
.abbc-cover-art--small img,
.abbc-cover-art--inline img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--abbc-radius, 0.5rem);
}
.abbc-cover-art--wide {
  width: 100%;
  margin: var(--abbc-space-xl) 0;
}
.abbc-cover-art--wide img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--abbc-radius, 0.5rem);
}
@media (max-width: 576px) {
  .abbc-cover-art--float-left,
  .abbc-cover-art--float-right {
    float: none;
    max-width: 100%;
    margin: var(--abbc-space-md) 0;
  }
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1081px) {
  .abbc-flipout-toggle,
  .abbc-flipout a {
    white-space: nowrap;
  }
}

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

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

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

.abbc-layout-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 360px));
  gap: var(--abbc-space-md);
}
@media (max-width: 576px) {
  .abbc-layout-grid--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--abbc-space-sm);
  }
}

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

.abbc-storyteller-grid:has(> *:only-child),
.abbc-author-grid:has(> *:only-child),
.abbc-category-grid:has(> *:only-child) {
  grid-template-columns: 1fr;
  justify-items: start;
}
.abbc-storyteller-grid > *:only-child,
.abbc-author-grid > *:only-child,
.abbc-category-grid > *:only-child {
  max-width: 360px;
  width: 100%;
}
@media (max-width: 800px) {
  .abbc-storyteller-grid,
  .abbc-author-grid,
  .abbc-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abbc-storyteller-grid > *,
  .abbc-author-grid > *,
  .abbc-category-grid > * {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .abbc-storyteller-grid,
  .abbc-author-grid,
  .abbc-category-grid {
    grid-template-columns: 1fr;
  }
  .abbc-storyteller-grid > *,
  .abbc-author-grid > *,
  .abbc-category-grid > * {
    max-width: none;
  }
}

.abbc-layout-grid--cols-2 > .abbc-panel,
.abbc-layout-grid--cols-3 > .abbc-panel,
.abbc-layout-grid--cols-4 > .abbc-panel {
  max-width: 100%;
  width: 100%;
}

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

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

@media (max-width: 576px) {
  .abbc-layout-grid--cols-2,
  .abbc-layout-grid--cols-3,
  .abbc-layout-grid--cols-4 {
    grid-template-columns: 1fr;
  }
}

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

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

@media (max-width: 1080px) {
  .abbc-team-grid {
    grid-template-columns: repeat(2, minmax(min(100%, 250px), 1fr));
  }
}
@media (max-width: 800px) {
  .abbc-team-grid {
    grid-template-columns: 1fr;
    gap: var(--abbc-space-sm, 0.75rem);
  }
  .abbc-team-avatar,
  .abbc-team-grid .abbc-panel img {
    max-width: 100%;
    width: auto;
    margin-bottom: 0.5rem;
  }
  .abbc-team-grid .abbc-panel,
  .abbc-team-grid .abbc-sector,
  .abbc-team-grid > article {
    padding: var(--abbc-space-sm, 0.75rem);
  }
}

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

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

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

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

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

.abbc-story__content p,
.abbc-story__content li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.abbc-bg-effect--gradient-down .abbc-display--overlay::before,
body.abbc-bg-effect--gradient-down .abbc-display--centered[style*="background-image"]::before {
  background: linear-gradient(to bottom, rgba(0,0,0,var(--overlay-alpha-soft)) 0%, rgba(0,0,0,var(--overlay-alpha-strong)) 100%);
}

body.abbc-bg-effect--vignette .abbc-display--overlay::before,
body.abbc-bg-effect--vignette .abbc-display--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.abbc-bg-effect--diagonal .abbc-display--overlay::before,
body.abbc-bg-effect--diagonal .abbc-display--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%);
}

.abbc-img-fade--left .abbc-display--split .abbc-hero-image,
.abbc-img-fade--left .abbc-display--split > img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

.abbc-img-fade--right .abbc-display--split-reverse .abbc-hero-image,
.abbc-img-fade--right .abbc-display--split-reverse > img {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%);
  mask-image: linear-gradient(to left, transparent 0%, black 25%);
}

.abbc-img-fade--down .abbc-display img {
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%);
  mask-image: linear-gradient(to top, transparent 0%, black 30%);
}

.abbc-img-fade--vignette .abbc-display--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;
}

.abbc-img-fade--up .abbc-display--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,var(--overlay-alpha-soft)) 0%, transparent 55%);
  pointer-events: none;
}

.abbc-bottom-grad #content > .abbc-display::after {
  content: '';
  position: absolute;
  
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 0;
  height: 100px;
  background: linear-gradient(to top, var(--abbc-bg, #fff), transparent);
  pointer-events: none;
  z-index: 2;
}

.abbc-bottom-grad .abbc-display {
  position: relative;
}

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

.abbc-plinth {
  background: var(--abbc-header-bg);
  color: var(--abbc-header-text);
  padding: 3.5rem 0 2.5rem;  
  margin-top: auto;
  text-align: center;
}
.abbc-plinth h2,
.abbc-plinth a,
.abbc-plinth p {
  color: var(--abbc-header-text);
}
.abbc-plinth a:hover {
  text-decoration: underline;
}

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

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

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

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

@media (max-width: 800px) {
  .abbc-plinth-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

.abbc-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(--abbc-border, rgba(0,0,0,var(--shadow-alpha-sm)));
}
.abbc-cc-toggle:last-child {
  border-bottom: 0;
}
.abbc-cc-toggle input[type="checkbox"] {
  grid-row: 1;
  grid-column: 1;
  margin: 0.2rem 0 0 0;
}
.abbc-cc-toggle__label {
  grid-row: 1;
  grid-column: 2;
  font-weight: 600;
}
.abbc-cc-toggle__desc {
  grid-row: 2;
  grid-column: 2;
  font-size: 0.85rem;
  color: var(--abbc-text-muted, rgba(0,0,0,var(--overlay-alpha-strong)));
}

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

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

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

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

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

  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--abbc-footer-text, #fff);
  transition: all 380ms cubic-bezier(.5,-.3,.5,1) ease;
  text-decoration: none;
}

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

.abbc-social-link svg {
  width: 28px;
  height: 28px;
}

.abbc-social-link:hover {
  background: var(--abbc-accent, var(--abbc-primary));
  color: var(--abbc-accent-text, #fff);
  filter: brightness(1.15);
}
.abbc-social-facebook:hover { background: #1877f2; }
.abbc-social-twitter:hover { background: #1da1f2; }
.abbc-social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.abbc-social-linkedin:hover { background: #0a66c2; }
.abbc-social-youtube:hover { background: #ff0000; }
.abbc-social-tiktok:hover { background: #000; }
.abbc-social-github:hover { background: #333; }

.abbc-storyteller-section {
  padding-bottom: 2rem;
}

.abbc-storyteller-profile {
  margin: 0;
}

.abbc-storyteller-profile--hero-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 3rem;
  align-items: start;
  max-width: 720px;
  margin-inline: auto;
}

.abbc-storyteller-profile--hero-banner .abbc-storyteller-photo {
  grid-row: 1 / -1;
}

.abbc-storyteller-photo {
  display: block;
}

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

.abbc-storyteller-photo img.abbc-photo--square {
  border-radius: 0;
  border: 3px solid var(--abbc-accent, var(--abbc-primary));
}

.abbc-storyteller-photo img.abbc-photo--rounded {
  border-radius: var(--abbc-radius, 0.5rem);
  box-shadow: 0 3px 18px rgba(0,0,0,var(--shadow-alpha-xl));
}

.abbc-storyteller-photo img.abbc-photo--circle {
  border-radius: 50%;
  border: 3px solid var(--abbc-accent, var(--abbc-primary));
}

.abbc-storyteller-photo img.abbc-photo--minimal {
  border-radius: var(--abbc-radius-sm, 0.25rem);
  box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 20px 48px rgba(0,0,0,.04);
}

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

.abbc-storyteller-info {
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-word;
}

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

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

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

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

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

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

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

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

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

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

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

.abbc-storyteller-info--surface {
  background: var(--abbc-surface);
  padding: 2rem;
  border-radius: var(--abbc-radius, 0.5rem);
  border: 1px solid var(--abbc-border);
}

.abbc-storyteller-info--border {
  border: 1px solid var(--abbc-primary);
  padding: 2rem;
  border-radius: var(--abbc-radius, 0.5rem);
}

.abbc-storyteller-info--accent-left {
  border-left: 1px solid var(--abbc-primary);
  padding-left: 2rem;
}
.abbc-storyteller-info--accent-top {
  border-top: 1px solid var(--abbc-primary);
  padding-top: 2rem;
}
.abbc-storyteller-info--accent-bottom {
  border-bottom: 1px solid var(--abbc-primary);
  padding-bottom: 2rem;
}

.abbc-storyteller-hero {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.abbc-storyteller-profile--hero-banner .abbc-storyteller-body {
  padding-top: 0.75rem;
}

.abbc-storyteller-profile--card-box .abbc-storyteller-card {
  background: var(--abbc-surface);
  border-radius: 0.75rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 720px;
  margin-inline: auto;
}

.abbc-storyteller-profile--card-box .abbc-storyteller-card--border-left {
  border-left: 3px solid var(--abbc-primary);
}

.abbc-storyteller-profile--card-box .abbc-storyteller-card--border-top {
  border-top: 3px solid var(--abbc-primary);
}

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

.abbc-storyteller-profile--card-box .abbc-storyteller-card--photo-right .abbc-storyteller-photo {
  order: 2;
}

.abbc-storyteller-profile--card-box .abbc-storyteller-card--photo-right .abbc-storyteller-info {
  order: 1;
}

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

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

.abbc-storyteller-profile--sidebar-classic .abbc-storyteller-sidebar--photo-right .abbc-storyteller-photo {
  order: 2;
}

.abbc-storyteller-profile--sidebar-classic .abbc-storyteller-sidebar--photo-right .abbc-storyteller-info {
  order: 1;
}

.abbc-storyteller-profile--centered-magazine {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 3rem;
  max-width: 720px;
  margin-inline: auto;
  align-items: start;
}

.abbc-storyteller-profile--centered-magazine .abbc-storyteller-header {
  display: contents;
}

.abbc-storyteller-profile--centered-magazine .abbc-storyteller-photo {
  grid-row: 1 / -1;
}

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

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

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

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

.abbc-storyteller-profile--split-panel .abbc-storyteller-panel-right {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abbc-storyteller-profile--split-panel .abbc-storyteller-split--reversed {
  direction: rtl;
}

.abbc-storyteller-profile--split-panel .abbc-storyteller-split--reversed > * {
  direction: ltr;
}

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

.abbc-compact-articles li {
  padding: 0.875rem 0;
}

.abbc-compact-articles li a {
  color: var(--abbc-primary);
  text-decoration: underline;
  font-weight: 600;
}

.abbc-compact-articles li a:hover {
  color: var(--abbc-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.abbc-photo-top--inline-left .abbc-storyteller-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}
.abbc-photo-top--inline-left .abbc-storyteller-photo {
  flex-shrink: 0;
  width: fit-content;
}

.abbc-photo-top--inline-right .abbc-storyteller-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}
.abbc-photo-top--inline-right .abbc-storyteller-photo {
  order: 2;
  flex-shrink: 0;
  width: fit-content;
}

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

.abbc-photo-top--full-left .abbc-storyteller-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}
.abbc-photo-top--full-left .abbc-storyteller-photo {
  flex-shrink: 0;
  width: fit-content;
}

.abbc-photo-top--inline-left .abbc-storyteller-body,
.abbc-photo-top--inline-right .abbc-storyteller-body,
.abbc-photo-top--full-left .abbc-storyteller-body,
.abbc-photo-top--full-right .abbc-storyteller-body {
  max-width: 640px;
  margin: 0;
}
.abbc-photo-top--inline-left .abbc-storyteller-articles,
.abbc-photo-top--inline-right .abbc-storyteller-articles,
.abbc-photo-top--full-left .abbc-storyteller-articles,
.abbc-photo-top--full-right .abbc-storyteller-articles {
  text-align: left;
}

.abbc-photo-top--full-right .abbc-storyteller-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}
.abbc-photo-top--full-right .abbc-storyteller-photo {
  order: 2;
  flex-shrink: 0;
  width: fit-content;
}

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

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

.abbc-storyteller-articles-wrap {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.abbc-storyteller-articles-wrap h2 {
  margin-top: 0.5rem;
}

.abbc-storyteller-page-bottom {
  padding-bottom: 2rem;
}

@media (max-width: 1080px) {
  .abbc-storyteller-photo img {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

  
  .abbc-storyteller-info--surface,
  .abbc-storyteller-info--border {
    padding: 1rem;
  }
  .abbc-storyteller-info--accent-left {
    padding-left: 1rem;
  }
  .abbc-storyteller-info--accent-top {
    padding-top: 1rem;
  }
  .abbc-storyteller-info--accent-bottom {
    padding-bottom: 1rem;
  }
  .abbc-storyteller-profile--hero-banner .abbc-storyteller-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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

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

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

.abbc-storyteller__name,
.abbc-author__name {
  font-weight: 600;
  color: var(--abbc-text);
}
.abbc-storyteller__bio,
.abbc-author__bio {
  font-size: 0.9rem;
  color: var(--abbc-text-muted);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.abbc-info-cards .abbc-panel {
  overflow: visible;
  min-height: 0;  
}

.abbc-info-cards .abbc-panel > a {
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.abbc-info-cards .abbc-panel > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.abbc-info-cards > div {
  display: flex;
  flex-direction: column;
  background: var(--abbc-surface);
  border-radius: var(--abbc-radius, 0.5rem);
  text-align: center;
}

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

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

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

.abbc-info-cards .abbc-panel-body {
  margin-left: 0;
  margin-right: 0;
}

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

.abbc-story-sidebar {
  min-width: 0;
  
}
.abbc-sidebar-block {
  margin-bottom: 1.5rem;
  padding: var(--abbc-space-lg);
  background: var(--abbc-surface, #fff);
  border-radius: var(--abbc-radius, 0.5rem);
  box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 20px 48px rgba(0,0,0,.04);
}
.abbc-sidebar-title {
  margin: 0 0 var(--abbc-space-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--abbc-text-muted);
}
.abbc-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.abbc-sidebar-list li {
  padding: var(--abbc-space-sm) 0;
  border-bottom: 1px solid var(--abbc-border, #e5e7eb);
}
.abbc-sidebar-list li:last-child {
  border-bottom: none;
}
.abbc-sidebar-list a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--abbc-text);
  display: block;
  line-height: 1.4;
}
.abbc-sidebar-list a:hover {
  color: var(--abbc-link-hover);
  background: var(--abbc-link-hover-bg, transparent);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.abbc-storyteller-standalone {
  margin: 2.5rem auto;
  max-width: var(--abbc-content-width, var(--abbc-max-width, 1200px));
  padding: var(--abbc-space-lg, 1.5rem);
}
.abbc-storyteller-standalone .abbc-storyteller-box {
  margin: 0;
}

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

.abbc-storyteller-centered--card {
  background: var(--abbc-surface, #f8f9fa);
  border-radius: var(--abbc-radius, 0.5rem);
}
.abbc-storyteller-centered--clean {
  background: transparent;
  padding: var(--abbc-space-md, 1rem) 0;
}
.abbc-storyteller-centered--bordered {
  background: transparent;
  border: 1px solid var(--abbc-border, #dee2e6);
  border-radius: var(--abbc-radius, 0.5rem);
}
.abbc-storyteller-centered--outline {
  background: transparent;
  border: 2px solid var(--abbc-muted, #6c757d);
  border-radius: 1.5rem;
}
.abbc-storyteller-centered--shadow {
  background: var(--abbc-bg, #fff);
  border-radius: var(--abbc-radius, 0.5rem);
  box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 20px 48px rgba(0,0,0,.04);
}

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

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

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

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

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

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

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

[class*="--dark"]:not([class*="--backdrop-dark"]):not([class*="--contrast-dark"]) .abbc-story__category--badge:hover,
.abbc-story--overlay .abbc-story__category--badge:hover,
[class*="--backdrop-dark"] .abbc-story-lead:not([class*="--plain"]) .abbc-story__category--badge:hover,
[class*="--contrast-dark"] .abbc-story-lead:not([class*="--plain"]) .abbc-story__category--badge:hover {
  background: rgba(255,255,255,0.25);
  color: var(--abbc-text-inv, #fff);
}

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

.abbc-meta-wrapper--box.abbc-story__meta--hero,
.abbc-meta-wrapper--box.abbc-story__meta--hero time,
.abbc-meta-wrapper--box.abbc-story__meta--hero a,
.abbc-meta-wrapper--box.abbc-story__meta--hero .abbc-story__category--label,
.abbc-meta-wrapper--box.abbc-story__meta--hero .abbc-story__category--caps {
  color: var(--abbc-text, #1a1a1a);
}
.abbc-meta-wrapper--pill.abbc-story__meta--hero > *,
.abbc-meta-wrapper--pill.abbc-story__meta--hero .abbc-story__category--label,
.abbc-meta-wrapper--pill.abbc-story__meta--hero .abbc-story__category--caps {
  color: var(--abbc-pill-text, var(--abbc-text, #1a1a1a));
}

.abbc-story-lead--contrast-backdrop-dark .abbc-meta-wrapper--box.abbc-story__meta--hero time,
.abbc-story-lead--contrast-backdrop-dark .abbc-meta-wrapper--box.abbc-story__meta--hero a,
.abbc-story-lead--contrast-backdrop-dark .abbc-meta-wrapper--box.abbc-story__meta--hero .abbc-story__category--label,
.abbc-story-lead--contrast-backdrop-dark .abbc-meta-wrapper--box.abbc-story__meta--hero .abbc-story__category--caps {
  color: var(--abbc-text-inv, #fff);
}

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

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

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

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

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

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

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

[class*="--dark"]:not([class*="--backdrop-dark"]):not([class*="--contrast-dark"]) .abbc-story__category:not(.abbc-story__category--badge),
.abbc-story--overlay .abbc-story__category:not(.abbc-story__category--badge),
[class*="--backdrop-dark"] .abbc-story-lead:not([class*="--plain"]) .abbc-story__category:not(.abbc-story__category--badge),
[class*="--contrast-dark"] .abbc-story-lead:not([class*="--plain"]) .abbc-story__category:not(.abbc-story__category--badge) {
  color: var(--abbc-text-inv, #fff);
}

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

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

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

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

.abbc-vote-float {
  position: fixed;
  bottom: 2rem;
  z-index: var(--abbc-z-floating); 
  background: var(--abbc-surface, #fff);
  padding: 0.75rem 1rem;
  border: 1px solid var(--abbc-border, #e5e7eb);
  border-radius: var(--abbc-radius, 0.5rem);
  box-shadow: 0 3px 18px rgba(0,0,0,var(--shadow-alpha-xl));
  transform: translateY(150%);
  opacity: 0;
  transition: transform 380ms cubic-bezier(.5,-.3,.5,1) ease, opacity 380ms cubic-bezier(.5,-.3,.5,1) ease;
  max-width: 280px;
  pointer-events: none; 
}

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

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

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

@media (min-width: 801px) {
  
  body.abbc-has-inbox-float .abbc-vote-float--bottom-right,
  body.abbc-has-inbox-float .abbc-rating-float--bottom-right,
  body.abbc-has-subscribe-float .abbc-vote-float--bottom-right {
    right: 1.5rem; 
  }
}

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

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

.abbc-vote-position--after-author {
  margin-top: 1rem;
}

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

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

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

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

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

.abbc-story-grid {
  display: grid;
  gap: var(--abbc-space-lg);
}

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

.abbc-story-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  justify-content: center;
}
.abbc-story-grid--list {
  grid-template-columns: 1fr;
  max-width: var(--abbc-content-width, 720px);
  margin: 0 auto;
}
@media (max-width: 576px) {
  .abbc-story-grid,
  .abbc-story-grid--cards,
  .abbc-story-grid--compact {
    gap: var(--abbc-space-md); 
  }
  .abbc-story-grid--cards,
  .abbc-story-grid--compact {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

.abbc-story-item {
  background: var(--abbc-surface, #fff);
  border-radius: var(--abbc-radius, 0.5rem);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 20px 48px rgba(0,0,0,.04);
}
.abbc-story-item--card {
  display: flex;
  flex-direction: column;
}
.abbc-story-item--compact {
  display: flex;
  flex-direction: column;
}
.abbc-story-item__image {
  display: block;
  overflow: hidden;
}
.abbc-story-item--card .abbc-story-item__image {
  aspect-ratio: 3/2;
}
.abbc-story-item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.abbc-story-item--card .abbc-story-item__image img {
  height: 240px;
}

.abbc-story-item--compact .abbc-story-item__image img {
  height: 160px;
}

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

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

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

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

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

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

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

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

.abbc-input-wrap {
  margin-bottom: 1.25rem;
  min-width: 0;  
}
.abbc-form-row {
  display: flex;
  gap: var(--abbc-space-md, 1rem);
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .abbc-form-row {
    flex-direction: column;
  }
}
.abbc-form-row .abbc-input-wrap {
  flex: 1;
}

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

.abbc-form-input,
.abbc-text-area,
.abbc-input-select {
  width: 100%;
  padding: var(--abbc-input-padding);
  border: 1px solid var(--abbc-border, #e5e7eb);
  border-radius: var(--abbc-radius, 0.375rem);
  background: var(--abbc-surface, #fff);
  color: var(--abbc-text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 380ms cubic-bezier(.5,-.3,.5,1), box-shadow 380ms cubic-bezier(.5,-.3,.5,1);
}

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

.abbc-text-area {
  min-height: 150px;
  resize: vertical;
}

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

.abbc-form-send:hover {
  filter: brightness(1.1);
}

.abbc-form-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 576px) {
  .abbc-form-input,
  .abbc-input-select {
    min-height: 44px;
  }
  .abbc-message-form {
    padding-inline: 1rem;
  }
}

.abbc-message-form--standard {
  
}

.abbc-message-form--simple .abbc-input-wrap--name,
.abbc-message-form--simple .abbc-input-wrap--subject,
.abbc-message-form--simple .abbc-input-wrap--department {
  display: none;
}

.abbc-message-form--subject .abbc-input-wrap--department {
  display: none;
}

.abbc-message-form--department .abbc-input-wrap--subject {
  display: none;
}

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

.abbc-input-wrap--message {
  grid-column: 1 / -1;
}

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

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

.abbc-story-interactions .abbc-feedback-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  padding-left: 0;
  padding-right: 0;
}

.abbc-feedback-section-title,
.abbc-feedback-section__title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.abbc-comment-form__title,
.abbc-message-form-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.abbc-opinion-count {
  font-size: 0.9rem;
  color: var(--abbc-text-muted, #6b7280);
  margin-bottom: var(--abbc-space-md, 1rem);
}
.abbc-opinions-list,
.abbc-opinion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.abbc-comment-form--full {
  
}

.abbc-comment-form--simple .abbc-input-wrap--email {
  display: none;
}

.abbc-comment-form--minimal .abbc-input-wrap--name,
.abbc-comment-form--minimal .abbc-input-wrap--email {
  display: none;
}

.abbc-comment-form--inline {
  display: flex;
  gap: var(--abbc-space-md);
  flex-wrap: wrap;
}
.abbc-comment-form--inline .abbc-input-wrap {
  flex: 1;
  min-width: 0;  
  margin-bottom: 0;
}
.abbc-comment-form--inline .abbc-input-wrap--comment {
  flex: 100%;
}
@media (max-width: 576px) {
  .abbc-comment-form--inline {
    flex-direction: column;
  }
  .abbc-comment-form--inline .abbc-input-wrap {
    min-width: 0;
  }
}

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

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

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

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

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

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

.abbc-opinion__flag {
  margin-right: 0.25rem;
}

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

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

.abbc-feedback-section--flat .abbc-opinion:last-child {
  border-bottom: none;
}

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

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

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

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

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

.abbc-opinion--pending .abbc-opinion__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(--abbc-text-muted, #64748b);
  background: transparent;
  border: 1px solid var(--abbc-border, #e5e7eb);
  border-radius: var(--abbc-radius-sm, 4px);
  cursor: pointer;
  transition: all 0.15s ease;
}
.abbc-opinion--pending .abbc-opinion__close:hover {
  color: var(--abbc-error, #dc2626);
  border-color: var(--abbc-error, #dc2626);
  background: var(--abbc-error-bg, #fef2f2);
}

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

.abbc-opinion--pending .abbc-opinion__content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--abbc-text);
}

.abbc-opinion--pending__status { display: none; }
.abbc-opinion--pending__delete { display: none; }

.abbc-opinion__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(--abbc-error, #dc2626);
  background: var(--abbc-error-bg, #fef2f2);
  border: 1px solid var(--abbc-error, #dc2626);
  border-radius: var(--abbc-radius-xs, 3px);
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.15s ease;
}
.abbc-opinion__admin-delete:hover {
  opacity: 1;
  background: var(--abbc-error, #dc2626);
  color: var(--abbc-button-text, #fff);
}

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

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

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

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

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

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

.abbc-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.abbc-form-actions .cf-turnstile {
  flex: 0 0 auto;
}
.abbc-form-actions .abbc-form-send {
  margin: 0;
}

.abbc-form-actions--ts-left {
  justify-content: space-between;
}
.abbc-form-actions--ts-left .abbc-form-send {
  margin-left: auto;
}

.abbc-form-actions--ts-right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.abbc-form-actions--ts-stacked {
  flex-direction: column;
  align-items: center;
}

.abbc-form-actions .abbc-form-send:first-child {
  margin-left: auto;
}

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

.abbc-vote-widget--stars .abbc-vote-stars,
.abbc-rating-widget--stars .abbc-rating-stars {
  color: var(--abbc-accent-on-surface, #f59e0b);
  letter-spacing: 2.5px;  
}

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

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

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

.abbc-vote-widget,
.abbc-rating-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--abbc-space-sm);
  padding: 1.5rem;
  max-width: var(--abbc-figure-medium, 30rem);
  margin-inline: auto;
}

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

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

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

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

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

.abbc-vote-scale-label--low,
.abbc-rating-scale-label--low {
  text-align: right;
}

.abbc-vote-scale-label--high,
.abbc-rating-scale-label--high {
  text-align: left;
}

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

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

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

.abbc-vote-widget--voted,
.abbc-rating-widget--voted {
  
}

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

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

.abbc-vote--selected,
.abbc-rating--selected {
  background: var(--abbc-primary, #2563eb) !important;
  border-color: var(--abbc-primary, #2563eb) !important;
  color: var(--abbc-primary-text, #fff);
  box-shadow: 0 2px 8px 0 8px 24px rgba(0,0,0,.08), 0 20px 48px rgba(0,0,0,.04);
}

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

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

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

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

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

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

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

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

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

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

.abbc-vote-star:hover,
.abbc-rating-star:hover {
  transform: scale(1.15);
}

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

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

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

.abbc-vote-bar,
.abbc-rating-bar {
  width: 100%;
  height: 8px;
  background: var(--abbc-border, #e5e7eb);
  border-radius: var(--abbc-radius-sm, 4px);
  overflow: hidden;
}

.abbc-vote-bar-fill,
.abbc-rating-bar-fill {
  height: 100%;
  background: var(--abbc-accent, #f59e0b);
  transition: width 380ms cubic-bezier(.5,-.3,.5,1) ease;
}

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

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

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

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

.abbc-vote-widget--thumbs button,
.abbc-rating-widget--thumbs button {
  display: inline-flex;
  align-items: center;
  gap: var(--abbc-space-sm);
  padding: var(--abbc-space-sm) var(--abbc-space-md);
  background: var(--abbc-bg, #f8fafc);
  border: 1px solid var(--abbc-border, #e5e7eb);
  border-radius: 2rem;
  cursor: pointer;
  transition: background 380ms cubic-bezier(.5,-.3,.5,1);
}

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

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

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

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

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

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

.abbc-vote--unselected,
.abbc-rating--unselected {
  opacity: 0.4;
  cursor: default;
}

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

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

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

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

.abbc-vote-widget--voted button:disabled,
.abbc-rating-widget--voted button:disabled {
  cursor: default;
}

.abbc-feedback-section,.abbc-message-form-wrapper{max-width:864px;margin-left:auto;margin-right:auto}
.abbc-comment-form__title,.abbc-message-form-title{text-align:center}
.abbc-comment-form,.abbc-message-form{text-align:center}
.abbc-input-wrap{text-align:left}

.abbc-section-bg--dots{background-image:radial-gradient(circle,var(--abbc-border,#e5e7eb) 1.25px,transparent 1.25px)!important;background-size:26px 26px}
@media print{.abbc-section-bg--dots{background:none!important;background-image:none!important}}
.abbc-related-section-bg--dots{background-image:radial-gradient(circle,var(--abbc-border,#e5e7eb) 1.5px,transparent 1.5px)!important;background-size:16px 16px}
@media print{.abbc-related-section-bg--dots{background:none!important;background-image:none!important}}
.abbc-author-section-bg--lines{background-image:repeating-linear-gradient(75deg,transparent,transparent 8px,var(--abbc-border,#e5e7eb) 8px,var(--abbc-border,#e5e7eb) 9px)!important}
@media print{.abbc-author-section-bg--lines{background:none!important;background-image:none!important}}
.abbc-category-section-bg--dots{background-image:radial-gradient(circle,var(--abbc-border,#e5e7eb) 0.5px,transparent 0.5px)!important;background-size:16px 16px}
@media print{.abbc-category-section-bg--dots{background:none!important;background-image:none!important}}
.abbc-footer-section-bg--dots{background-image:radial-gradient(circle,var(--abbc-border,#e5e7eb) 1.25px,transparent 1.25px)!important;background-size:26px 26px}
@media print{.abbc-footer-section-bg--dots{background:none!important;background-image:none!important}}
.abbc-hero-section-bg--accent{background:var(--abbc-surface,#f5f5f5)!important}
@media print{.abbc-hero-section-bg--accent{background:none!important;background-image:none!important}}

.abbc-feedback {
  position: fixed;
  z-index: var(--abbc-z-toast); 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--abbc-space-sm, .5rem);
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  width: auto;
  min-width: 180px;
  max-width: min(90vw, 480px);
  box-shadow: 0 8px 24px rgba(0,0,0,var(--shadow-alpha-lg));
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms cubic-bezier(.5,-.3,.5,1), transform 380ms cubic-bezier(.5,-.3,.5,1), visibility 380ms cubic-bezier(.5,-.3,.5,1);
}

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

.abbc-feedback--toast {
  border-radius: 0.75rem;
}

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

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

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

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

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

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

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

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

.abbc-feedback-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  box-sizing: border-box;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(0,0,0,var(--shadow-alpha-sm));
  border-radius: 4px;
  color: inherit;
  opacity: 0.85;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.2rem 0.6rem;
}

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

.abbc-feedback--anim-fade {
  transition: opacity 380ms cubic-bezier(.5,-.3,.5,1);
}

.abbc-feedback--anim-slide {
  transition: opacity 380ms cubic-bezier(.5,-.3,.5,1), transform 380ms cubic-bezier(.5,-.3,.5,1);
}

.abbc-feedback--anim-scale {
  transition: opacity 380ms cubic-bezier(.5,-.3,.5,1), transform 380ms cubic-bezier(.5,-.3,.5,1);
}
.abbc-feedback--anim-scale:not(.abbc-feedback--visible) {
  transform: translate(-50%, -50%) scale(0.8);
}

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

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

@media print {
  .abbc-banner,
  .abbc-banner-search,
  .abbc-menu-trigger,
  .abbc-scroll-top,
  .abbc-cookie-prompt,
  .abbc-vote-float,
  .abbc-share-buttons,
  .abbc-comment-form,
  .abbc-subscribe-box {
    display: none !important;
  }

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

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

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

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

.abbc-nowhere-btn {
  display: inline-block;
  margin-top: 1rem;
}

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

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

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

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

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

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

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

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

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

.abbc-nowhere-category-link {
  display: inline-block;
  padding: var(--abbc-space-sm) var(--abbc-space-md);
  background: var(--abbc-bg-alt, #f3f4f6);
  color: var(--abbc-text);
  border-radius: var(--abbc-radius, 0.5rem);
  text-decoration: none;
  transition: background 380ms cubic-bezier(.5,-.3,.5,1);
}

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

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

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

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

.abbc-stats--row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
.abbc-stats--row .abbc-stats__item {
  min-width: 0;
  text-align: center;
}
.abbc-stats--row .abbc-stats__item + .abbc-stats__item {
  border-left: 1px solid var(--abbc-border, #e5e7eb);
  padding-left: 2rem;
}
@media (max-width: 800px) {
  .abbc-stats--row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .abbc-stats--row .abbc-stats__item + .abbc-stats__item {
    border-left: none;
    padding-left: 0;
  }
  .abbc-stats--row .abbc-stats__value {
    font-size: 1.5rem;
  }
}

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

.abbc-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(--abbc-text);
  border: 1px solid var(--abbc-border-subtle);
  background: transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border .15s ease;
}

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

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

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

@media (max-width: 576px) {
  .abbc-page-list {
    gap: var(--abbc-space-xs);
  }
}

.abbc-tab-bar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: var(--abbc-z-overlay);
}
.abbc-tab-bar-overlay.abbc-active {
  display: block;
}

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

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

@media (max-width: 1080px) {
  
  nav[data-status="open"] ~ .abbc-menu-trigger,
  .abbc-tab-bar[data-status="open"] ~ .abbc-menu-trigger {
    display: none;
  }
}

body.abbc-menu-open,
body.abbc-browse-open {
  overflow: hidden;
}
html.abbc-menu-open {
  overflow: hidden;
}

@media (min-width: 1081px) {
  
  .abbc-tab-bar,
  nav[data-status="open"],
  .abbc-tab-bar[data-status="open"] {
    display: block;
    position: static;
    background: transparent;
    z-index: auto;
  }
  
  
  .abbc-menu-trigger {
    display: none;
  }
}

.abbc-mobile-browse {
  display: none;
}
nav[data-status="open"] .abbc-mobile-browse,
.abbc-tab-bar[data-status="open"] .abbc-mobile-browse,
.abbc-tab-bar.abbc-tab-bar--open .abbc-mobile-browse {
  display: block;
}
.abbc-mobile-browse a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--abbc-space-sm);
}

.abbc-page-list--rounded .abbc-page {
  border-radius: 999px;
}
.abbc-page-list--rounded .abbc-page.is-active {
  background: var(--abbc-accent);
  color: var(--abbc-accent-text, #fff);
  border-color: var(--abbc-accent);
}

.abbc-page-list--rounded.abbc-page-list--arrows-css .abbc-page--prev::before {
  content: "\2190";
  margin-right: 0.4rem;
}
.abbc-page-list--rounded.abbc-page-list--arrows-css .abbc-page--next::after {
  content: "\2192";
  margin-left: 0.4rem;
}

@media (max-width: 576px) {
  .abbc-page-list--rounded .abbc-page:not(.is-active):not(.abbc-page--prev):not(.abbc-page--next) {
    display: none;
  }
}

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

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

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

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

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

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

.abbc-footer--simple .abbc-plinth-nav a:hover {
  text-decoration: underline;
}

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

.abbc-panel:not(.abbc-panel--compact):has(> a) img {
  transition: transform 380ms cubic-bezier(.5,-.3,.5,1);
  will-change: transform;
}
.abbc-panel:not(.abbc-panel--compact):has(> a):hover img {
  transform: scale(1.06);
}

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

.abbc-cookie-prompt.abbc-hidden,
.abbc-cookie-prompt[hidden] {
  display: none !important;
}

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

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

.abbc-cookie-prompt--floating {
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  max-width: var(--abbc-ck-width-lg, 560px);
  width: calc(100% - 2rem);
  border: 1px solid var(--abbc-border-subtle);
  box-shadow: 0 18px 44px rgba(0,0,0,var(--shadow-alpha-lg));
  background: var(--abbc-surface, #fff);
}
@media (max-width: 576px) {
  .abbc-cookie-prompt--floating {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    max-width: none;
    width: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    flex-direction: column;
    text-align: center;
  }
}

.abbc-inbox {
  --abbc-subscribe-bg: var(--abbc-surface, #fff);
  --abbc-subscribe-border: var(--abbc-border, #e5e7eb);
  --abbc-subscribe-accent: var(--abbc-primary, #2563eb);
}

.abbc-inbox__headline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--abbc-heading, #1a1a2e);
  margin: 0 0 0.5rem 0;
}

.abbc-inbox__subhead {
  font-size: 0.9rem;
  color: var(--abbc-text-muted, #666);
  margin: 0 0 1rem 0;
}

.abbc-inbox__form {
  display: flex;
  gap: var(--abbc-space-sm);
  flex-wrap: wrap;
}

.abbc-inbox__input {
  flex: 1;
  min-width: 0;  
  padding: var(--abbc-space-sm) var(--abbc-space-md);
  border: 1px solid var(--abbc-subscribe-border);
  border-radius: var(--abbc-radius, 0.375rem);
  font-size: 1rem;
  background: var(--abbc-subscribe-bg);
  transition: border-color 380ms cubic-bezier(.5,-.3,.5,1), box-shadow 380ms cubic-bezier(.5,-.3,.5,1);
}

.abbc-inbox__input:focus {
  outline: 2px solid var(--abbc-subscribe-accent);
  outline-offset: -2px;
  border-color: var(--abbc-subscribe-accent);
}

.abbc-inbox__input::placeholder {
  color: var(--abbc-text-muted, #9ca3af);
}

.abbc-inbox__btn {
  padding: var(--abbc-space-sm) var(--abbc-space-lg);
  background: var(--abbc-subscribe-accent);
  color: var(--abbc-primary-text, #fff);
  border: none;
  border-radius: var(--abbc-radius, 0.375rem);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 380ms cubic-bezier(.5,-.3,.5,1);
  white-space: nowrap;
}

.abbc-inbox__btn:hover {
  background: var(--abbc-primary-hover, #1d4ed8);
  color: var(--abbc-primary-text, #fff);
  filter: brightness(1.1);
}

.abbc-inbox__privacy {
  font-size: 0.75rem;
  color: var(--abbc-text-muted, #9ca3af);
  margin-top: 0.75rem;
}

.abbc-inbox__privacy a {
  color: var(--abbc-accent-on-surface);
  text-decoration: none;
}

.abbc-inbox__privacy a:hover {
  text-decoration: underline;
}

.abbc-inbox__message {
  padding: var(--abbc-space-sm) var(--abbc-space-md);
  border-radius: var(--abbc-radius, 0.375rem);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.abbc-inbox__message--success {
  background: rgba(var(--abbc-success-rgb, 34,197,94), 0.1);
  color: var(--abbc-success, #10b981);
  border: 1px solid rgba(var(--abbc-success-rgb, 34,197,94), 0.2);
}

.abbc-inbox__message--error {
  background: rgba(var(--abbc-error-rgb, 239,68,68), 0.1);
  color: var(--abbc-error, #dc2626);
  border: 1px solid rgba(var(--abbc-error-rgb, 239,68,68), 0.2);
}

@media (max-width: 576px) {
  .abbc-inbox__form {
    flex-direction: column;
  }
  .abbc-inbox__input {
    min-width: 100%;
  }
  .abbc-inbox__btn {
    width: 100%;
  }
}

.abbc-inbox__content {
  margin-bottom: var(--abbc-space-md, 1rem);
}
.abbc-inbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--abbc-text-muted, #6b7280);
  line-height: 1;
  padding: 0.25rem;
}
.abbc-inbox__close:hover {
  color: var(--abbc-text);
  background: transparent;
}

.abbc-inbox {--abbc-subscribe-bg: repeating-linear-gradient(0deg,var(--abbc-surface, #fff) 0 40px,color-mix(in srgb, var(--abbc-primary, #2563eb) 2%, var(--abbc-surface, #fff)) 40px 80px);}

.abbc-inbox--banner {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--abbc-primary, #2563eb) 0%, var(--abbc-primary-dark, #1d4ed8) 100%);
  color: var(--abbc-text-inv, #fff);
  text-align: center;
  margin: 3rem 0;
}

.abbc-inbox--banner .abbc-inbox__headline {
  color: var(--abbc-text-inv, #fff);
  font-size: 1.5rem;
}

.abbc-inbox--banner .abbc-inbox__subhead {
  color: rgba(255,255,255,0.85);
}

.abbc-inbox--banner .abbc-inbox__form {
  justify-content: center;
  max-width: var(--abbc-figure-square);
  margin: 0 auto;
}

.abbc-inbox--banner .abbc-inbox__input {
  background: rgba(255,255,255,0.95);
}

.abbc-inbox--banner .abbc-inbox__btn {
  background: var(--abbc-surface, #fff);
  color: var(--abbc-primary, #2563eb);
}

.abbc-inbox--banner .abbc-inbox__btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--abbc-primary, #2563eb);
}

.abbc-inbox--banner .abbc-inbox__privacy {
  color: rgba(255,255,255,0.7);
}

.abbc-inbox--banner .abbc-inbox__privacy a {
  color: var(--abbc-text-inv, #fff);
}

@media (max-width: 576px) {
  .abbc-inbox--banner {
    padding: 2rem 1rem;
    margin: 2rem -1rem;
    border-radius: 0;
  }
}

.abbc-inbox--split {
  display: flex;
  align-items: center;
  gap: var(--abbc-space-xl);
}
.abbc-inbox--split .abbc-inbox__content {
  flex: 1;
}
.abbc-inbox--split .abbc-inbox__form-wrap {
  flex: 1;
}
@media (max-width: 800px) {
  .abbc-inbox--split {
    flex-direction: column;
    text-align: center;
  }
}

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

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

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

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

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

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

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

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

