/* =========================================================
   TEKMOVALNI CENTER – STATISTIKA TURNIRJA
   ========================================================= */

.tc-statistika {
    width: 100%;
    box-sizing: border-box;

    margin: 10px 0 20px;
    padding: 0 18px;

    color: #fff;
}


/* =========================================================
   SKUPNA VRSTICA
   ========================================================= */

.tc-stat-vrstica {
    display: flex;
    align-items: stretch;

    width: 100%;
    box-sizing: border-box;

    background: #071525;

    border: 1px solid #244a70;
    border-radius: 14px;

    overflow: hidden;
}


/* razmak med 1. in 2. vrstico */

.tc-stat-vrstica + .tc-stat-vrstica {
    margin-top: 10px;
}


/* =========================================================
   OSNOVNI BLOKI
   ========================================================= */

.tc-stat-blok {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 16px 24px;

    text-align: center;
}


/* =========================================================
   1. VRSTICA
   ========================================================= */

.tc-stat-vrstica-1 {
    min-height: 145px;
}


/* SKUPAJ NASTOPI */

.tc-stat-skupaj {
    width: 25%;

    border-right: 1px solid rgba(255, 255, 255, .16);
}


/* KATEGORIJE */

.tc-stat-kategorije {
    width: 75%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 12px 20px;
}


.tc-stat-kategorije-naslov {
    margin-bottom: 14px;

    text-align: center;

    font-size: 14px;
    font-weight: 600;

    color: #cbd5e1;
}


.tc-stat-kategorije-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.tc-stat-kategorija {
    text-align: center;

    padding: 4px 15px;

    border-right: 1px solid rgba(255, 255, 255, .16);
}


.tc-stat-kategorija:last-child {
    border-right: 0;
}


/* =========================================================
   TEKSTI
   ========================================================= */

.tc-stat-naslov {
    margin-bottom: 8px;

    font-size: 16px;
    font-weight: 800;
}


.tc-stat-vrednost {
    display: flex;
    align-items: baseline;
    justify-content: center;

    gap: 9px;

    font-size: 25px;
}


.tc-stat-vrednost strong {
    font-size: 32px;
    color: #38bdf8;
}


.tc-stat-opis {
    margin-top: 6px;

    font-size: 12px;
    color: #94a3b8;
}


/* =========================================================
   KATEGORIJE
   ========================================================= */

.tc-stat-kat-ime {
    margin-bottom: 8px;

    font-size: 20px;
    font-weight: 800;
}


.tc-stat-kat-vrednost {
    font-size: 21px;
}


.tc-stat-kat-vrednost strong {
    font-size: 24px;
}


/* MT */

.tc-stat-mt .tc-stat-kat-ime,
.tc-stat-mt strong {
    color: #38bdf8;
}


/* ŽT */

.tc-stat-zt .tc-stat-kat-ime,
.tc-stat-zt strong {
    color: #f472b6;
}


/* MR */

.tc-stat-mr .tc-stat-kat-ime,
.tc-stat-mr strong {
    color: #facc15;
}


/* ŽR */

.tc-stat-zr .tc-stat-kat-ime,
.tc-stat-zr strong {
    color: #f472b6;
}


/* =========================================================
   2. VRSTICA
   ========================================================= */

.tc-stat-vrstica-2 {
    min-height: 145px;
}


/* POVPREČJE */

.tc-stat-povprecje {
    width: 20%;

    border-right: 1px solid rgba(255, 255, 255, .16);
}


.tc-stat-povprecje .tc-stat-vrednost strong {
    color: #a855f7;
}


/* =========================================================
   STEZE
   ========================================================= */

.tc-stat-steze {
    width: 40%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 14px 20px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, .16);
}


.tc-stat-steze-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 8px;
}


.tc-stat-steza {
    padding: 0 15px;
}


.tc-stat-steza:first-child {
    border-right: 1px solid rgba(255, 255, 255, .16);
}


.tc-stat-steza-naslov {
    margin-bottom: 5px;

    font-size: 13px;
    font-weight: 800;
}


.tc-stat-steza-ime {
    margin-bottom: 3px;

    font-size: 15px;
}


.tc-stat-steza-vrednost {
    font-size: 25px;
    font-weight: 800;
}


.tc-stat-steza-naj .tc-stat-steza-naslov,
.tc-stat-steza-naj .tc-stat-steza-vrednost {
    color: #4ade80;
}


.tc-stat-steza-najslabsa .tc-stat-steza-naslov,
.tc-stat-steza-najslabsa .tc-stat-steza-vrednost {
    color: #ef4444;
}


/* =========================================================
   DEVETKE + RIBICE
   ========================================================= */

.tc-stat-devetke,
.tc-stat-ribice {
    width: 20%;

    flex-direction: row;

    gap: 15px;
}


.tc-stat-devetke {
    border-right: 1px solid rgba(255, 255, 255, .16);
}


.tc-stat-krog {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    border: 2px solid currentColor;
    border-radius: 50%;

    font-size: 26px;
    font-weight: 900;
}


.tc-stat-devetke .tc-stat-krog,
.tc-stat-devetke .tc-stat-vrednost strong {
    color: #4ade80;
}


.tc-stat-ribice .tc-stat-krog,
.tc-stat-ribice .tc-stat-vrednost strong {
    color: #ef4444;
}


/* =========================================================
   MOBILNO
   ========================================================= */

@media (max-width: 800px) {

    .tc-statistika {
        padding: 0 8px;
    }

    .tc-stat-vrstica {
        flex-direction: column;
    }

    .tc-stat-skupaj,
    .tc-stat-kategorije,
    .tc-stat-povprecje,
    .tc-stat-steze,
    .tc-stat-devetke,
    .tc-stat-ribice {
        width: 100%;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .tc-stat-kategorije-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tc-stat-kategorija {
        margin: 5px 0;
    }

}