/* SHARED EMBLEM — the lamb / resume "seal" illustration block and its link,
 * identical across the portfolio (sidebar) and the blog (home box). The blog
 * restyles the box itself in blog.css. */

.seal-box {
  text-align: center;
  background-color: var(--paper-texture-subtle);
}

.seal-frame {
  border: 1px double var(--border-color);
  padding: 20px 10px;
}

.seal-glyph {
  font-family: var(--font-symbol);
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--burgundy);
}

.seal-glyph .seal-hiero {
  font-family: var(--font-hiero);
}

.seal-label {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.seal-motto {
  color: var(--text-subtle);
  font-style: italic;
  opacity: 0.8;
  margin-top: 4px;
}

.seal-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.seal-link:hover {
  transform: translateY(-2px);
}

.seal-link .seal-label {
  color: var(--text-color);
  transition: color 0.2s ease;
}

.seal-link:hover .seal-label,
.seal-link:hover .seal-glyph {
  color: var(--burgundy-hover);
}