.nvc-calendar-wrap {
	max-width: 480px;
	margin: 0 auto;
	font-family: inherit;
	color: var(--nvc-text-color, #f7e4f1);
}

.nvc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.nvc-nav {
	background: transparent;
	color: var(--nvc-text-color, #f7e4f1);
	border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
	border-radius: 6px;
	width: 44px;
	height: 44px;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
}

.nvc-nav:hover {
	background: color-mix(in srgb, currentColor 12%, transparent);
}

.nvc-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 17px;
}

.nvc-year-select {
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 6px;
	padding: 4px 6px;
	font-size: 15px;
	background: #fff;
	color: #333;
	cursor: pointer;
}

.nvc-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 12px;
	opacity: 0.6;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.nvc-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.nvc-day {
	position: relative;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 14px;
}

.nvc-day-empty {
	visibility: hidden;
}

.nvc-has-posts {
	cursor: pointer;
	font-weight: 600;
	background: color-mix(in srgb, var(--nvc-accent-color, #00ffff) 50%, transparent);
	transition: background 0.15s ease, transform 0.1s ease;
}

.nvc-has-posts:hover,
.nvc-has-posts:focus {
	background: color-mix(in srgb, var(--nvc-accent-color, #00ffff) 65%, transparent);
	outline: none;
}

.nvc-has-posts.nvc-active {
	background: var(--nvc-accent-color, #00ffff);
	color: #1a1a1a;
}

.nvc-today .nvc-day-number {
	text-decoration: underline;
}

.nvc-dot {
	position: absolute;
	bottom: 4px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.7;
}

.nvc-calendar-body {
	position: relative;
	min-height: 240px;
}

.nvc-calendar-body.nvc-loading {
	opacity: 0.5;
	pointer-events: none;
}

.nvc-day-posts {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.nvc-day-posts-title {
	margin: 0 0 10px;
	font-size: 16px;
	color: var(--nvc-text-color, #f7e4f1);
}

.nvc-post-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nvc-post-item {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nvc-post-item:last-child {
	border-bottom: none;
}

.nvc-post-thumb img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

.nvc-post-title {
	display: block;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 4px;
	color: #00ffff;
	font-size: 17px;
}

.nvc-post-excerpt {
	font-size: 13px;
	opacity: 0.75;
	line-height: 1.4;
}

.nvc-no-posts {
	opacity: 0.7;
	font-style: italic;
}
