* {
    box-sizing: border-box;
}


/* =========================
   UITGELICHTE KAARTEN
   ========================= */

.section-featured {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
}

.card-hitknaller,
.card-djtip {
    width: 300px;
    max-width: 100%;
}

.card-hitknaller img,
.card-djtip img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
}


/* =========================
   TOP 3
   ========================= */

.top3-container {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 30px;
}

.top3-item {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    background: #E1EBFF;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 18px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: all .30s ease;
    font-family: 'Montserrat', sans-serif;
}

.top3-item:hover {
    background: #010A63;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.top3-item:hover .positie,
.top3-item:hover .details,
.top3-item:hover h2,
.top3-item:hover p {
    color: #fff;
}

.positie {
    width: 70px;
    min-width: 70px;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #010A63;
    font-family: 'Montserrat', sans-serif;
}

.cover {
    width: 100px;
    min-width: 100px;
}

.cover img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.info {
    flex: 1;
    min-width: 0;
    font-family: 'Montserrat', sans-serif;
}

.details {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.info h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: bold;
    color: #010A63;
    font-family: 'Montserrat', sans-serif;
}

.info p {
    margin: 0;
    font-size: 18px;
    color: #222;
    overflow-wrap: anywhere;
    font-family: 'Montserrat', sans-serif;
}


/* =========================
   NIEUWS
   ========================= */

.news-container {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.news-main {
    position: relative;
    flex: 2 1 0;
    min-width: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

.news-main a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.news-main img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: .35s;
}

.news-main:hover img {
    transform: scale(1.03);
}

.news-side {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-small {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

.news-small a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-small img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.news-small:hover img {
    transform: scale(1.03);
}


/* =========================
   NIEUWS OVERLAY
   ========================= */

.news-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.82));
    font-family: 'Montserrat', sans-serif;
}

.news-overlay h2 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: bold;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.news-overlay p {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.news-overlay-small {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    background: linear-gradient(transparent, rgba(0,0,0,.82));
    font-family: 'Montserrat', sans-serif;
}


/* =========================
   AFBEELDING HOVER
   ========================= */

a img:not([alt*="banner"]):not([alt*="Archief"]):not([alt*="button"]):not([alt*="transparant"]) {
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    opacity: 1;
    transform: scale(1);
}

a img:not([alt*="banner"]):not([alt*="Archief"]):not([alt*="button"]):not([alt*="transparant"]):hover {
    opacity: .7;
    transform: scale(1.03);
}


/* =========================
   NIEUWE MUZIEK
   ========================= */

.nieuwe-muziek {
    width: 100%;
    max-width: 1280px;
    margin: 20px auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 20px;
}

.muziek-item {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
}

.muziek-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.muziek-item h3 {
    margin: 10px 0 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.muziek-item p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.muziek-item span {
    display: block;
    margin-top: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    overflow-wrap: anywhere;
}


/* =========================
   RESPONSIVE - 1100px
   ========================= */

@media (max-width: 1100px) {

    .section-featured,
    .news-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .top3-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top3-item {
        gap: 20px;
    }

    .news-overlay h2 {
        font-size: 30px;
    }

    .news-overlay p {
        font-size: 18px;
    }

    .nieuwe-muziek {
        padding-left: 15px;
        padding-right: 15px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* =========================
   RESPONSIVE - 800px
   ========================= */

@media (max-width: 800px) {

    .section-featured {
        gap: 15px;
    }

    .card-hitknaller,
    .card-djtip {
        width: calc(50% - 8px);
    }

    .top3-container {
        padding: 0 15px;
        margin: 30px auto;
    }

    .top3-item {
        gap: 15px;
        padding: 12px;
    }

    .positie {
        width: 55px;
        min-width: 55px;
        font-size: 38px;
    }

    .cover {
        width: 80px;
        min-width: 80px;
    }

    .cover img {
        width: 65px;
        height: 65px;
    }

    .info h2 {
        font-size: 18px;
    }

    .info p {
        font-size: 16px;
    }

    .news-container {
        flex-direction: column;
        padding: 0 15px;
        gap: 15px;
    }

    .news-main {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .news-side {
        width: 100%;
        flex-direction: row;
        gap: 15px;
    }

    .news-small {
        width: 50%;
        flex: 1 1 0;
        aspect-ratio: 16 / 9;
    }

    .news-overlay {
        padding: 18px;
    }

    .news-overlay h2 {
        font-size: 26px;
    }

    .news-overlay p {
        font-size: 17px;
    }

    .nieuwe-muziek {
        padding: 0 15px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 15px;
    }
}


/* =========================
   RESPONSIVE - 600px
   ========================= */

@media (max-width: 600px) {

    .section-featured {
        width: 100%;
        padding: 0 10px;
        gap: 15px;
    }

    .card-hitknaller,
    .card-djtip {
        width: 100%;
        max-width: 300px;
    }

    .card-hitknaller img,
    .card-djtip img {
        width: 100%;
        max-width: 300px;
    }

    .top3-container {
        width: 100%;
        padding: 0 10px;
        margin: 25px auto;
    }

    .top3-item {
        gap: 10px;
        padding: 10px;
    }

    .positie {
        width: 45px;
        min-width: 45px;
        font-size: 30px;
    }

    .cover {
        width: 65px;
        min-width: 65px;
    }

    .cover img {
        width: 55px;
        height: 55px;
    }

    .details {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .info h2 {
        font-size: 16px;
        line-height: 1.2;
    }

    .info p {
        font-size: 14px;
        line-height: 1.25;
    }

    .news-container {
        width: 100%;
        padding: 0 10px;
        margin: 25px auto;
        gap: 12px;
    }

    .news-main {
        aspect-ratio: 16 / 9;
        border-radius: 8px;
    }

    .news-side {
        flex-direction: column;
        gap: 12px;
    }

    .news-small {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 8px;
    }

    .news-overlay {
        padding: 12px;
    }

    .news-overlay h2 {
        font-size: 21px;
        margin-bottom: 5px;
    }

    .news-overlay p {
        font-size: 15px;
    }

    .news-overlay-small {
        padding: 10px;
        font-size: 14px;
    }

    .nieuwe-muziek {
        width: 100%;
        padding: 0 10px;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .muziek-item {
        width: 100%;
    }

    .muziek-item img {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================
   RESPONSIVE - 380px
   ========================= */

@media (max-width: 380px) {

    .top3-item {
        gap: 8px;
    }

    .positie {
        width: 38px;
        min-width: 38px;
        font-size: 26px;
    }

    .cover {
        width: 55px;
        min-width: 55px;
    }

    .cover img {
        width: 50px;
        height: 50px;
    }

    .info h2 {
        font-size: 15px;
    }

    .info p {
        font-size: 13px;
    }

    .news-overlay h2 {
        font-size: 18px;
    }

    .news-overlay p {
        font-size: 14px;
    }
}


/* =========================
   ALGEMEEN
   ========================= */

a {
    text-decoration: none;
}