/* =========================================================
   NEDERLANDSE TOP 10
   Zelfstandige stylesheet voor alle historische Top 10-pagina's
   ========================================================= */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* =========================================================
   HOOFDCONTAINER TOP 10
   ========================================================= */

.top10-container {
    width: 100%;
    max-width: 918px;
    margin: 0 auto;
    padding: 0;
}

/* =========================================================
   BANNER
   ========================================================= */

.top10-banner {
    display: block;
    width: 100%;
    max-width: 918px;
    height: auto;
    margin: 0 auto 20px auto;
}

.top10-banner img {
    display: block;
    width: 100%;
    max-width: 918px;
    height: auto;
    margin: 0 auto;
}

/* =========================================================
   TOP 10 CONTAINER
   ========================================================= */

.top3-container {
    width: 100%;
    max-width: 918px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

/* =========================================================
   TOP 10 ITEM
   ========================================================= */

.top3-item {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 100%;
    max-width: 918px;
    min-height: 86px;

    padding: 10px 14px;
    margin: 0;

    background-color: #E1EBFF;

    border: 1px solid #d5deee;
    border-radius: 6px;

    box-shadow: 0 2px 4px rgba(0,0,0,0.08);

    color: #333;
    text-decoration: none;

    cursor: pointer;

    transition:
        background-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

/* =========================================================
   HOVER
   DUIDELIJK ZICHTBAAR DAT DE ARTIEST KLIKBAAR IS
   ========================================================= */

.top3-item:hover {
    background-color: #c9dbff;

    color: #333;
    text-decoration: none;

    box-shadow: 0 4px 9px rgba(0,0,0,0.16);

    transform: translateY(-1px);
}

/* =========================================================
   POSITIE
   ========================================================= */

.top3-item .positie {
    flex: 0 0 58px;

    width: 58px;
    min-width: 58px;

    margin: 0 14px 0 0;
    padding: 0;

    color: #010A63;

    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;

    text-align: center;
}

/* =========================================================
   COVER
   ========================================================= */

.top3-item .cover {
    flex: 0 0 58px;

    width: 58px;
    min-width: 58px;

    height: 58px;
    min-height: 58px;

    margin: 0 14px 0 0;
    padding: 0;

    overflow: hidden;

    border-radius: 3px;

    background-color: #eee;
}

.top3-item .cover img {
    display: block;

    width: 58px;
    min-width: 58px;

    height: 58px;
    min-height: 58px;

    max-width: none;

    margin: 0;
    padding: 0;

    object-fit: cover;
}

/* =========================================================
   INFORMATIE
   ========================================================= */

.top3-item .info {
    flex: 1 1 auto;

    width: auto;
    min-width: 0;

    margin: 0;
    padding: 0;
}

/* =========================================================
   VW / DW / AW
   ========================================================= */

.top3-item .details {
    margin: 0 0 3px 0;
    padding: 0;

    color: #777;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
}

/* =========================================================
   ARTIEST
   ========================================================= */

.top3-item .info h2 {
    margin: 0;
    padding: 0;

    color: #003300;

    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

/* =========================================================
   TITEL
   ========================================================= */

.top3-item .info p {
    margin: 2px 0 0 0;
    padding: 0;

    color: #333;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
}

/* =========================================================
   LINK GEDRAG
   ========================================================= */

.top3-item,
.top3-item:visited,
.top3-item:hover,
.top3-item:active {
    text-decoration: none;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .top10-container {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    .top10-banner,
    .top10-banner img,
    .top3-container,
    .top3-item {
        max-width: 100%;
    }
}

/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 600px) {

    .top10-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .top10-banner {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .top3-container {
        width: 100%;
        max-width: 100%;
        gap: 6px;
    }

    .top3-item {
        width: 100%;
        max-width: 100%;

        min-height: 68px;

        padding: 7px 8px;
    }

    /* -----------------------------------------------------
       POSITIE MOBIEL
       ----------------------------------------------------- */

    .top3-item .positie {
        flex: 0 0 40px;

        width: 40px;
        min-width: 40px;

        margin-right: 7px;

        font-size: 25px;
    }

    /* -----------------------------------------------------
       COVER MOBIEL
       ----------------------------------------------------- */

    .top3-item .cover {
        flex: 0 0 48px;

        width: 48px;
        min-width: 48px;

        height: 48px;
        min-height: 48px;

        margin-right: 8px;
    }

    .top3-item .cover img {
        width: 48px;
        min-width: 48px;

        height: 48px;
        min-height: 48px;
    }

    /* -----------------------------------------------------
       TEKST MOBIEL
       ----------------------------------------------------- */

    .top3-item .details {
        font-size: 9px;
    }

    .top3-item .info h2 {
        font-size: 13px;
    }

    .top3-item .info p {
        font-size: 11px;
    }
}