/*
 * Events styles, reconciled with the MRN design system on 2026-08-09.
 *
 * Events was built before DESIGN.md existed and grew its own dialect: 800 and
 * 900 weights, a 118px hero, -0.055em tracking, a radial gradient under a
 * dot-grid mask, and its own copies of colours the theme already owns. Some of
 * that was right and the house adopted it - the 22px frame, the warm paper
 * ground, the large low-opacity shadow, the pill button. The loud typography
 * and the decoration were not, and they cost credibility with exactly the
 * institutional readers these pages are for.
 *
 * What changed here:
 *   - tokens now point at the theme's, so there is one source of truth
 *   - headings sit on the documented type ramp at weight 400
 *   - labels are 600, never 800; tracking is 0.06em, never 0.13em
 *   - the gradient-and-dot-grid hero becomes the centred section header the
 *     catalogue and authors pages already use
 *   - buttons are the house button
 *
 * What deliberately did not change: the card grid, the archive's behaviour and
 * every class name the templates depend on.
 *
 * 2026-08-09, second pass. The calendar did change, because its size was never
 * the real problem: a 1220x662px month grid led a page whose visitor arrives
 * asking "is there anything coming up?", and answered with 35 cells and one
 * chip. The next event now leads, and the calendar becomes a month index -
 * plain type on the page's white, no ink header band, no card, marked days
 * carrying a paper chip and an orange dot, with the month's events named in
 * words beside the grid so no date depends on a 7px dot to be read. The dot
 * treatment used to be the sub-760px fallback; it is now the only treatment,
 * which is one behaviour instead of two.
 */

