/* REDWatch events calendar — matches the GeneratePress-child theme (accent #8B0000).
   Event days are marked with BOTH colour and a visible count (never colour alone). */

.rwe-calendar-wrap { font-size: 13px; }

.rwe-cal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #8B0000;
	color: #fff;
	padding: 6px 10px;
}
.rwe-cal-nav a { color: #fff; text-decoration: none; padding: 2px 8px; font-size: 16px; line-height: 1; }
.rwe-cal-nav a:hover, .rwe-cal-nav a:focus { background: rgba(255, 255, 255, 0.2); }
.rwe-cal-title { font-weight: bold; }

table.rwe-calendar { width: 100%; border-collapse: collapse; table-layout: fixed; }
table.rwe-calendar th {
	background: #333;
	color: #fff;
	font-weight: normal;
	padding: 4px 0;
	text-align: center;
	font-size: 11px;
}
table.rwe-calendar th abbr { text-decoration: none; border: 0; }
table.rwe-calendar td {
	border: 1px solid #e5e5e5;
	height: 40px;
	vertical-align: top;
	padding: 2px;
	text-align: right;
}
.rwe-cal-empty { background: #fafafa; }
.rwe-cal-num { display: block; padding: 1px 3px; }

/* today: outline (not colour alone) */
td.is-today { outline: 2px solid #8B0000; outline-offset: -2px; }

/* days with events: tinted + a linked count chip */
td.has-events { background: #f5e6e6; }
td.has-events a {
	display: block;
	text-decoration: none;
	color: #8B0000;
	height: 100%;
}
td.has-events a:hover, td.has-events a:focus { background: #8B0000; color: #fff; }
.rwe-cal-count {
	display: block;
	font-size: 10px;
	text-align: center;
	margin-top: 2px;
	font-weight: bold;
}

/* visible keyboard focus */
table.rwe-calendar a:focus-visible,
.rwe-cal-nav a:focus-visible { outline: 2px solid #ffcc00; outline-offset: 1px; }

.rwe-cal-all { margin: 6px 0 0; text-align: right; }
.rwe-cal-all a { color: #8B0000; font-weight: bold; text-decoration: none; }

/* mobile: keep cells tappable (>=24px targets) and readable */
@media (max-width: 480px) {
	table.rwe-calendar td { height: 44px; font-size: 12px; }
	.rwe-cal-count { font-size: 9px; }
}

/* Single-event details block (When / Where / Contact) */
.rwe-event-details {
	background: #f5e6e6;
	border-left: 4px solid #8B0000;
	padding: 10px 14px;
	margin: 0 0 16px;
	font-size: 14px;
}
.rwe-event-details dt { font-weight: bold; color: #8B0000; float: left; clear: left; width: 80px; }
.rwe-event-details dd { margin: 0 0 4px 90px; }
.rwe-ical-link { margin: -6px 0 16px; }
.rwe-ical-link a { color: #8B0000; font-size: 13px; }
