.nc-club-badge {
	--nc-badge-radius: 999px;
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: 100%;
	min-height: 34px;
	margin: 6px 0;
	padding: 7px 11px;
	border: 1px solid transparent;
	border-radius: var(--nc-badge-radius);
	background: var(--nc-club-badge-bg, #1f6b45);
	color: var(--nc-club-badge-color, #fff);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: left;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.nc-club-badge:hover {
	color: var(--nc-club-badge-color, #fff);
	filter: brightness(0.95);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.nc-club-badge:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--nc-club-accent, #1f6b45) 30%, #fff);
	outline-offset: 3px;
}

.nc-club-badge__content {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.nc-club-badge__icon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.nc-club-badge__label {
	display: inline-block;
	overflow-wrap: anywhere;
}

.nc-club-badge__info {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.nc-club-badge--loop {
	min-height: 29px;
	padding: 5px 9px;
	font-size: 11px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.10);
}

.nc-club-badge--loop .nc-club-badge__icon {
	width: 15px;
	height: 15px;
}

.nc-club-badge--loop .nc-club-badge__info {
	width: 15px;
	height: 15px;
	font-size: 10px;
}

.nc-club-modal[hidden] {
	display: none !important;
}

.nc-club-modal {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 18px;
}

.nc-club-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 18, 14, 0.68);
	backdrop-filter: blur(3px);
}

.nc-club-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 540px);
	max-height: min(86vh, 720px);
	overflow: auto;
	padding: 32px;
	border-radius: 18px;
	background: #fff;
	color: #202420;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	text-align: center;
}

.nc-club-modal__dialog:focus {
	outline: none;
}

.nc-club-modal__close {
	appearance: none;
	-webkit-appearance: none;
	position: absolute;
	top: 10px;
	right: 12px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #444;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.nc-club-modal__close:hover,
.nc-club-modal__close:focus-visible {
	background: #f0f2f0;
	color: #111;
}

.nc-club-modal__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--nc-club-accent, #1f6b45) 12%, #fff);
	color: var(--nc-club-accent, #1f6b45);
}

.nc-club-modal__icon svg {
	width: 34px;
	height: 34px;
	fill: currentColor;
}

.nc-club-modal__title {
	margin: 0 34px 14px;
	color: #15251c;
	font-size: clamp(22px, 4vw, 30px);
	font-weight: 800;
	line-height: 1.15;
}

.nc-club-modal__text {
	font-size: 16px;
	line-height: 1.65;
	text-align: left;
}

.nc-club-modal__text p {
	margin: 0 0 12px;
}

.nc-club-modal__text p:last-child {
	margin-bottom: 0;
}

.nc-club-modal__confirm {
	appearance: none;
	-webkit-appearance: none;
	min-width: 160px;
	margin-top: 24px;
	padding: 12px 22px;
	border: 0;
	border-radius: 10px;
	background: var(--nc-club-accent, #1f6b45);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.nc-club-modal__confirm:hover {
	filter: brightness(0.92);
}

.nc-club-modal__confirm:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--nc-club-accent, #1f6b45) 35%, #fff);
	outline-offset: 3px;
}

body.nc-club-modal-open {
	overflow: hidden;
}

@media (max-width: 600px) {
	.nc-club-modal {
		align-items: end;
		padding: 10px;
	}

	.nc-club-modal__dialog {
		width: 100%;
		max-height: 90vh;
		padding: 28px 20px 22px;
		border-radius: 18px 18px 12px 12px;
	}

	.nc-club-modal__title {
		margin-right: 28px;
		margin-left: 28px;
	}

	.nc-club-modal__text {
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nc-club-badge {
		transition: none;
	}
}
