/* ===== GŁÓWNA LISTA ===== */
.ck-events-list .ck-event-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

/* Miniatura */
.ck-event-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Data */
.ck-event-date {
    font-size: 14px;
    color: #666 !important;
    margin-bottom: 4px;
}

/* Tytuł */
.ck-event-title {
    margin: 5px 0;
    font-size: 16px;
}

.ck-event-title a {
    color: #111 !important;
    text-decoration: none;
}

.ck-event-title a:hover {
    text-decoration: underline;
}

/* ===== KATEGORIA ===== */
.ck-event-category {
    font-size: 13px;
    font-weight: 600;
    color: #444 !important;
    margin-top: 4px;
}

/* ===== CENA ===== */
.ck-event-price {
    margin-top: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #000 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Darmowe */
.ck-event-price.ck-free {
    color: #1a7f37 !important;
}

.ck-ticket-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* ===== BUTTON ===== */

.ck-events-button-wrapper {
    margin-top: 15px;
    text-align: left;
    color: #fff!important;
}

.ck-events-button {
    display: inline-block;
    padding: 10px 18px;
    background-color: #111;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.ck-events-button:hover {
    background-color: #333;
    color: #fff !important;
}