/* Chugcheck Notes — frontend styles. Same design language as the sliders
   plugin: white space, rounded corners, soft shadows, no gradients. */

.chugcheck-notes-display {
	--chugcheck-notes-ink: #1C1B19;
	--chugcheck-notes-ink-soft: #77726B;
	--chugcheck-notes-surface: #FFFFFF;
	--chugcheck-notes-bg: #F6F5F2;

	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	text-align: center;
}

.chugcheck-notes-row {
	width: 100%;
	box-sizing: border-box;
}

.chugcheck-notes-row__title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--chugcheck-notes-ink-soft);
	margin: 0 0 4px;
}

.chugcheck-notes-row__description {
	font-size: 13px;
	color: var(--chugcheck-notes-ink-soft);
	margin: 0 0 16px;
}

.chugcheck-notes-row__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.chugcheck-note-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 96px;
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
}

.chugcheck-note-badge__circle {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: var(--chugcheck-notes-bg);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(28, 27, 25, 0.08), 0 0 0 1px rgba(28, 27, 25, 0.04);
	transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}

.chugcheck-note-badge__circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.chugcheck-note-badge__initial {
	font-size: 28px;
	font-weight: 700;
	color: var(--chugcheck-notes-ink-soft);
}

.chugcheck-note-badge:hover .chugcheck-note-badge__circle {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 20px rgba(28, 27, 25, 0.14), 0 0 0 1px rgba(28, 27, 25, 0.05);
}

.chugcheck-note-badge__name {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	color: var(--chugcheck-notes-ink);
	line-height: 1.3;
}

/* --- Note archive header --- */

.chugcheck-note-header {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	padding: 32px 16px 8px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chugcheck-note-header__image {
	width: 120px;
	height: 120px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	background: #F6F5F2;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(28, 27, 25, 0.12), 0 0 0 1px rgba(28, 27, 25, 0.04);
}

.chugcheck-note-header__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.chugcheck-note-header__initial {
	font-size: 42px;
	font-weight: 700;
	color: #77726B;
}

.chugcheck-note-header__title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #1C1B19;
}

.chugcheck-note-header__description {
	font-size: 15px;
	line-height: 1.6;
	color: #4B4740;
	margin: 0 0 14px;
}

.chugcheck-note-header__count {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #77726B;
}

@media (max-width: 480px) {
	.chugcheck-note-badge {
		width: 80px;
	}
	.chugcheck-note-badge__circle {
		width: 68px;
		height: 68px;
	}
}
