/* =========================================
   DecoBlocks Frontend Styles
   모든 클래스는 dbk- 네임스페이스로 시작 (테마 충돌 방지)
   ========================================= */

/* -----------------------------------------
   1. 말풍선 (Bubble)
   ----------------------------------------- */
.dbk-bubble {
	--dbk-bubble-color: #111111;
	position: relative;
	max-width: 80%;
	width: fit-content;
	margin: 16px 0;
	padding: 14px 18px;
	border-radius: 18px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

/* 채움 (기본) - 배경을 색으로 꽉 채움 */
.dbk-bubble--filled {
	background: var(--dbk-bubble-color);
	color: #fff;
}

/* 윤곽선 - 배경은 흰색, 테두리와 글자만 색 (더 산뜻하고 가벼운 인상) */
.dbk-bubble--outline {
	background: #fff;
	color: var(--dbk-bubble-color);
	border: 2px solid var(--dbk-bubble-color);
}

/* 파스텔 - 은은한 배경 톤 + 진한 글자색 (귀엽고 부드러운 느낌, 프로 전용) */
.dbk-bubble--soft {
	background: color-mix( in srgb, var(--dbk-bubble-color) 14%, white );
	color: var(--dbk-bubble-color);
}

.dbk-bubble__content {
	flex: 1;
}
.dbk-bubble__content p:first-child { margin-top: 0; }
.dbk-bubble__content p:last-child { margin-bottom: 0; }

.dbk-bubble__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

/* 좌측 말풍선 (꼬리가 좌측 하단) */
.dbk-bubble--left {
	margin-right: auto;
	border-bottom-left-radius: 4px;
}
.dbk-bubble--left.dbk-bubble--filled::after {
	content: '';
	position: absolute;
	left: 12px;
	bottom: -8px;
	border-width: 8px 8px 0 0;
	border-style: solid;
	border-color: var(--dbk-bubble-color) transparent transparent transparent;
}
.dbk-bubble--left.dbk-bubble--outline::after,
.dbk-bubble--left.dbk-bubble--soft::after {
	content: '';
	position: absolute;
	left: 12px;
	bottom: -7px;
	width: 14px;
	height: 14px;
	background: inherit;
	border-right: inherit;
	border-bottom: inherit;
	transform: rotate(45deg);
	border-radius: 0 0 3px 0;
}

/* 우측 말풍선 (꼬리가 우측 하단) */
.dbk-bubble--right {
	margin-left: auto;
	border-bottom-right-radius: 4px;
	flex-direction: row-reverse;
}
.dbk-bubble--right.dbk-bubble--filled::after {
	content: '';
	position: absolute;
	right: 12px;
	bottom: -8px;
	border-width: 8px 0 0 8px;
	border-style: solid;
	border-color: var(--dbk-bubble-color) transparent transparent transparent;
}
.dbk-bubble--right.dbk-bubble--outline::after,
.dbk-bubble--right.dbk-bubble--soft::after {
	content: '';
	position: absolute;
	right: 12px;
	bottom: -7px;
	width: 14px;
	height: 14px;
	background: inherit;
	border-left: inherit;
	border-bottom: inherit;
	transform: rotate(-45deg);
	border-radius: 0 0 0 3px;
}

/* -----------------------------------------
   2. 섹션박스 (Box)
   ----------------------------------------- */
.dbk-box {
	--dbk-box-color: #111111;
	margin: 20px auto;
	padding: 18px 20px;
	border-radius: 8px;
	background: #fff;
	max-width: 600px;
	text-align: center;
	width: fit-content;
	max-width: 100%;
}

.dbk-box__title {
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--dbk-box-color);
	font-size: 1.05em;
}

.dbk-box__content p:first-child { margin-top: 0; }
.dbk-box__content p:last-child { margin-bottom: 0; }

.dbk-box--solid {
	border: 2px solid var(--dbk-box-color);
}

.dbk-box--shadow {
	border: 1px solid #eee;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.dbk-box--dashed {
	border: 2px dashed var(--dbk-box-color);
	background: transparent;
}

/* -----------------------------------------
   3. 커스텀 글머리기호 (Bullet List)
   ----------------------------------------- */
.dbk-bullet-list {
	list-style: none;
	margin: 16px 0;
	padding: 0;
}

.dbk-bullet-list__item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	line-height: 1.6;
}

.dbk-bullet-list__icon {
	flex-shrink: 0;
	line-height: 1.6;
}

