/* Clemson football availability board. COLOR2 is not used for dark-mode text. */

.fa-page {
    max-width: 960px;
    margin: 0 auto 36px;
    padding: 0 12px;
    color: #172028;
}
.fa-hero,
.fa-unavailable,
.fa-empty {
    padding: 28px clamp(16px, 4vw, 36px);
    border-radius: 10px;
    background: #fff;
    border: 1px solid #d8e0e4;
}
.fa-hero {
    background: linear-gradient(125deg, #3a1f5c 0%, #2a1644 100%);
    color: #fff;
    border: 0;
}
.fa-hero__kicker {
    margin: 0;
    color: #f56600;
}
.fa-hero h1,
.fa-unavailable h1,
.fa-empty h1 {
    margin: 6px 0 8px;
    font: 400 clamp(26px, 4vw, 40px)/1.15 Georgia, serif;
    color: #fff;
}
.fa-unavailable h1,
.fa-empty h1 {
    color: #172028;
}
.fa-hero__meta {
    margin: 0 0 10px;
    color: rgba(255,255,255,.9);
}
.fa-hero__disclaimer {
    margin: 0;
    color: rgba(255,255,255,.85);
    line-height: 1.45;
}
.fa-unavailable p,
.fa-empty p {
    margin: 0;
    color: #61717c;
}
.fa-group {
    margin: 22px 0 0;
}
.fa-group__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font: 700 16px/1.3 Arial, sans-serif;
    color: #172028;
}
.fa-pip {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #78909c;
}
.fa-pip--out { background: #c62828; }
.fa-pip--out-1st-half { background: #e65100; }
.fa-pip--doubtful { background: #ef6c00; }
.fa-pip--questionable { background: #f9a825; }
.fa-pip--probable { background: #7cb342; }
.fa-pip--game-time-decision { background: #546e7a; }
.fa-pip--exempt { background: #78909c; }
.fa-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fa-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #d8e0e4;
    font-size: 13px;
    color: #172028;
}
.fa-chip a,
.fa-chip .utip a {
    color: #172028;
    text-decoration: none;
}
.fa-chip a:hover,
.fa-chip .utip a:hover {
    color: #f56600;
}
.fa-chip .logo-area,
.fa-chip .utip {
    display: inline;
    width: auto;
    min-width: 0;
    background: transparent;
}
.fa-chip__pos {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #61717c;
}
.fa-chip__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee 50% 0%/cover no-repeat;
    flex-shrink: 0;
}
.fa-chip__avatar--initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3a1f5c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}
.fa-attr {
    margin: 24px 0 0;
    font-size: 13px;
    color: #61717c;
}
.fa-attr a {
    color: #f56600;
}

html.dark-mode .fa-page {
    color: var(--dm-text-primary, #f1f5f9);
}
html.dark-mode .fa-unavailable,
html.dark-mode .fa-empty {
    background: var(--dm-bg-elevated, #1e1e1e);
    border-color: #444;
}
html.dark-mode .fa-unavailable h1,
html.dark-mode .fa-empty h1,
html.dark-mode .fa-group__title {
    color: var(--dm-text-primary, #f1f5f9);
}
html.dark-mode .fa-unavailable p,
html.dark-mode .fa-empty p,
html.dark-mode .fa-attr {
    color: var(--dm-text-secondary, #bbb);
}
html.dark-mode .fa-chip {
    background: var(--dm-bg-elevated, #1e1e1e);
    border-color: #555;
    color: var(--dm-text-primary, #f1f5f9);
}
html.dark-mode .fa-chip a,
html.dark-mode .fa-chip .utip a {
    color: var(--dm-text-primary, #f1f5f9);
}
html.dark-mode .fa-chip a:hover,
html.dark-mode .fa-chip .utip a:hover {
    color: #f56600;
}
html.dark-mode .fa-chip__pos {
    color: var(--dm-text-muted, #a0a0a0);
}
