/* ThroneModal — announces a new ruler taking the throne. Inherits backdrop,
   container, close button, and title styling from modals.css. Pieces here
   are throne-specific so the modal can iterate visually without affecting
   other modals. */

.throne-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.throne-icon {
  font-size: 4rem;
  line-height: 1;
  margin: 0.25rem 0 0.25rem;
}

.throne-ascension {
  margin: 0;
  font-size: 1.05rem;
  color: var(--font-color-1);
  line-height: 1.5;
}

.throne-summary {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid #e6dcc4;
  border-bottom: 1px solid #e6dcc4;
  padding: 0.85rem 0;
}

.throne-traits {
  justify-content: center;
}

.throne-paragraph {
  margin: 0;
  color: #4a4035;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}

.throne-cta {
  align-self: stretch;
  margin-top: 0.25rem;
}
