.seal-catalog-intro {
    color: #b0b8c0;
    margin-bottom: 24px;
    font-size: 0.95em;
}

/* Category sections */
.seal-category {
    margin-bottom: 32px;
}

.seal-category:last-child {
    margin-bottom: 0;
}

.seal-category-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #d0d4da;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

/* Card grid */
.seal-catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual seal card */
.seal-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px;
}

.seal-card-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.seal-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal-badge-lg {
    width: 48px;
    height: 48px;
}

.seal-badge-placeholder {
    font-size: 2em;
    color: #555;
}

.seal-card-info {
    flex: 1;
    min-width: 0;
}

.seal-card-name {
    margin: 0 0 4px 0;
    font-size: 1.05em;
    font-weight: 600;
}

.seal-card-name a {
    color: #7fd3ff;
    text-decoration: none;
}

.seal-card-name a:hover {
    color: #e5f4ff;
    text-decoration: underline;
}

.seal-card-lore {
    margin: 0 0 6px 0;
    color: #999;
    font-size: 0.88em;
    font-style: italic;
    line-height: 1.45;
}

.seal-card-holders {
    font-size: 0.82em;
    color: #666;
}

/* Tier-band strip (veteran) */
.seal-card-bands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.seal-band-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.seal-band-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

/* Family-tinted band pills — subtle wash + border on micro-badge pills */
.seal-bands-supporter .seal-band-item {
    background: rgba(160, 40, 55, 0.10);
    border-color: rgba(180, 60, 75, 0.25);
}
.seal-bands-supporter .seal-band-item:hover {
    background: rgba(160, 40, 55, 0.15);
}
.seal-bands-veteran .seal-band-item {
    background: rgba(55, 80, 150, 0.10);
    border-color: rgba(150, 165, 195, 0.25);
}
.seal-bands-veteran .seal-band-item:hover {
    background: rgba(55, 80, 150, 0.15);
}
.seal-bands-champion .seal-band-item {
    background: rgba(190, 155, 50, 0.08);
    border-color: rgba(190, 155, 50, 0.22);
}
.seal-bands-champion .seal-band-item:hover {
    background: rgba(190, 155, 50, 0.13);
}

.seal-badge-sm {
    width: 24px;
    height: 24px;
}

.seal-band-label {
    font-size: 0.78em;
    color: #aaa;
    font-weight: 500;
}

/* Tier links (champion) */
.seal-card-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.seal-tier-link {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.8em;
    color: #aaa;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.seal-tier-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ccc;
    text-decoration: none;
}