.cd-en-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.cd-en-card { background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden; }
.cd-en-card__img { aspect-ratio: 16/10; overflow: hidden; background: #F0F6FF; }
.cd-en-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cd-en-card__body { padding: 20px 22px; }
.cd-en-card__meta { font-size: 12px; color: #F9A825; font-weight: 700; margin-bottom: 8px; }
.cd-en-card__title { font-size: 16.5px; font-weight: 800; color: #0B2545; margin: 0 0 8px; }
.cd-en-card__venue { font-size: 12.5px; color: #64748B; margin-bottom: 10px; }
.cd-en-card__desc { font-size: 13px; color: #64748B; line-height: 1.6; margin: 0 0 16px; }
.cd-en-empty { color: #64748B; font-size: 14px; }

.cd-en-register-btn {
	display: inline-flex !important; align-items: center; justify-content: center;
	background: #F9A825 !important; color: #0B2545 !important;
	font-weight: 700 !important; font-size: 13px !important; padding: 11px 22px !important;
	border-radius: 7px !important; border: none !important; outline: none !important;
	cursor: pointer; width: 100%;
}
.cd-en-register-btn:hover { background: #e08e00 !important; }

/* ---- Modal ---- */
.cd-en-modal { display: none; position: fixed; inset: 0; background: rgba(10,10,14,.75); z-index: 99997; align-items: center; justify-content: center; padding: 20px; }
.cd-en-modal.is-open { display: flex; }
.cd-en-modal__box { background: #fff; border-radius: 12px; padding: 32px 30px; max-width: 420px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.cd-en-modal__close {
	position: absolute !important; top: 14px !important; right: 14px !important;
	width: 30px !important; height: 30px !important; border-radius: 50% !important;
	background: #F0F6FF !important; border: none !important; outline: none !important;
	font-size: 18px; color: #64748B !important; cursor: pointer; display: flex !important; align-items: center; justify-content: center;
}
.cd-en-modal__title { font-size: 18px; font-weight: 800; color: #0B2545; margin: 0 0 6px; }
.cd-en-modal__event-name { font-size: 13.5px; color: #1565C0; font-weight: 700; margin: 0 0 16px; }
.cd-en-modal__sub { font-size: 12.5px; color: #64748B; margin-top: 10px; }
.cd-en-modal__or { text-align: center; font-size: 12px; color: #64748B; margin: 14px 0; text-transform: uppercase; letter-spacing: .05em; }

[data-cd-en-guest-form] label { display: block; font-size: 12.5px; font-weight: 700; color: #0B2545; margin-bottom: 14px; }
[data-cd-en-guest-form] input, [data-cd-en-guest-form] textarea {
	display: block; width: 100%; margin-top: 6px; padding: 10px 12px;
	border: 1px solid #E2E8F0; border-radius: 6px; font-size: 13.5px; font-family: inherit;
}

.cd-en-btn {
	display: inline-flex !important; align-items: center; justify-content: center; width: 100%;
	font-weight: 700 !important; font-size: 13.5px !important; padding: 12px 20px !important;
	border-radius: 7px !important; border: none !important; outline: none !important; cursor: pointer;
}
.cd-en-btn--gold { background: #F9A825 !important; color: #0B2545 !important; }
.cd-en-btn--gold:hover { background: #e08e00 !important; }
.cd-en-btn--dark { background: #0B2545 !important; color: #fff !important; }
.cd-en-btn--dark:hover { background: #163a68 !important; }

.cd-en-modal__msg { margin-top: 14px; font-size: 13px; font-weight: 700; text-align: center; }
.cd-en-modal__msg.is-success { color: #00897B; }
.cd-en-modal__msg.is-error { color: #C0392B; }

/* ---- Notifications feed ---- */
.cd-en-notif-list { display: flex; flex-direction: column; gap: 12px; }
.cd-en-notif { border: 1px solid #E2E8F0; border-radius: 10px; padding: 14px 16px; }
.cd-en-notif.is-unread { border-left: 3px solid #F9A825; background: #F0F6FF; }
.cd-en-notif__title { font-weight: 800; color: #0B2545; font-size: 14px; margin-bottom: 4px; }
.cd-en-notif__msg { font-size: 13px; color: #64748B; margin-bottom: 6px; }
.cd-en-notif__date { font-size: 11.5px; color: #94A3B8; }
.cd-en-notif__link { font-size: 12.5px; font-weight: 700; color: #1565C0; }