:root {
	--mrn-events-orange: var(--wp--preset--color--primary, #ea6801);
	--mrn-events-orange-dark: var(--wp--preset--color--primary-dark, #c25601);
	--mrn-events-ink: var(--wp--preset--color--ink, #24201c);
	--mrn-events-paper: var(--wp--preset--color--surface, #f7f1e8);
	--mrn-events-body: var(--wp--preset--color--body, #767676);
	--mrn-events-line: var(--wp--custom--rule, rgba(0, 0, 0, 0.106));
	--mrn-events-radius: var(--wp--custom--radius--card, 22px);
	--mrn-events-shadow: var(--wp--custom--shadow--lift, 0 18px 55px rgba(36, 32, 28, 0.11));
	--mrn-events-shadow-rest: var(--wp--custom--shadow--card, 0 14px 40px rgba(36, 32, 28, 0.06));
}

.mrn-events-page,
.mrn-event-single {
	color: var(--mrn-events-ink);
	font-family: Rubik, Arial, sans-serif;
}

.mrn-events-container {
	width: min(var(--wp--custom--layout--shell, 1222px), calc(100% - 30px));
	margin-inline: auto;
}

/* ------------------------------------------------------------ page header */

/*
 * Plain ground, centred, matching .mrn-catalog__header and .mrn-authors-intro.
 * The former treatment layered a radial gradient, a diagonal gradient and a
 * masked dot grid - three decorative systems on a page whose job is to tell a
 * teacher when and where something happens. Events has no route photograph, and
 * the theme's page hero is deliberately used only where a real asset exists, so
 * this page gets the quiet header rather than an invented banner.
 */
.mrn-events-hero {
	padding-block: 40px 10px;
	text-align: center;
}

.mrn-events-kicker {
	margin: 0 0 6px;
	color: var(--mrn-events-orange);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mrn-events-hero h1 {
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.25;
	text-transform: uppercase;
}

.mrn-events-hero p:not(.mrn-events-kicker) {
	max-width: 70ch;
	margin: 10px auto 0;
	color: var(--mrn-events-body);
	font-size: 14px;
	line-height: 1.7;
}

/*
 * The header used to carry two anchor buttons to sections further down. The
 * next event now sits immediately below it, so the buttons pointed at content
 * already on screen.
 */

/* ------------------------------------------------------------------ icons */

/*
 * One drawn set, 1.5px stroke, inheriting colour and optically aligned to the
 * first line of the text it labels. See mrn_events_icon().
 */
.mrn-icon {
	flex: none;
	color: var(--mrn-events-orange);
}

/* ---------------------------------------------------------------- buttons */

.mrn-events-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--wp--custom--control--height, 46px);
	padding: var(--wp--custom--control--padding, 12px 24px);
	border: 1px solid var(--mrn-events-orange);
	border-radius: var(--wp--custom--radius--button, 999px);
	background: var(--mrn-events-orange);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: var(--wp--custom--control--tracking, 0.045em);
	line-height: 1.4;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease,
		transform 0.25s ease;
}

/*
 * The house hover: a small lift and a darker fill. The old one added an orange
 * glow, which is the only coloured halo anywhere on the site.
 */
.mrn-events-button:hover,
.mrn-events-button:focus-visible {
	background: var(--mrn-events-orange-dark);
	border-color: var(--mrn-events-orange-dark);
	transform: translateY(-2px);
}

.mrn-events-button.is-outline {
	background: #fff;
	border-color: var(--mrn-events-orange);
	color: var(--mrn-events-orange) !important;
}

.mrn-events-button.is-outline:hover,
.mrn-events-button.is-outline:focus-visible {
	background: var(--mrn-events-orange);
	color: #fff !important;
}

/* --------------------------------------------------------------- sections */

.mrn-events-main { padding-block: 45px 60px; }

.mrn-lead-section,
.mrn-calendar-section,
.mrn-events-section { scroll-margin-top: 120px; }

.mrn-events-section { padding-top: 60px; }

/* The month index is quiet type between two card grids, so it gets more air. */
.mrn-calendar-section { padding-top: 80px; }

.mrn-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.mrn-section-heading h2 {
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.25;
}

.mrn-event-count {
	display: grid;
	place-items: center;
	min-width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--mrn-events-ink);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

/* ----------------------------------------------------------- next event */

/*
 * The page's lead. It is the event card's vocabulary at the scale of a page
 * opening: the same frame, the same pill, the same colophon list as a book -
 * not a new component and not a hero.
 */
.mrn-lead {
	display: grid;
	grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--mrn-events-radius);
	background: #fff;
	box-shadow: var(--mrn-events-shadow-rest);
}

/*
 * An event poster carries its own title, date and address as artwork. Cropping
 * it to fill the column cut the guests' names off both edges, so it is set the
 * way a book cover is set on this site: whole, on paper, inside the frame.
 */
.mrn-lead__image {
	display: block;
	padding: clamp(20px, 2vw, 32px);
	background: var(--mrn-events-paper);
}

.mrn-lead__image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: contain;
}

.mrn-lead__image .mrn-event-card__placeholder { min-height: 430px; }

.mrn-lead__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(30px, 3.4vw, 50px);
}

/*
 * Date above title: the visitor is checking whether they can be there before
 * they care what it is called.
 */
.mrn-lead__date {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 14px;
	margin: 24px 0 0;
	color: var(--wp--preset--color--heading, #242424);
	font-size: 20px;
	font-weight: 500;
}

.mrn-lead__date span {
	color: var(--mrn-events-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mrn-lead h2 {
	margin: 12px 0 0;
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.18;
}

.mrn-lead h2 a {
	color: var(--mrn-events-ink);
	text-decoration: none;
}

.mrn-lead h2 a:hover,
.mrn-lead h2 a:focus-visible { color: var(--mrn-events-orange); }

.mrn-lead__excerpt {
	max-width: 54ch;
	margin: 18px 0 0;
	color: var(--mrn-events-body);
	font-size: 16px;
	line-height: 1.7;
}

.mrn-lead .mrn-event-details {
	width: 100%;
	margin: 26px 0 0;
}

.mrn-lead__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 24px;
	margin-top: 30px;
}

.mrn-lead__actions .mrn-event-link {
	margin-top: 0;
	padding-top: 0;
}

/* The honest state: no date confirmed, said plainly, with the record behind it. */
.mrn-lead-empty {
	padding: clamp(32px, 4vw, 56px);
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--mrn-events-radius);
	background: var(--mrn-events-paper);
}

.mrn-lead-empty h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.25;
}

.mrn-lead-empty p {
	max-width: 60ch;
	margin: 16px 0 0;
	color: var(--mrn-events-body);
	font-size: 16px;
	line-height: 1.7;
}

.mrn-lead-empty__last {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--mrn-events-line);
	font-size: 14px;
}

