/* TODO: Review box-shadow values - consider using design system shadow variables (--shadow-xs, --shadow-sm, etc.) */
/**
 * Crew Component Styles
 */

/* === CREW SECTION === */
.crew-section {
    margin-bottom: var(--spacing-lg);

.crew-display {
    background-color: var(--color-bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);

.crew-display:hover {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-sm);

.crew-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);

.crew-summary label {
    font-weight: bold;
    color: var(--color-text-primary);

.crew-value {
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: var(--color-info);
    font-family: var(--font-heading);

.crew-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);

.crew-type {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);

.crew-type label {
    font-weight: bold;
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);

.crew-type span:first-of-type {
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--color-info);
    font-family: var(--font-heading);

.crew-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-style: italic;

/* === SCARS SECTION === */
.scars-section {
    margin-bottom: var(--spacing-lg);

.scars-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);

}}}}}}}}}}}}}