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

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

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

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

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

.eafc-write-up-wrapper--sidebar .eafc-figure--float-left,
.eafc-write-up-wrapper--sidebar .eafc-tableau--float-left,
.eafc-write-up-wrapper--sidebar .eafc-figure--float-right,
.eafc-write-up-wrapper--sidebar .eafc-tableau--float-right {
  max-width: 50%;
}

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

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

.eafc-write-up__content h2,
.eafc-write-up__content h3,
.eafc-write-up__content .eafc-subheading {
  clear: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-pattern--cols-2 > .eafc-chip,
.eafc-pattern--cols-3 > .eafc-chip,
.eafc-pattern--cols-4 > .eafc-chip {
  max-width: 100%;
  width: 100%;
}

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

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

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

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

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

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

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

img.eafc-team-avatar.eafc-team-avatar {
  width: 220px;
  height: 220px;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--eafc-radius, 0.5rem);
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}
.eafc-team-grid .eafc-chip img {
  width: 220px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--eafc-radius, 0.5rem);
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}
.eafc-team-grid img.eafc-team-photo.eafc-team-photo,

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

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

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

.eafc-write-up__content p,
.eafc-write-up__content li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

body.eafc-shade-mode--gradient-down .eafc-coverblock--overlay::before,
body.eafc-shade-mode--gradient-down .eafc-coverblock--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.eafc-shade-mode--vignette .eafc-coverblock--overlay::before,
body.eafc-shade-mode--vignette .eafc-coverblock--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.eafc-shade-mode--diagonal .eafc-coverblock--overlay::before,
body.eafc-shade-mode--diagonal .eafc-coverblock--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%);
}

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

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

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

.eafc-edge-fx--vignette .eafc-coverblock--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;
}

.eafc-edge-fx--up .eafc-coverblock--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;
}

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

.eafc-edge-fade .eafc-coverblock {
  position: relative;
}

.eafc-assist {
  max-width: var(--eafc-inner-width);
  margin: 0 auto;
}
.eafc-assist-item {
  border-bottom: 1px solid var(--eafc-border);
}
.eafc-assist-item:first-child {
  border-top: 1px solid var(--eafc-border);
}
.eafc-assist-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--eafc-text);
  list-style: none;
}
.eafc-assist-item summary::-webkit-details-marker {
  display: none;
}
.eafc-assist-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--eafc-link-hover);
  margin-left: auto;
}
.eafc-assist-item[open] summary::after {
  content: '−';
}
.eafc-assist-item summary:hover {
  color: var(--eafc-link-hover);
  background: transparent;
}
.eafc-assist-answer {
  padding: 0 0 1.25rem 0;
  color: var(--eafc-text-muted);
  line-height: 1.7;
}
.eafc-assist-answer p {
  margin: 0 0 0.75rem 0;
}
.eafc-assist-answer p:last-child {
  margin-bottom: 0;
}

.eafc-assist--numbered {
  counter-reset: faq-counter;
}
.eafc-assist--numbered .eafc-assist-item {
  counter-increment: faq-counter;
}
.eafc-assist--numbered .eafc-assist-item summary::before {
  content: counter(faq-counter) ". ";
  color: var(--eafc-link-hover);
  font-weight: 700;
  margin-right: 0.5rem;
}

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

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

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

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

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

@media (max-width: 768px) {
  .eafc-footer-bar-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--eafc-footer-text, #fff);
  transition: all 450ms cubic-bezier(.68,-.6,.32,1.6) ease;
  text-decoration: none;
}

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

.eafc-social-link svg {
  width: 30px;
  height: 30px;
}

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

