/* --- Kiosk Content Styling --- */

/* Center the text and make it white */
.mod_nwi_default {
    text-align: center;
    color: #ffffff;
}

/* The wrapper box: Dark, transparent, and centered */
.mod_nwi_default .mod_nwi_group {
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.7); /* Darker for better contrast */
    border-radius: 15px;
    box-sizing: border-box;
}

/* Make the Shorttext (the actual info) huge */
.mod_nwi_default .mod_nwi_shorttext,
.mod_nwi_default .mod_nwi_content_long {
    font-size: 3.5rem; /* Large enough to read from 10 feet away */
    line-height: 1.3;
    font-weight: 600;
    padding: 0;
}

/* Force paragraph text inside the news item to stay white */
.mod_nwi_default p {
    color: #ffffff !important;
    margin: 0;
}

/* --- Clean Up: Hide all unnecessary elements --- */
.mod_nwi_default .mod_nwi_metadata,
.mod_nwi_default .mod_nwi_spacer,
.mod_nwi_default .mod_nwi_tags,
.mod_nwi_default .mod_nwi_readmore,
.mod_nwi_default .mod_nwi_teaserpic,
.mod_nwi_default hr {
    display: none !important;
}

/* Ensure the text spans the full width of the dark box */
.mod_nwi_default .mod_nwi_teasertext {
    display: block;
    width: 100%;
}

/* Table Footer (Untouched structure, but making it white) */
.mod_nwi_table {
    width: 100%;
    margin-top: 2rem;
    color: #ffffff;
}