/* --- BASIS --- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
}

/* --- PAGINA BREEDTE --- */
.page-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- 2 KOLOMMEN LAYOUT --- */
.row {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-bottom: 35px;
}

/* Elke kolom is 50% */
.slot {
    width: 50%;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 15px;
}

/* --- FOTO'S --- */
.slot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* --- TEKST BLOK --- */
.info {
    margin-top: 12px;
    line-height: 1.5;
}

.tijd {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.titel {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
}

.dj {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

/* --- RESPONSIVE (mobiel) --- */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .slot {
        width: 100%;
    }
}