.mrn-lead-empty__last a {
	color: var(--mrn-events-orange);
	font-weight: 600;
	text-decoration: none;
}

.mrn-lead-empty__last a:hover,
.mrn-lead-empty__last a:focus-visible { text-decoration: underline; }

/* --------------------------------------------------------------- calendar */

.mrn-calendar-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 8px;
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--wp--custom--radius--button, 999px);
	background: #fff;
}

.mrn-calendar-nav a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--mrn-events-ink);
	font-size: 20px;
	text-decoration: none;
	transition: background-color 0.25s ease;
}

.mrn-calendar-nav a:hover { background: var(--mrn-events-paper); }

.mrn-calendar-nav strong {
	min-width: 150px;
	font-weight: 600;
	text-align: center;
	text-transform: capitalize;
}

/*
 * The month index and the month named in words, side by side. The grid is
 * deliberately narrow: it is for locating a date, not for holding content, and
 * a month with one event in it should occupy the space of one month with one
 * event in it.
 */
/*
 * Two explicit rows, so the index's first line meets the grid's first week
 * rather than the control above it. Placed by grid-area, never by `order`.
 */
.mrn-calendar-block {
	display: grid;
	grid-template-columns: minmax(0, 392px) minmax(0, 1fr);
	column-gap: clamp(32px, 5vw, 72px);
	row-gap: 20px;
	align-items: start;
}

.mrn-calendar-nav { grid-area: 1 / 1; }
.mrn-calendar { grid-area: 2 / 1; }
.mrn-calendar-month { grid-area: 2 / 2; }

.mrn-calendar {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 2px;
}

/*
 * The weekday row used to be a solid ink band - the heaviest mark on the page
 * carrying its least useful content. It is now a label under a hairline.
 */
.mrn-calendar__weekday {
	margin-bottom: 6px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--mrn-events-line);
	color: var(--mrn-events-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-align: center;
	text-transform: uppercase;
}

.mrn-calendar__day {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	aspect-ratio: 1;
	padding-top: 5px;
}

.mrn-calendar__day time {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: var(--wp--preset--color--heading, #242424);
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}

/* A marked day carries the paper; the empty page around it stays the page. */
.mrn-calendar__day.has-event time {
	background: var(--mrn-events-paper);
	font-weight: 600;
}

.mrn-calendar__day.is-today time {
	background: var(--mrn-events-ink);
	color: #fff;
	font-weight: 600;
}

.mrn-calendar__marks {
	display: flex;
	justify-content: center;
	gap: 5px;
}

/*
 * One dot per event, a link each. The visible mark is 7px and the hit area is
 * 25px, so a thumb can reach what an eye can barely see - and the month index
 * beside the grid names every one of them in full.
 */
.mrn-calendar__mark {
	position: relative;
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--mrn-events-orange);
	transition: box-shadow 0.25s ease;
}

.mrn-calendar__mark::after {
	content: "";
	position: absolute;
	inset: -9px;
	border-radius: 50%;
}

.mrn-calendar__mark:hover,
.mrn-calendar__mark:focus-visible {
	box-shadow: 0 0 0 4px var(--mrn-events-paper);
	outline: 0;
}

.mrn-calendar__mark:focus-visible {
	box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--mrn-events-orange);
}

/* ------------------------------------------------------------ month index */

/* A reading measure, not the leftover width of the page. */
.mrn-calendar-month { max-width: 560px; }

.mrn-calendar-month__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mrn-calendar-month__list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 15px 0;
	border-bottom: 1px solid var(--mrn-events-line);
}

.mrn-calendar-month__list li:first-child {
	padding-top: 0;
}

