.nettiradiot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.nettiradiot-item {
    background: #fff;
    border: 2px solid #d6111e;
    border-radius: 16px;
    padding: 1.5em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
}

.nettiradiot-thumbnail {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1em;
}

.nettiradiot-readmore {
    background: #d6111e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6em 1.4em;
    margin-top: 1em;
    cursor: pointer;
}

.nettiradiot-readmore:hover {
    background: #ddc76d;
    color: #000;
}

.nettiradiot-search {
    text-align: center;
    margin: 2em 0;
}

.nettiradiot-search input,
.nettiradiot-search button {
    padding: 0.6em 1em;
    margin: 0.2em;
    border-radius: 8px;
    border: 2px solid #d6111e;
}

.nettiradiot-counter {
    text-align: center;
    margin-top: 2em;
}

.nettiradiot-counter button {
    background: linear-gradient(135deg, #d6111e, #ddc76d);
    color: #fff;
    border: none;
    padding: 1em 2em;
    font-size: 1.2em;
    border-radius: 12px;
    cursor: default;
}

/* Modal Styles */
#nettiradiot-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.nettiradiot-modal-box {
    background: #fff;
    padding: 2em;
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

#nettiradiot-modal-close {
    position: absolute;
    top: 1em;
    right: 1em;
    background: none;
    border: none;
    font-size: 1.5em;
    font-weight: bold;
    color: #d6111e;
    cursor: pointer;
}
