/* =========================================================
   PARTICIPANTS
   ========================================================= */

.participants-page {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    padding-bottom: 40px;
}


/* =========================================================
   INTRO
   ========================================================= */

.participants-intro {
    padding: 48px 0 34px;
}

.participants-eyebrow {
    margin: 0 0 7px;

    color: var(--accent);

    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.participants-intro h1 {
    margin: 0 0 14px;

    color: var(--primary);

    font-size: clamp(38px, 8vw, 60px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.participants-intro p:last-child {
    margin: 0;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   SEARCH
   ========================================================= */

.participant-search {
    margin-bottom: 12px;
}

.participant-search label {
    display: block;

    margin-bottom: 7px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;
}

.participant-search input {
    width: 100%;

    padding: 14px 16px;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius-small);

    color: var(--text);

    font: inherit;
    font-size: 16px;

    outline: none;

    box-shadow: var(--shadow-small);

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.participant-search input::placeholder {
    color: var(--text-light);
}

.participant-search input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(23, 63, 95, 0.10);
}


/* =========================================================
   COUNT
   ========================================================= */

.participant-count {
    margin: 14px 2px 8px;

    color: var(--text-light);

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PARTICIPANT LIST
   ========================================================= */

.participant-list {
    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    overflow: hidden;

    box-shadow: var(--shadow-small);
}

.participant {
    padding: 14px 16px;

    border-bottom: 1px solid var(--border);

    color: var(--text);

    font-size: 15px;
    line-height: 1.4;
}

.participant:last-child {
    border-bottom: 0;
}


/* =========================================================
   EMPTY RESULT
   ========================================================= */

.participant-empty {
    padding: 24px 16px;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    color: var(--text-soft);

    font-size: 15px;

    text-align: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .participants-intro {
        padding: 38px 0 28px;
    }

    .participants-intro h1 {
        font-size: 43px;
    }

    .participants-intro p:last-child {
        font-size: 16px;
    }

    .participant {
        padding: 13px 15px;

        font-size: 15px;
    }
}

.sponsor-card img {
    display: block;
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 80px;
    object-fit: contain;
}