.a24-fca-ticker {
  --a24-fca-green: #006600;
  --a24-fca-text: #111;
  --a24-fca-muted: #6b7280;
  --a24-fca-border: #dfe3e6;
  --a24-fca-soft: #f5f7f5;
  color: var(--a24-fca-text);
  font: inherit;
  width: 100%;
}

.a24-fca-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--a24-fca-green);
}

.a24-fca-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--a24-fca-green);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.a24-fca-head h2 {
  margin: 0;
  font: inherit;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.a24-fca-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--a24-fca-muted);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

.a24-fca-status i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--a24-fca-green);
}

.a24-fca-list {
  width: 100%;
}

.a24-fca-item {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 24px;
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid var(--a24-fca-border);
}

.a24-fca-when {
  position: relative;
  padding-right: 20px;
  text-align: right;
  color: var(--a24-fca-muted);
  font-size: .82rem;
  line-height: 1.3;
}

.a24-fca-when::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--a24-fca-green);
  box-shadow: 0 0 0 1px var(--a24-fca-green);
  z-index: 2;
}

.a24-fca-item:not(:last-child) .a24-fca-when::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 15px;
  bottom: -25px;
  width: 1px;
  background: var(--a24-fca-border);
}

.a24-fca-when time {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.a24-fca-when strong {
  color: var(--a24-fca-text);
  font-size: .86rem;
  font-weight: 800;
}

.a24-fca-when span {
  font-size: .78rem;
}

.a24-fca-story {
  min-width: 0;
}

.a24-fca-category {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--a24-fca-green);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.a24-fca-story h3 {
  margin: 0 0 9px;
  font: inherit;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 900;
  line-height: 1.22;
}

.a24-fca-story p {
  margin: 0;
  font: inherit;
  font-size: 1rem;
  line-height: 1.62;
  white-space: pre-line;
}

.a24-fca-loading,
.a24-fca-error,
.a24-fca-empty {
  padding: 16px 0;
  color: var(--a24-fca-muted);
}

@media (max-width: 700px) {
  .a24-fca-head {
    align-items: flex-start;
  }

  .a24-fca-status {
    font-size: .7rem;
  }

  .a24-fca-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0 20px 22px;
  }

  .a24-fca-when {
    padding: 0;
    text-align: left;
  }

  .a24-fca-when time {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .a24-fca-when::after {
    left: -22px;
    right: auto;
    top: 3px;
  }

  .a24-fca-item:not(:last-child) .a24-fca-when::before {
    left: -17px;
    right: auto;
    top: 14px;
    bottom: -112px;
  }

  .a24-fca-category {
    margin-top: 1px;
  }
}
