/* Wedstrijdposter — vaste 1600x800 layout, schaalbaar met CSS transform */

.wp-poster-frame {
    width: 100%;
    max-width: 1600px;
    aspect-ratio: 2 / 1;
    position: relative;
    overflow: hidden;
}

.wp-poster {
    width: 1600px;
    height: 800px;
    display: grid;
    grid-template-columns: 800px 800px;
    background: #ffffff;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    color: #111;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
}

.wp-poster *, .wp-poster *::before, .wp-poster *::after { box-sizing: border-box; }

/* LEFT SIDE */
.wp-poster-left {
    padding: 50px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 20px;
}

.wp-poster-date {
    width: 100%;
    line-height: 1.05;
}

.wp-poster-day {
    font-size: 54px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.wp-poster-datum {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.wp-poster-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    margin-top: 10px;
}

.wp-poster-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.wp-poster-placeholder {
    width: 200px;
    height: 200px;
    background: #f0f0f0;
    border: 2px dashed #bbb;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.wp-poster-dash {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

.wp-poster-tijd {
    background: #c9c9c9;
    color: #ffffff;
    font-size: 56px;
    font-weight: 900;
    padding: 8px 60px;
    margin-top: 10px;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.wp-poster-sponsor {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.wp-poster-sponsor-label {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.wp-poster-sponsor-logo {
    max-width: 360px;
    max-height: 120px;
    height: auto;
    object-fit: contain;
}

.wp-poster-sponsor-tekst {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #111;
    margin-top: 2px;
}

/* RIGHT SIDE */
.wp-poster-right {
    position: relative;
    overflow: hidden;
    width: 800px;
    height: 800px;
    line-height: 0;
    font-size: 0;
}

.wp-poster-sfeer {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 800px;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
}

.wp-poster-sfeer-placeholder {
    width: 800px;
    height: 800px;
    background: #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.wp-poster-uitgelicht {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #ffffff;
    font-family: 'Brush Script MT', 'Permanent Marker', 'Arial Black', cursive;
    font-size: 110px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.4);
    transform: rotate(-2deg);
    line-height: 1;
    -webkit-text-stroke: 1px rgba(0,0,0,0.2);
}

/* Admin preview wrapper */
#wp-poster-preview-wrap {
    max-width: 800px;
    margin: 15px 0;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
}