.mrn-calendar-month__list a {
	display: flex;
	align-items: baseline;
	gap: 16px;
	min-width: 0;
	color: var(--mrn-events-ink);
	text-decoration: none;
}

.mrn-calendar-month__day {
	flex: none;
	min-width: 1.4em;
	color: var(--mrn-events-orange);
	font-size: 20px;
	font-variant-numeric: tabular-nums;
	font-weight: 500;
}

.mrn-calendar-month__title {
	font-size: 16px;
	line-height: 1.45;
}

.mrn-calendar-month__list a:hover .mrn-calendar-month__title,
.mrn-calendar-month__list a:focus-visible .mrn-calendar-month__title {
	color: var(--mrn-events-orange);
}

.mrn-calendar-month__time {
	flex: none;
	color: var(--mrn-events-body);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
}

.mrn-calendar-month__empty {
	max-width: 44ch;
	margin: 0;
	color: var(--mrn-events-body);
	font-size: 14px;
	line-height: 1.7;
}

/* ------------------------------------------------------------ event cards */

.mrn-events-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.mrn-event-card {
	display: grid;
	grid-template-columns: minmax(190px, 42%) 1fr;
	overflow: hidden;
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--mrn-events-radius);
	background: #fff;
	box-shadow: var(--mrn-events-shadow-rest);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mrn-event-card:hover,
.mrn-event-card:focus-within {
	transform: translateY(var(--wp--custom--lift, -4px));
	box-shadow: var(--mrn-events-shadow);
}

.mrn-event-card__image {
	display: block;
	min-height: 100%;
	background: var(--mrn-events-paper);
}

.mrn-event-card__image img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

/* The same placeholder as a book without a cover, rather than a second one. */
.mrn-event-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 320px;
	background: var(--mrn-events-paper);
	color: var(--mrn-events-orange);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.mrn-event-card__body {
	display: flex;
	flex-direction: column;
	padding: 28px;
}

.mrn-event-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--mrn-events-body);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.mrn-event-pill {
	display: inline-flex;
	width: max-content;
	padding: 7px 10px;
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--wp--custom--radius--button, 999px);
	background: var(--mrn-events-paper);
	color: var(--mrn-events-orange);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
}

.mrn-event-pill.is-past {
	background: var(--mrn-events-paper);
	color: var(--mrn-events-body);
}

.mrn-event-card h3 {
	margin: 18px 0 15px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

.mrn-event-card h3 a {
	color: var(--mrn-events-ink);
	text-decoration: none;
}

.mrn-event-card h3 a:hover,
.mrn-event-card h3 a:focus-visible { color: var(--mrn-events-orange); }

.mrn-event-card__meta {
	color: var(--mrn-events-body);
	font-size: 14px;
	line-height: 1.6;
}

/* Icon, then value: the icon aligns to the cap height of the first line. */
.mrn-event-card__meta p {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 8px 0;
}

.mrn-event-card__meta .mrn-icon { margin-top: 3px; }

.mrn-event-card__excerpt {
	margin: 16px 0;
	color: var(--mrn-events-body);
	font-size: 14px;
	line-height: 1.7;
}

.mrn-event-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	padding-top: 18px;
	align-self: flex-start;
	color: var(--mrn-events-orange);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
}

.mrn-events-empty {
	padding: 42px;
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--mrn-events-radius);
	background: var(--mrn-events-paper);
	text-align: center;
}

.mrn-events-empty h3 {
	margin-top: 0;
	font-size: 28px;
	font-weight: 400;
}

.mrn-events-empty p {
	margin-bottom: 0;
	color: var(--mrn-events-body);
	font-size: 14px;
	line-height: 1.7;
}

/* ----------------------------------------------------------- single event */

.mrn-event-single { padding-block: 20px 60px; }

.mrn-event-back { margin-bottom: 28px; }

.mrn-event-back a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--mrn-events-orange);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
}

.mrn-event-single__article {
	overflow: hidden;
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--mrn-events-radius);
	background: #fff;
	box-shadow: var(--mrn-events-shadow-rest);
}

