/* SemanticRank structural upgrades: facts panels, captions, address and author metadata */
.semantic-facts,
.semantic-author-meta,
.semantic-note {
  margin: 28px auto;
  padding: 22px;
  border: 1px solid rgba(255, 204, 78, 0.28);
  border-radius: 18px;
  background: rgba(12, 22, 34, 0.72);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.semantic-facts h2,
.semantic-author-meta h2,
.semantic-note h2 {
  margin-top: 0;
}
.semantic-facts dl,
.semantic-author-meta dl,
.site-info address dl,
.site-contact dl {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 10px 18px;
  margin: 0;
}
.semantic-facts dt,
.semantic-author-meta dt,
.site-info address dt,
.site-contact dt {
  font-weight: 700;
  color: #ffd86b;
}
.semantic-facts dd,
.semantic-author-meta dd,
.site-info address dd,
.site-contact dd {
  margin: 0;
}
.semantic-facts p,
.semantic-note p {
  margin-bottom: 0;
}
table caption {
  caption-side: top;
  padding: 10px 12px;
  font-weight: 700;
  text-align: left;
  color: #ffd86b;
}
figure figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.9;
  text-align: center;
}
.site-info address,
.site-contact {
  font-style: normal;
}
@media (max-width: 640px) {
  .semantic-facts dl,
  .semantic-author-meta dl,
  .site-info address dl,
  .site-contact dl {
    grid-template-columns: 1fr;
  }
}
