/* ============================================================
   AWARDS — additional components specific to the awards platform,
   built from the same tokens/patterns as style.css. Append after
   style.css and style-additions.css.
   ============================================================ */

/* Category tiles — reuses the ticket-stub silhouette from .app-card */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; margin: 20px 0; }

.category-tile {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 18px 18px 18px 26px;
    text-decoration: none;
    color: var(--ink);
    display: block;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.category-tile::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 12px;
    background-image: radial-gradient(circle at 0 10px, var(--bg) 4.5px, transparent 5px);
    background-size: 100% 18px;
    background-repeat: repeat-y;
}

.category-tile:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 rgba(59,43,28,0.15);
}

.category-tile .tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--green);
    font-weight: 700;
}

.category-tile h3 { font-family: 'Anton', sans-serif; font-size: 17px; color: var(--green-dark); margin: 6px 0 4px; letter-spacing: 0.3px; }
.category-tile .fee { font-size: 12px; color: var(--ink-soft); font-family: 'Space Mono', monospace; }

/* Nominee tiles */
.nominee-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; margin: 20px 0; }

.nominee-tile {
    background: var(--paper);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    display: block;
    box-shadow: 0 4px 0 rgba(59,43,28,0.05), 0 8px 14px rgba(59,43,28,0.1);
    transition: transform 0.1s ease;
}
.nominee-tile:hover { transform: translate(-1px, -1px); }

.nominee-tile img, .nominee-tile .ph {
    width: 100%; height: 150px; object-fit: cover;
    background: var(--paper-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--line);
    border-bottom: 1px dashed var(--line);
}

.nominee-tile .info { padding: 12px 14px; }
.nominee-tile .name { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.nominee-tile .votes { font-size: 11px; color: var(--ink-soft); margin-top: 3px; font-family: 'Space Mono', monospace; text-transform: uppercase; }

/* Static account display — payment / voting instructions */
.acct-box {
    background: var(--paper-dim);
    border: 2px dashed var(--rail);
    border-radius: 2px;
    padding: 20px;
    text-align: center;
    margin: 18px 0;
    position: relative;
}

.acct-box::after {
    content: "PAYMENT ACCOUNT";
    position: absolute;
    top: 8px; right: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 8.5px;
    letter-spacing: 1.5px;
    color: var(--line);
}

.acct-number {
    font-family: 'Space Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-dark);
}
.acct-bank, .acct-name { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; font-family: 'Space Mono', monospace; }

/* Vote / stat display, echoing .stat-pill's rotated-pill motif */
.vote-count-display { text-align: center; margin: 18px 0; }
.vote-count-display .num { font-family: 'Anton', sans-serif; font-size: 44px; color: var(--green-dark); line-height: 1; }
.vote-count-display .lbl { font-size: 10.5px; color: var(--ink-soft); font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* Status pills — nominee application status on the dashboard */
.status-pill {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: inline-block;
    border: 1.5px solid;
}
.status-approved { background: #EAF0E6; color: var(--green-dark); border-color: var(--green); }
.status-pending_review, .status-pending_payment { background: #F6EBD2; color: #8a6512; border-color: var(--pin); }
.status-rejected { background: #F6E7DE; color: #7A2A21; border-color: var(--stamp); }