.mrn-event-single__hero { display: grid; grid-template-columns: 1fr; }

.mrn-event-single__image { background: var(--mrn-events-paper); }

.mrn-event-single__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 720px;
	object-fit: contain;
}

.mrn-event-single__intro { padding: clamp(36px, 6vw, 72px); }

.mrn-event-single__intro h1 {
	margin: 22px 0;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.2;
}

.mrn-event-single__excerpt {
	color: var(--mrn-events-body);
	font-size: 20px;
	line-height: 1.55;
}

/*
 * The same description list as a book's colophon: label left, value right,
 * hairline between rows.
 */
.mrn-event-details {
	display: grid;
	gap: 0;
	margin: 32px 0;
}

.mrn-event-details div {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--mrn-events-line);
}

.mrn-event-details dt {
	color: var(--wp--preset--color--heading, #242424);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mrn-event-details dd {
	margin: 0;
	color: var(--mrn-events-body);
	font-size: 14px;
	font-weight: 400;
}

.mrn-event-closed {
	display: inline-flex;
	align-items: center;
	min-height: var(--wp--custom--control--height, 46px);
	padding: var(--wp--custom--control--padding, 12px 24px);
	border: 1px solid var(--mrn-events-line);
	border-radius: var(--wp--custom--radius--button, 999px);
	background: var(--mrn-events-paper);
	color: var(--mrn-events-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.mrn-event-single__content {
	max-width: var(--wp--custom--layout--reading, 886px);
	margin-inline: auto;
	padding: 0 24px clamp(45px, 7vw, 85px);
	font-size: 16px;
	line-height: 1.75;
}

.mrn-event-single__content > img:first-child { display: none; }
.mrn-event-single__content link { display: none; }

.mrn-event-single__content hr {
	margin-block: 32px;
	border: 0;
	border-top: 1px solid var(--mrn-events-line);
}

/* ------------------------------------------------------------- responsive */

@media (max-width: 1024px) {
	.mrn-events-grid { grid-template-columns: 1fr; }
	.mrn-event-card { grid-template-columns: 280px 1fr; }
}

/* The grid and its index stack before either one gets too narrow to read. */
@media (max-width: 900px) {
	.mrn-calendar-block {
		grid-template-columns: minmax(0, 420px);
		row-gap: 20px;
	}

	.mrn-calendar-nav,
	.mrn-calendar,
	.mrn-calendar-month { grid-area: auto / 1; }

	.mrn-calendar-month { padding-top: 12px; }
}

@media (max-width: 760px) {
	.mrn-events-container { width: min(100% - 24px, 1222px); }
	.mrn-section-heading { align-items: flex-start; flex-direction: column; }
	.mrn-calendar-nav { width: 100%; justify-content: space-between; }
	.mrn-calendar-block { grid-template-columns: minmax(0, 1fr); }
	.mrn-calendar__day time { width: 26px; height: 26px; font-size: 13px; }

	.mrn-lead { grid-template-columns: 1fr; }
	.mrn-lead__image { padding: 18px 18px 0; }
	.mrn-lead__image img,
	.mrn-lead__image .mrn-event-card__placeholder { min-height: 0; height: 300px; }
	.mrn-lead__body { padding: 28px 22px 32px; }
	.mrn-lead__actions { gap: 12px 20px; }

	.mrn-event-card { grid-template-columns: 1fr; }
	.mrn-event-card__image img { min-height: 0; max-height: 520px; }
	.mrn-event-single { padding-top: 16px; }
	.mrn-event-single__intro { padding: 30px 22px; }
	.mrn-event-single__excerpt { font-size: 16px; }
	.mrn-event-details div { grid-template-columns: 1fr; gap: 4px; }
	.mrn-event-single__content { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	.mrn-events-button,
	.mrn-event-card,
	.mrn-calendar-nav a,
	.mrn-calendar__mark { transition: none; }

	.mrn-events-button:hover,
	.mrn-event-card:hover { transform: none; }
}