/* 3D 애드온 전용 - 색이 아니라 "아이콘이 도드라져 보이는 배지"로 확실하게 구분 */
.dbk-bullet-list--rainbow3d .dbk-bullet-list__item {
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
.dbk-bullet-list--rainbow3d .dbk-bullet-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6em;
	height: 2.6em;
	border-radius: 50%;
	background: linear-gradient(160deg, #fdfdfd, #d5d5d5);
	border: 1px solid rgba(0,0,0,0.08);
	box-shadow:
		0 0 0 3px #fff,
		0 0 0 4px rgba(0,0,0,0.06),
		0 1px 0 rgba(255,255,255,0.9) inset,
		0 -3px 4px rgba(0,0,0,0.14) inset,
		0 4px 8px rgba(0,0,0,0.28);
	font-size: 1.3em;
}

/* -----------------------------------------
   4. 하이라이트 (형광펜)
   ----------------------------------------- */
mark.dbk-highlight {
	background: none;
	padding: 0 2px;
	border-radius: 2px;
}

.dbk-highlight.dbk-highlight--yellow {
	background: linear-gradient(transparent 60%, #FFF176 60%);
}

.dbk-highlight.dbk-highlight--green {
	background: linear-gradient(transparent 60%, #AED581 60%);
}

/* -----------------------------------------
   3D 애드온 - 색이 아니라 "입체감(그림자, 도드라짐)"으로 2D와 구분함
   말풍선/섹션박스 = 살짝 떠 보이는 카드, 인용박스 = 조각된 듯한 느낌으로 서로 다르게 처리
   ----------------------------------------- */
.dbk-3d-premium {
	position: relative;
	box-shadow:
		0 1px 0 rgba(255,255,255,0.6) inset,
		0 -1px 0 rgba(0,0,0,0.06) inset,
		0 14px 28px -6px rgba(20,20,20,0.22),
		0 4px 8px rgba(20,20,20,0.10);
	transform: translateY(-3px);
	border-color: rgba(0,0,0,0.14) !important;
}

/* 인용박스는 같은 "3D"라도 말풍선/박스와 다르게, 안쪽이 살짝 파인 느낌(조각된 느낌)으로 */
.dbk-quote.dbk-3d-premium {
	transform: none;
	box-shadow:
		0 1px 3px rgba(0,0,0,0.15),
		0 1px 0 rgba(255,255,255,0.8) inset,
		inset 0 2px 6px rgba(0,0,0,0.08);
	border-color: transparent !important;
}
.dbk-quote.dbk-3d-premium.dbk-quote--quotation-marks::before,
.dbk-quote.dbk-3d-premium.dbk-quote--quotation-marks::after {
	text-shadow: 2px 3px 3px rgba(0,0,0,0.25);
	opacity: 0.5;
}

/* 3D 애드온 전용 - "형광펜으로 진하게 칠하다가 오른쪽으로 갈수록 옅어지는" 느낌의
   확실히 보이는 색 그라데이션 + 살짝 입체적인 그림자를 함께 줌.
   색 자체는 --dbk-highlight-gradient-color 변수로 받음 - 사이드바에서 유저가
   직접 고른 색이 여기 꽂혀서, 노랑 고정이 아니라 원하는 색으로 자유롭게 바뀜. */
.dbk-highlight.dbk-highlight--gradient3d {
	position: relative;
	--dbk-highlight-gradient-color: #F5C400;
	background-image: linear-gradient(90deg, var(--dbk-highlight-gradient-color) 0%, var(--dbk-highlight-gradient-color) 55%, transparent 100%);
	padding: 1px 6px 2px 3px;
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.18);
	animation: dbk-highlight-sweep 0.7s cubic-bezier(0.65,0,0.35,1) both;
	transform-origin: left center;
}
@keyframes dbk-highlight-sweep {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
	.dbk-highlight.dbk-highlight--gradient3d { animation: none; }
}

/* -----------------------------------------
   5. 목차 (TOC)
   ----------------------------------------- */
.dbk-toc {
	margin: 20px auto;
	padding: 16px 20px;
	background: #F8F9FA;
	border-radius: 8px;
	border: 1px solid #E9ECEF;
	max-width: 480px;
	text-align: center;
}

.dbk-toc__title {
	font-weight: 700;
	margin-bottom: 10px;
}

.dbk-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	display: inline-block;
}

.dbk-toc__item {
	margin-bottom: 6px;
}

.dbk-toc__item a {
	color: inherit;
	text-decoration: none;
}
.dbk-toc__item a:hover {
	text-decoration: underline;
}

.dbk-toc__item--level-3 {
	padding-left: 16px;
	font-size: 0.95em;
}

/* 3D 애드온 전용 - 카드 자체가 살짝 떠 보이는 그림자 + 2~3단 테두리로 확실한 층위감 + 번호가 도드라진 배지 */
.dbk-toc--3d {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.12);
	box-shadow:
		0 0 0 4px #fff,
		0 0 0 6px rgba(0,0,0,0.08),
		0 1px 0 rgba(255,255,255,0.6) inset,
		0 12px 24px -6px rgba(0,0,0,0.22),
		0 4px 8px rgba(0,0,0,0.1);
	transform: translateY(-2px);
	counter-reset: dbk-toc-counter;
}
.dbk-toc--3d .dbk-toc__item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.dbk-toc--3d .dbk-toc__item::before {
	counter-increment: dbk-toc-counter;
	content: counter(dbk-toc-counter);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6em;
	height: 1.6em;
	border-radius: 50%;
	font-size: 0.75em;
	font-weight: 700;
	color: #444;
	background: linear-gradient(160deg, #fdfdfd, #dcdcdc);
	box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 -2px 3px rgba(0,0,0,0.12) inset, 0 2px 4px rgba(0,0,0,0.25);
}

/* -----------------------------------------
   6. 반짝이는(샤인) 텍스트
   ----------------------------------------- */
.dbk-sparkle {
	--dbk-sparkle-color: #FFD700;
	position: relative;
	font-weight: 700;
	background: linear-gradient(
		100deg,
		currentColor 0%,
		currentColor 40%,
		var(--dbk-sparkle-color) 50%,
		currentColor 60%,
		currentColor 100%
	);
	background-size: 250% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: dbk-shine 2.6s linear infinite;
}

.dbk-sparkle--slow { animation-duration: 4.5s; }
.dbk-sparkle--fast { animation-duration: 1.4s; }

/* 3D 애드온 전용 - 단색 반짝임 대신 여러 색이 흐르는 무지개 반짝임 */
.dbk-sparkle--rainbow3d {
	background-image: linear-gradient(100deg, #FF6F91, #FFD93D, #3FCFB4, #8C6FE6, #FF6F91) !important;
	background-size: 300% 100% !important;
	animation: dbk-shine-rainbow3d 3s linear infinite !important;
}
@keyframes dbk-shine-rainbow3d {
	0%   { background-position: 0% 0; }
	100% { background-position: 100% 0; }
}

@keyframes dbk-shine {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.dbk-sparkle { animation: none; }
}

/* -----------------------------------------
   7. 빛나는(글로우) 박스
   ----------------------------------------- */
.dbk-glow {
	--dbk-glow-color: #111111;
	position: relative;
	margin: 20px auto;
	padding: 18px 20px;
	border-radius: 10px;
	background: #fff;
	border: 2px solid var(--dbk-glow-color);
	max-width: 600px;
	text-align: center;
}

.dbk-glow__title {
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--dbk-glow-color);
}

.dbk-glow__content p:first-child { margin-top: 0; }
.dbk-glow__content p:last-child { margin-bottom: 0; }

.dbk-glow--pulse {
	animation: dbk-glow-pulse 2s ease-in-out infinite;
}

@keyframes dbk-glow-pulse {
	0%, 100% { box-shadow: 0 0 6px 0 var(--dbk-glow-color); }
	50%      { box-shadow: 0 0 18px 4px var(--dbk-glow-color); }
}

/* 3D 애드온 전용 - 무지개색이 도는 화려한 펄스 광채 */
.dbk-glow--rainbow3d {
	border: 3px solid transparent !important;
	background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #FF6F91, #FFD93D, #3FCFB4, #8C6FE6);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	animation: dbk-glow-rainbow3d 3s ease-in-out infinite;
}
@keyframes dbk-glow-rainbow3d {
	0%, 100% { box-shadow: 0 0 10px 2px rgba(255, 111, 145, 0.5); }
	33%      { box-shadow: 0 0 18px 4px rgba(255, 217, 61, 0.5); }
	66%      { box-shadow: 0 0 18px 4px rgba(63, 207, 180, 0.5); }
}

/* 반짝이는 별(twinkle) - 프로 버전 */
.dbk-glow--twinkle {
	overflow: hidden;
}
.dbk-glow--twinkle::before,
.dbk-glow--twinkle::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	background: var(--dbk-glow-color);
	border-radius: 50%;
	filter: blur(0.5px);
	animation: dbk-twinkle 1.8s ease-in-out infinite;
}
.dbk-glow--twinkle::before { top: 10px; left: 16px; animation-delay: 0s; }
.dbk-glow--twinkle::after { bottom: 14px; right: 20px; animation-delay: 0.6s; }