.eafc-correspondent-section {
  padding-bottom: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-correspondent-info--border {
  border: 2px solid var(--eafc-border, #e5e7eb);
  padding: 3rem;
  border-radius: var(--eafc-radius, 0.5rem);
}

.eafc-correspondent-info--accent-left {
  border-left: 2px solid var(--eafc-border, #e5e7eb);
  padding-left: 3rem;
}
.eafc-correspondent-info--accent-top {
  border-top: 2px solid var(--eafc-border, #e5e7eb);
  padding-top: 3rem;
}
.eafc-correspondent-info--accent-bottom {
  border-bottom: 2px solid var(--eafc-border, #e5e7eb);
  padding-bottom: 3rem;
}

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

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

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

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

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

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

.eafc-correspondent-profile--hero-banner .eafc-correspondent-body {
  padding-top: 0.75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-compact-articles li a {
  color: var(--eafc-text);
  text-decoration: underline;
  font-weight: 400;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-correspondent-articles-wrap {
  padding-top: 1.25rem;
  padding-bottom: 3.5rem;
}

.eafc-correspondent-articles-wrap h2 {
  margin-top: 0.75rem;
}

.eafc-correspondent-page-bottom {
  padding-bottom: 3.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-info-cards .eafc-chip {
  overflow: visible;
  min-height: 0;  
}

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

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

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

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

.eafc-info-cards .eafc-chip-body {
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-meta-wrapper--box.eafc-write-up__meta--hero,
.eafc-meta-wrapper--box.eafc-write-up__meta--hero time,
.eafc-meta-wrapper--box.eafc-write-up__meta--hero a,
.eafc-meta-wrapper--box.eafc-write-up__meta--hero .eafc-write-up__category--label,
.eafc-meta-wrapper--box.eafc-write-up__meta--hero .eafc-write-up__category--caps {
  color: var(--eafc-text, #1a1a1a);
}
.eafc-meta-wrapper--pill.eafc-write-up__meta--hero > *,
.eafc-meta-wrapper--pill.eafc-write-up__meta--hero .eafc-write-up__category--label,
.eafc-meta-wrapper--pill.eafc-write-up__meta--hero .eafc-write-up__category--caps {
  color: var(--eafc-pill-text, var(--eafc-text, #1a1a1a));
}

.eafc-feature-banner--contrast-backdrop-dark .eafc-meta-wrapper--box.eafc-write-up__meta--hero time,
.eafc-feature-banner--contrast-backdrop-dark .eafc-meta-wrapper--box.eafc-write-up__meta--hero a,
.eafc-feature-banner--contrast-backdrop-dark .eafc-meta-wrapper--box.eafc-write-up__meta--hero .eafc-write-up__category--label,
.eafc-feature-banner--contrast-backdrop-dark .eafc-meta-wrapper--box.eafc-write-up__meta--hero .eafc-write-up__category--caps {
  color: var(--eafc-text-inv, #fff);
}

.eafc-write-up__meta--above {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eafc-write-up__meta--above + .eafc-write-up__title {
  margin-top: 0;
}

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

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

.eafc-write-up__category {
  color: var(--eafc-link, var(--eafc-primary));
}
.eafc-write-up__category:visited {
  color: var(--eafc-link, var(--eafc-primary));
}
.eafc-write-up__category:hover {
  color: var(--eafc-link-hover, var(--eafc-primary));
  background: transparent;
}

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

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

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

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

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

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

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

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

.eafc-rate-float {
  position: fixed;
  bottom: 2rem;
  z-index: var(--eafc-z-floating); 
  background: var(--eafc-surface, #fff);
  padding: 0.75rem 1rem;
  border: 1px solid var(--eafc-border, #e5e7eb);
  border-radius: var(--eafc-radius, 0.5rem);
  box-shadow: 0 4px 20px rgba(0,0,0,var(--shadow-alpha-xl));
  transform: translateY(150%);
  opacity: 0;
  transition: transform 450ms cubic-bezier(.68,-.6,.32,1.6) ease, opacity 450ms cubic-bezier(.68,-.6,.32,1.6) ease;
  max-width: 280px;
  pointer-events: none; 
}

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-write-up-grid {
  display: grid;
  gap: var(--eafc-space-lg);
}

.eafc-write-up-grid--cards {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  justify-content: center;
}

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

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

.eafc-write-up-item--compact .eafc-write-up-item__image img {
  height: 140px;
}

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

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

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

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

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

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

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

.eafc-outline-box--minimal {
  background: transparent;
  border: none;
  padding: 0;
  border-top: 1px solid var(--eafc-border, #e5e7eb);
  border-bottom: 1px solid var(--eafc-border, #e5e7eb);
  padding: 1rem 0;
  border-radius: 0;
}
.eafc-outline-box--minimal .eafc-outline-box__title::before {
  content: '§';
}

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

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

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

.eafc-text-input,
.eafc-text-area,
.eafc-input-select {
  width: 100%;
  padding: var(--eafc-input-padding);
  border: 1px solid var(--eafc-border, #e5e7eb);
  border-radius: var(--eafc-radius, 0.375rem);
  background: var(--eafc-surface, #fff);
  color: var(--eafc-text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 450ms cubic-bezier(.68,-.6,.32,1.6), box-shadow 450ms cubic-bezier(.68,-.6,.32,1.6);
}

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

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

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

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

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

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

.eafc-message-form--standard {
  
}

.eafc-message-form--simple .eafc-form-field--name,
.eafc-message-form--simple .eafc-form-field--subject,
.eafc-message-form--simple .eafc-form-field--department {
  display: none;
}

.eafc-message-form--subject .eafc-form-field--department {
  display: none;
}

.eafc-message-form--department .eafc-form-field--subject {
  display: none;
}

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

.eafc-form-field--message {
  grid-column: 1 / -1;
}

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

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

.eafc-write-up-interactions .eafc-feedback-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  padding-left: 0;
  padding-right: 0;
}

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

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

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

.eafc-discuss-form--full {
  
}

.eafc-discuss-form--simple .eafc-form-field--email {
  display: none;
}

.eafc-discuss-form--minimal .eafc-form-field--name,
.eafc-discuss-form--minimal .eafc-form-field--email {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-rate-bar-fill,
.eafc-rating-bar-fill {
  height: 100%;
  background: var(--eafc-accent, #f59e0b);
  transition: width 450ms cubic-bezier(.68,-.6,.32,1.6) ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.eafc-feedback-section,.eafc-message-form-wrapper{max-width:731px;margin-left:auto;margin-right:auto}

.eafc-section-bg--dots{background-image:radial-gradient(circle,var(--eafc-border,#e5e7eb) 0.5px,transparent 0.5px)!important;background-size:26px 26px}
@media print{.eafc-section-bg--dots{background:none!important;background-image:none!important}}
.eafc-related-section-bg--accent{background:var(--eafc-surface,#f5f5f5)!important}
@media print{.eafc-related-section-bg--accent{background:none!important;background-image:none!important}}
.eafc-author-section-bg--accent{background:var(--eafc-surface,#f5f5f5)!important}
@media print{.eafc-author-section-bg--accent{background:none!important;background-image:none!important}}
.eafc-footer-section-bg--lines{background-image:repeating-linear-gradient(75deg,transparent,transparent 11px,var(--eafc-border,#e5e7eb) 11px,var(--eafc-border,#e5e7eb) 12px)!important}
@media print{.eafc-footer-section-bg--lines{background:none!important;background-image:none!important}}
.eafc-hero-section-bg--gradient{background:linear-gradient(120deg,color-mix(in srgb,var(--eafc-primary) 5%,transparent),color-mix(in srgb,var(--eafc-accent) 5%,transparent))!important}
@media print{.eafc-hero-section-bg--gradient{background:none!important;background-image:none!important}}
.eafc-cta-section-bg--dots{background-image:radial-gradient(circle,var(--eafc-border,#e5e7eb) 1.5px,transparent 1.5px)!important;background-size:16px 16px}
@media print{.eafc-cta-section-bg--dots{background:none!important;background-image:none!important}}

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

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

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

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

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

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

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

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

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

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

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

.eafc-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.15);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: inherit;
  opacity: 0.85;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.35rem 0.9rem;
}

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

.eafc-feedback--anim-fade {
  transition: opacity 450ms cubic-bezier(.68,-.6,.32,1.6);
}

.eafc-feedback--anim-slide {
  transition: opacity 450ms cubic-bezier(.68,-.6,.32,1.6), transform 450ms cubic-bezier(.68,-.6,.32,1.6);
}

.eafc-feedback--anim-scale {
  transition: opacity 450ms cubic-bezier(.68,-.6,.32,1.6), transform 450ms cubic-bezier(.68,-.6,.32,1.6);
}
.eafc-feedback--anim-scale:not(.eafc-feedback--visible) {
  transform: translate(-50%, -50%) scale(0.8);
}

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

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

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

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

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

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

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

.eafc-dead-end-btn {
  display: inline-block;
  margin-top: 1rem;
}

.eafc-dead-end-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.eafc-dead-end-btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  margin-left: 0.5rem;
}

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

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

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

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

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

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

.eafc-dead-end-category-link {
  display: inline-block;
  padding: var(--eafc-space-sm) var(--eafc-space-md);
  background: var(--eafc-bg-alt, #f3f4f6);
  color: var(--eafc-text);
  border-radius: var(--eafc-radius, 0.5rem);
  text-decoration: none;
  transition: background 450ms cubic-bezier(.68,-.6,.32,1.6);
}

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

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

.eafc-error-page {
  padding: 4rem 0;
}

.eafc-error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  opacity: 0.12;
  color: var(--eafc-primary);
  margin-bottom: -1.5rem;
  user-select: none;
}

.eafc-error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

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

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

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

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

.eafc-process__icon svg {
  display: block;
}

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

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

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

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

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

.eafc-process--minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  justify-content: center;
  gap: 0;
}

.eafc-process--minimal .eafc-process__step {
  padding: 1.25rem 1rem;
  border-bottom: 2px solid var(--eafc-primary);
  text-align: center;
}

.eafc-process--minimal .eafc-process__step + .eafc-process__step {
  border-left: 1px solid var(--eafc-border, #e5e7eb);
}

.eafc-process--minimal .eafc-process__title {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .eafc-process--minimal {
    grid-template-columns: 1fr;
  }
  .eafc-process--minimal .eafc-process__step + .eafc-process__step {
    border-left: none;
    border-top: 1px solid var(--eafc-border, #e5e7eb);
  }
}

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

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

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

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

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

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

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

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

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

.eafc-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: var(--eafc-z-overlay);
}
.eafc-menu-overlay.eafc-active {
  display: block;
}

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

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

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

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

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

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

.eafc-paginate--minimal {
  gap: 1.2rem;
}
.eafc-paginate--minimal .eafc-page {
  border: none;
  background: none;
  padding: 0;
  min-width: auto;
  height: auto;
}
.eafc-paginate--minimal .eafc-page.is-active {
  color: var(--eafc-link-hover);
  font-weight: 600;
}
.eafc-paginate--minimal .eafc-page:hover {
  text-decoration: underline;
  background: none;
  color: var(--eafc-text);
}

@media (max-width: 576px) {
  .eafc-paginate--minimal {
    gap: var(--eafc-space-md);
  }
  .eafc-paginate--minimal .eafc-page:not(.is-active):not(.eafc-page--prev):not(.eafc-page--next) {
    display: none;
  }
}

.eafc-footer--two-col .eafc-footer-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.eafc-footer--two-col .eafc-footer-bar-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
}

.eafc-footer--two-col a:not(.eafc-social-link) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

.eafc-footer--two-col a:hover {
  text-decoration: underline;
}

.eafc-footer--two-col .eafc-social-links {
  margin-top: 1rem;
}

@media (max-width: 576px) {
  .eafc-footer--two-col .eafc-footer-bar-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.eafc-chip:not(.eafc-chip--compact):has(> a):hover {
  box-shadow: inset 0 -3px 0 var(--eafc-accent);
}

.eafc-scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--eafc-accent);
  color: var(--eafc-accent-text, #fff);
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,var(--shadow-alpha-md));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, bottom 0.3s;
  z-index: var(--eafc-z-rating-popup);
  will-change: opacity, visibility, transform;
}

.eafc-scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.eafc-scroll-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .eafc-scroll-top {
    bottom: 1rem;
    left: 1rem;
  }
  .eafc-has-cookie-banner .eafc-scroll-top {
    bottom: calc(1rem + 80px);
  }
}

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

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

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

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

.eafc-cookie-bar--bar {
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--eafc-border-subtle);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,var(--shadow-alpha-xl));
  justify-content: center;
}
.eafc-cookie-bar--bar p {
  flex: 0 1 auto;
}
@media (max-width: 576px) {
  .eafc-cookie-bar--bar {
    flex-direction: column;
    text-align: center;
    padding: var(--eafc-space-md);
    gap: var(--eafc-space-sm, .5rem);
  }
  .eafc-cookie-bar--bar p {
    min-width: auto;
  }
}

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

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

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

.eafc-enroll__form {
  display: flex;
  gap: var(--eafc-space-sm);
  flex-wrap: wrap;
}

.eafc-enroll__input {
  flex: 1;
  min-width: 0;  
  padding: var(--eafc-space-sm) var(--eafc-space-md);
  border: 1px solid var(--eafc-subscribe-border);
  border-radius: var(--eafc-radius, 0.375rem);
  font-size: 1rem;
  background: var(--eafc-subscribe-bg);
  transition: border-color 450ms cubic-bezier(.68,-.6,.32,1.6), box-shadow 450ms cubic-bezier(.68,-.6,.32,1.6);
}

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

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

.eafc-enroll__btn {
  padding: var(--eafc-space-sm) var(--eafc-space-lg);
  background: var(--eafc-subscribe-accent);
  color: var(--eafc-primary-text, #fff);
  border: none;
  border-radius: var(--eafc-radius, 0.375rem);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 450ms cubic-bezier(.68,-.6,.32,1.6);
  white-space: nowrap;
}

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

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

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

.eafc-enroll__privacy a:hover {
  text-decoration: underline;
}

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

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

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

@media (max-width: 576px) {
  .eafc-enroll__form {
    flex-direction: column;
  }
  .eafc-enroll__input {
    min-width: 100%;
  }
  .eafc-enroll__btn {
    width: 100%;
  }
}

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

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

.eafc-enroll--banner .eafc-enroll__headline {
  color: var(--eafc-text-inv, #fff);
  font-size: 1.5rem;
}

.eafc-enroll--banner .eafc-enroll__subhead {
  color: rgba(255,255,255,0.85);
}

.eafc-enroll--banner .eafc-enroll__form {
  justify-content: center;
  max-width: var(--eafc-figure-square);
  margin: 0 auto;
}

.eafc-enroll--banner .eafc-enroll__input {
  background: rgba(255,255,255,0.95);
}

.eafc-enroll--banner .eafc-enroll__btn {
  background: var(--eafc-surface, #fff);
  color: var(--eafc-primary, #2563eb);
}

.eafc-enroll--banner .eafc-enroll__btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--eafc-primary, #2563eb);
}

.eafc-enroll--banner .eafc-enroll__privacy {
  color: rgba(255,255,255,0.7);
}

.eafc-enroll--banner .eafc-enroll__privacy a {
  color: var(--eafc-text-inv, #fff);
}

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

.eafc-enroll--centered {
  text-align: center;
}
.eafc-enroll--centered .eafc-enroll__form {
  justify-content: center;
}

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

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

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

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

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

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

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

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

