/* ════════════════════════════════════════════
   Current Standings — [standings_listing] shortcode
   ════════════════════════════════════════════ */

.pmc-standings {
    background: #000;
    padding: clamp(48px, 5vw, 80px) clamp(24px, 4vw, 80px);
    max-width: 100%;
}

.pmc-standings__wrap {
    max-width: 1440px;
    margin: 0 auto;
}

/* ── Header ── */

.pmc-standings__header {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pmc-standings__title {
    font-family: 'Editor sNote', 'Editors Note', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: 0.56px;
    color: #fff;
    margin: 0 0 10px;
}

.pmc-standings__subtitle {
    font-family: Satoshi, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.08;
    color: #d9b132;
    margin: 0;
}

/* ── List ── */

.pmc-standings__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── Row ── */

.pmc-standings__row {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 201px;
    padding: 24px 34px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}

.pmc-standings__row:first-child {
    background: #070707;
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
 
}

/* ── Rank number ── */

.pmc-standings__rank {
    font-family: 'Editor sNote', 'Editors Note', serif;
    font-size: 76px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2.28px;
    color: #828282;
    width: 120px;
    flex-shrink: 0;
    position: relative;
    top: -5px;
}

.pmc-standings__row:first-child .pmc-standings__rank {
    color: #d9b132;
}

/* ── Team info ── */

.pmc-standings__info {
    flex: 1;
    padding-left: 33px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.pmc-standings__logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.pmc-standings__info-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pmc-standings__name {
    font-family: 'Editor sNote', 'Editors Note', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1.02px;
    color: #fff;
    margin: 0;
}

.pmc-standings__location {
    font-family: Satoshi, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #828282;
    margin: 0;
}

/* ── Points ── */

.pmc-standings__pts-wrap {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.pmc-standings__pts-number {
    font-family: 'Editor sNote', 'Editors Note', serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1.38px;
    color: #828282;
    margin: 0;
}

.pmc-standings__row:first-child .pmc-standings__pts-number {
    color: #d9b132;
}

.pmc-standings__pts-label {
    font-family: Satoshi, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #828282;
    margin: 0;
}

/* ── View More button ── */

.pmc-standings__footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.pmc-standings__btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border: 0.5px solid #fff;
    border-radius: 8px;
    font-family: Satoshi, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.36px;
    color: #fff;
    background: transparent;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.pmc-standings__btn-more:hover {
    opacity: 0.75;
    color: #fff;
}

/* ── No results ── */

.pmc-standings__empty {
    color: rgba(255, 255, 255, 0.5);
    font-family: Satoshi, sans-serif;
    font-size: 18px;
    text-align: center;
    padding: 60px 0;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .pmc-standings__rank {
        font-size: 48px;
        width: 72px;
    }

    .pmc-standings__name {
        font-size: 24px;
    }

    .pmc-standings__pts-number {
        font-size: 32px;
    }

    .pmc-standings__row:first-child {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 600px) {
    /* Stack header: title above round subtitle */
    .pmc-standings__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 24px;
    }

    /* Row: rank | logo (center) | points, then name + location below */
    .pmc-standings__row {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        row-gap: 12px;
        min-height: 0;
        padding: 24px 0;
    }

    .pmc-standings__rank {
        width: auto;
        grid-column: 1;
        grid-row: 1;
    }

    /* dissolve info wrapper so logo and text place on the grid directly */
    .pmc-standings__info {
        display: contents;
    }

    .pmc-standings__logo {
        width: 64px;
        height: 64px;
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .pmc-standings__pts-wrap {
        grid-column: 3;
        grid-row: 1;
    }

    .pmc-standings__info-text {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}