@keyframes dbk-twinkle {
	0%, 100% { opacity: 0.2; transform: scale(0.8); }
	50%      { opacity: 1; transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
	.dbk-glow--pulse,
	.dbk-glow--twinkle::before,
	.dbk-glow--twinkle::after {
		animation: none;
	}
}

/* -----------------------------------------
   8. 자동 반복 폭죽 효과
   ----------------------------------------- */
.dbk-firework-effect {
	position: relative;
	width: 100%;
	height: 160px;
	margin: 20px 0;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dbk-firework-effect__canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.dbk-firework-effect__caption {
	position: relative;
	z-index: 1;
	font-weight: 700;
	font-size: 1.1em;
	color: #333;
	pointer-events: none;
}

/* -----------------------------------------
   10. 인용구 (하위 스타일 여러 종)
   ----------------------------------------- */
.dbk-quote {
	--dbk-quote-color: #111111;
	margin: 24px auto;
	padding: 0;
	text-align: center;
}
.dbk-quote__content {
	font-size: 1.35em; /* 인용구는 주제 타이틀 성격이라 본문보다 확실히 크게 */
	font-weight: 600;
	line-height: 1.5;
}
.dbk-quote__content p:first-child { margin-top: 0; }
.dbk-quote__content p:last-child { margin-bottom: 0; }
.dbk-quote__attribution {
	display: block;
	margin-top: 10px;
	font-size: 0.6em; /* 본문 대비 작고 옅게 - 출처는 어디까지나 보조 정보 */
	color: #999;
	font-style: normal;
	font-weight: 400;
	opacity: 0.85;
}
.dbk-quote__attribution:empty::before {
	content: attr(data-placeholder);
	color: #bbb;
}

/* 클래식 - 큰따옴표 장식 */
.dbk-quote--classic {
	position: relative;
	padding: 8px 0 8px 22px;
	border-left: 4px solid var(--dbk-quote-color);
}
.dbk-quote--classic .dbk-quote__content {
	font-style: italic;
	color: #333;
}

/* 큰따옴표 장식 - 워드프레스 기본 "인용구" 블록의 그 느낌을, DecoBlocks 자체 스타일로 진짜 구현 */
.dbk-quote--quotation-marks {
	position: relative;
	padding: 20px 44px 24px 52px;
	background: rgba(0,0,0,0.02);
	border-radius: 10px;
}
.dbk-quote--quotation-marks::before {
	content: '\201C';
	position: absolute;
	top: -6px;
	left: 12px;
	font-size: 64px;
	line-height: 1;
	font-family: Georgia, 'Times New Roman', serif;
	color: var(--dbk-quote-color);
	opacity: 0.35;
}
.dbk-quote--quotation-marks::after {
	content: '\201D';
	position: absolute;
	bottom: -28px;
	right: 12px;
	font-size: 64px;
	line-height: 1;
	font-family: Georgia, 'Times New Roman', serif;
	color: var(--dbk-quote-color);
	opacity: 0.35;
}
.dbk-quote--quotation-marks .dbk-quote__content {
	font-style: italic;
	color: #333;
	position: relative;
	z-index: 1;
}
/* 3D 애드온 버전은 .dbk-3d-premium 공용 클래스(그라데이션 테두리+입체 그림자)가
   이미 자동으로 같이 붙기 때문에, 여기서 따로 3D CSS를 만들 필요 없음 - 재사용됨 */

/* 세로바 - 끝이 둥글게 처리된 두꺼운 색상 바 (네이버 블로그 인용구 특유의 디테일) */
.dbk-quote--vertical-bar {
	position: relative;
	padding: 8px 0 8px 30px;
}
.dbk-quote--vertical-bar::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 8px;
	border-radius: 4px;
	background: var(--dbk-quote-color);
}
.dbk-quote--vertical-bar .dbk-quote__content {
	font-weight: 600;
}

/* 라인 프레임 - 위아래 두꺼운 선 */
.dbk-quote--line-frame {
	padding: 16px 4px;
	border-top: 3px solid var(--dbk-quote-color);
	border-bottom: 3px solid var(--dbk-quote-color);
}

/* 포스트잇 - 프로 */
.dbk-quote--postit {
	position: relative;
	padding: 20px 24px;
	background: #FFF9C4;
	box-shadow: 2px 3px 8px rgba(0,0,0,0.12);
	transform: rotate(-0.6deg);
}
.dbk-quote--postit::after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: 16px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 8px 0 0;
	border-color: rgba(0,0,0,0.08) transparent transparent transparent;
}
/* 3D - 포스트잇: 실제 종이처럼 가장자리가 살짝 어두워지는 비네팅 + 더 깊은 그림자·접힌 모서리 */
.dbk-quote--postit.dbk-3d-premium {
	background:
		radial-gradient(ellipse at center, rgba(255,249,196,1) 55%, rgba(235,220,140,1) 100%);
	box-shadow: 3px 5px 14px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(0,0,0,0.04);
	transform: rotate(-1deg) translateY(-2px);
}
.dbk-quote--postit.dbk-3d-premium::after {
	border-width: 14px 14px 0 0;
	border-color: rgba(0,0,0,0.18) transparent transparent transparent;
	filter: blur(0.5px);
}

/* 모서리 프레임 - 프로 */
.dbk-quote--corner-frame {
	position: relative;
	padding: 20px 22px;
	width: fit-content;
	max-width: 100%;
}
.dbk-quote--corner-frame::before,
.dbk-quote--corner-frame::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	border-color: var(--dbk-quote-color);
	border-style: solid;
}
.dbk-quote--corner-frame::before {
	top: 0; left: 0;
	border-width: 2px 0 0 2px;
}
.dbk-quote--corner-frame::after {
	bottom: 0; right: 0;
	border-width: 0 2px 2px 0;
}

/* -----------------------------------------
   11. 구분선 (하위 스타일 여러 종)
   ----------------------------------------- */
.dbk-divider {
	--dbk-divider-color: #111111;
	position: relative;
	margin: 28px 0;
	height: 0;
	border-top: 1px solid var(--dbk-divider-color);
}

.dbk-divider--solid {
	border-top-width: 1px;
	border-top-style: solid;
}

/* 3D - 실선: 두껍고 베벨(경사면) 처리된 진짜 입체 바 (색 없이 그림자만으로 도드라짐) */
.dbk-divider--solid.dbk-divider--3d {
	border-top: none !important;
	height: 5px !important;
	border-radius: 3px;
	background: linear-gradient(180deg, #6b6b6b, #2a2a2a);
	box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 3px 6px rgba(0,0,0,0.3);
}

.dbk-divider--dashed {
	border-top-style: dashed;
}

/* 3D - 점선: 각 조각이 도드라져 보이는 베벨 대시 */
.dbk-divider--dashed.dbk-divider--3d {
	border-top: none !important;
	height: 4px !important;
	background-image: repeating-linear-gradient(90deg, #4a4a4a 0 14px, transparent 14px 22px);
	background-size: 100% 4px;
	filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
	border-radius: 2px;
}

.dbk-divider--dotted {
	border-top-style: dotted;
}

/* 3D - 점묘: 진주알처럼 도드라진 입체 점들 */
.dbk-divider--dotted.dbk-divider--3d {
	border-top: none !important;
	height: 6px !important;
	background-image: radial-gradient(circle, #5a5a5a 40%, transparent 42%);
	background-size: 14px 6px;
	background-repeat: repeat-x;
	background-position: center;
	filter: drop-shadow(0 2px 2px rgba(0,0,0,0.35));
}

/* 가운데 다이아몬드 - 프로 */
.dbk-divider--diamond {
	border-top-style: solid;
}
.dbk-divider--diamond .dbk-divider__ornament {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 0 10px;
	color: var(--dbk-divider-color);
	font-size: 0.8em;
}
/* 3D - 다이아몬드: 평평한 "◆" 글자 대신, 실제 보석처럼 깎인 면이 있는 입체 다이아몬드 모양 */
.dbk-divider--diamond.dbk-divider--3d { border-top: 1px solid rgba(0,0,0,0.15); }
.dbk-divider--diamond.dbk-divider--3d .dbk-divider__ornament {
	font-size: 0;
	width: 16px;
	height: 16px;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.9) 0%, transparent 45%),
		linear-gradient(315deg, rgba(0,0,0,0.25) 0%, transparent 45%),
		linear-gradient(45deg, #cfd4da, #8b93a1);
	transform: translate(-50%, -50%) rotate(45deg);
	box-shadow: 2px 2px 4px rgba(0,0,0,0.35);
	padding: 0;
}

/* 화살표(장식) - 프로 */
.dbk-divider--arrow {
	border-top-style: solid;
}
.dbk-divider--arrow .dbk-divider__ornament {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 0 8px;
	color: var(--dbk-divider-color);
	font-size: 0.9em;
	line-height: 1;
}
/* 3D - 화살표: 화살표가 옆에서 날아와 선을 그리고 멈추는 애니메이션 */
.dbk-divider--arrow.dbk-divider--3d { border-top-color: rgba(0,0,0,0.15); }
.dbk-divider--arrow.dbk-divider--3d .dbk-divider__ornament {
	font-size: 1.3em;
	text-shadow: 1px 2px 3px rgba(0,0,0,0.4);
	animation: dbk-arrow-fly-in 1s cubic-bezier(0.2,0.8,0.2,1) both;
}
@keyframes dbk-arrow-fly-in {
	0%   { transform: translate(120px, -50%) rotate(-90deg); opacity: 0; }
	70%  { opacity: 1; }
	100% { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.dbk-divider--arrow.dbk-divider--3d .dbk-divider__ornament { animation: none; }
}

/* 대각선 슬래시 - 프로 (가운데 선 없이 짧은 사선만) */
.dbk-divider--slash {
	border-top: none;
	height: 20px;
}
.dbk-divider--slash .dbk-divider__ornament--slash {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 20px;
	background: var(--dbk-divider-color);
	transform: translate(-50%, -50%) rotate(20deg);
}
/* 3D - 대각선: 새겨넣은(음각) 듯한 느낌의 두껍고 입체적인 사선 */
.dbk-divider--slash.dbk-divider--3d .dbk-divider__ornament--slash {
	width: 4px;
	height: 26px;
	border-radius: 2px;
	background: linear-gradient(180deg, #6b6b6b, #222);
	box-shadow: 1px 1px 0 rgba(255,255,255,0.2) inset, 2px 3px 4px rgba(0,0,0,0.35);
}

/* 짧은 세로 눈금 - 프로 (중앙에 작은 세로선 하나) */
.dbk-divider--tick {
	border-top: none;
	height: 16px;
}
.dbk-divider--tick .dbk-divider__ornament--tick {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 16px;
	background: var(--dbk-divider-color);
	transform: translate(-50%, -50%);
}
/* 3D - 눈금: 작은 입체 버튼처럼 도드라진 세로 눈금 */
.dbk-divider--tick.dbk-divider--3d .dbk-divider__ornament--tick {
	width: 5px;
	height: 20px;
	border-radius: 2px;
	background: linear-gradient(180deg, #7a7a7a, #2a2a2a);
	box-shadow: 1px 0 0 rgba(255,255,255,0.2) inset, 2px 2px 4px rgba(0,0,0,0.35);
}

/* -----------------------------------------
   13. 스티커
   ----------------------------------------- */
.dbk-sticker {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.dbk-sticker-wrap {
	display: block;
	margin: 12px 0;
}
.dbk-sticker-wrap--center { text-align: center; }
.dbk-sticker-wrap--left   { text-align: left; }
.dbk-sticker-wrap--right  { text-align: right; }

.dbk-sticker-modal.components-modal__frame {
	max-width: 1150px;
	width: 90vw;
}

.dbk-sticker-modal .components-modal__content {
	padding: 20px;
}

/* -----------------------------------------
   13-1. 스티커 블록 인서터 아이콘 강조 (핵심 기능이라 다른 블록보다 크고 눈에 띄게)
   이 부분은 Gutenberg 인서터의 내부 DOM 구조에 의존하므로,
   워드프레스 버전에 따라 클래스명이 바뀌면 이 스타일이 안 먹힐 수 있음 (안전한 실패: 그냥 기본 크기로 보임).
   ----------------------------------------- */
.editor-block-list-item-decoblocks-sticker .block-editor-block-icon,
.block-editor-inserter__block-list .editor-block-list-item-decoblocks-sticker .block-editor-block-icon {
	width: 52px !important;
	height: 52px !important;
}
.editor-block-list-item-decoblocks-sticker .block-editor-block-icon svg {
	width: 48px !important;
	height: 48px !important;
}

/* -----------------------------------------
   14. 무료 버전 브랜딩 표기
   ----------------------------------------- */
.dbk-branding {
	font-size: 11px;
	color: #999;
	text-align: right;
	margin-top: 4px;
}
.dbk-branding a {
	color: #999;
}
