.tbm-wrap {
	max-width: 1140px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

.tbm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 28px;
}

.tbm-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.tbm-btn {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 6px;
	background: #f1f1f1;
	color: #222;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid #ddd;
	cursor: pointer;
}

.tbm-btn-primary {
	background: #227bc3;
	border-color: #227bc3;
	color: #fff;
}

.tbm-btn-small {
	padding: 6px 12px;
	font-size: 13px;
}

.tbm-btn-danger {
	background: #fdecea;
	border-color: #f5c2c0;
	color: #b3261e;
}

.tbm-toast {
	position: fixed;
	top: 28px;
	right: 28px;
	z-index: 9999;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	width: 400px;
	max-width: calc(100vw - 40px);
	padding: 20px 44px 24px 20px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 24px 48px rgba(17, 24, 39, 0.16), 0 4px 12px rgba(17, 24, 39, 0.08);
	overflow: hidden;
	opacity: 0;
	transform: translate(24px, -8px) scale(0.94);
	transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tbm-toast.is-visible {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.tbm-toast::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 5px;
}

.tbm-toast-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tbm-toast-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-top: 3px;
}

.tbm-toast-title {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
}

.tbm-toast-message {
	font-size: 13.5px;
	line-height: 1.5;
	color: #6b7280;
}

.tbm-toast-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #9ca3af;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.tbm-toast-close:hover {
	background: #f3f4f6;
	color: #374151;
}

.tbm-toast-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: rgba(17, 24, 39, 0.06);
}

.tbm-toast-progress-bar {
	display: block;
	height: 100%;
	width: 100%;
	animation: tbm-toast-shrink 4000ms linear forwards;
}

.tbm-toast.is-paused .tbm-toast-progress-bar {
	animation-play-state: paused;
}

@keyframes tbm-toast-shrink {
	from {
		width: 100%;
	}
	to {
		width: 0%;
	}
}

.tbm-toast-success::before {
	background: #22c55e;
}

.tbm-toast-success .tbm-toast-icon {
	background: #22c55e;
}

.tbm-toast-success .tbm-toast-progress-bar {
	background: #22c55e;
}

.tbm-toast-error::before {
	background: #ef4444;
}

.tbm-toast-error .tbm-toast-icon {
	background: #ef4444;
}

.tbm-toast-error .tbm-toast-progress-bar {
	background: #ef4444;
}

@media (max-width: 480px) {
	.tbm-toast {
		top: auto;
		bottom: 20px;
		right: 16px;
		left: 16px;
		width: auto;
	}
}

.tbm-carousel {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 40px;
	height: 420px;
	background: #222;
}

.tbm-carousel-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.tbm-carousel-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.8s ease;
}

.tbm-carousel-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.tbm-carousel-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.5);
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, transform 0.15s ease;
}

.tbm-carousel-nav svg {
	stroke: #fff !important;
}

.tbm-carousel-nav:hover {
	background: rgba(255, 255, 255, 0.32);
	color: #fff !important;
}

.tbm-carousel-nav:active {
	transform: translateY(-50%) scale(0.92);
}

.tbm-carousel-prev {
	left: 16px;
}

.tbm-carousel-next {
	right: 16px;
}

.tbm-carousel-dots {
	position: absolute;
	z-index: 2;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}

.tbm-carousel-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: background 0.15s ease, width 0.2s ease;
}

.tbm-carousel-dot.is-active {
	background: #fff;
	width: 20px;
	border-radius: 4px;
}

.tbm-featured-thumb {
	position: absolute;
	inset: 0;
	display: block;
}

.tbm-featured-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tbm-featured-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.8) 100%);
	pointer-events: none;
}

.tbm-featured-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 32px;
	padding-bottom: 44px;
	height: 100%;
	justify-content: flex-end;
	color: #fff;
}

.tbm-featured-label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #e6e6e6;
}

.tbm-featured-title {
	margin: 0;
	font-size: 34px;
	line-height: 1.25;
	font-weight: 700;
}

.tbm-featured-title a {
	color: #fff;
	text-decoration: none;
}

.tbm-featured-excerpt {
	margin: 0;
	max-width: 640px;
	font-size: 15px;
	line-height: 1.6;
	color: #e6e6e6;
}

@media (max-width: 640px) {
	.tbm-carousel {
		height: 320px;
	}

	.tbm-featured-content {
		padding: 22px;
		padding-bottom: 38px;
	}

	.tbm-featured-title {
		font-size: 24px;
	}

	.tbm-carousel-nav {
		width: 34px;
		height: 34px;
	}

	.tbm-carousel-prev {
		left: 10px;
	}

	.tbm-carousel-next {
		right: 10px;
	}
}

.tbm-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.tbm-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.tbm-grid {
		grid-template-columns: 1fr;
	}
}

.tbm-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tbm-card:hover {
	background-color: #f5f9fc;
	border-color: #227bc3;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
	transform: translateY(-3px);
}

.tbm-card:hover .tbm-card-title a {
	color: #227bc3;
}

.tbm-card-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f3f3f3;
}

.tbm-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tbm-card:hover .tbm-card-thumb img {
	transform: scale(1.08);
}

.tbm-card-thumb-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8f1f8, #f3f3f3);
}

.tbm-card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.tbm-card-title {
	font-size: 17px;
	margin: 0;
	line-height: 1.35;
}

.tbm-card-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tbm-card-excerpt {
	font-size: 14px;
	color: #555;
	margin: 0;
	flex: 1;
}

.tbm-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}

.tbm-card-avatar {
	border-radius: 50%;
	width: 32px;
	height: 32px;
}

.tbm-card-meta-text {
	font-size: 13px;
	color: #666;
}

.tbm-card-admin-actions {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.tbm-pagination {
	margin-top: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.tbm-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 8px;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #fff;
	text-decoration: none;
	color: #374151;
	font-size: 14px;
	font-weight: 600;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tbm-pagination a.page-numbers:hover {
	border-color: #227bc3;
	color: #227bc3;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(34, 123, 195, 0.18);
}

.tbm-pagination .page-numbers.current {
	background: linear-gradient(135deg, #2b8ade, #1c5f96);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 20px rgba(34, 123, 195, 0.35);
}

.tbm-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	color: #9ca3af;
	box-shadow: none;
}

.tbm-pagination .page-numbers.prev,
.tbm-pagination .page-numbers.next {
	background: #f3f4f6;
	color: #4b5563;
}

.tbm-pagination .page-numbers.prev svg,
.tbm-pagination .page-numbers.next svg {
	stroke: currentColor;
	display: block;
}

@media (max-width: 480px) {
	.tbm-pagination .page-numbers {
		min-width: 36px;
		height: 36px;
		font-size: 13px;
	}
}

.tbm-empty {
	color: #777;
	font-size: 15px;
}

.tbm-form-wrap {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 18px;
	padding: 36px;
	max-width: 100%;
	box-shadow: 0 4px 20px rgba(17, 24, 39, 0.05);
}

.tbm-form-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid #f0f0f0;
}

.tbm-form-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	text-decoration: none;
	transition: color 0.15s ease;
}

.tbm-form-back:hover {
	color: #227bc3;
}

.tbm-form-heading {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	color: #111827;
}

.tbm-form-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 36px;
	align-items: start;
}

@media (max-width: 900px) {
	.tbm-form-grid {
		grid-template-columns: 1fr;
	}
}

.tbm-form-main {
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
}

.tbm-form-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 24px;
}

.tbm-field {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.tbm-field label {
	font-weight: 600;
	font-size: 14px;
	color: #374151;
}

.tbm-field input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 14px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tbm-field input[type="text"]:focus {
	outline: none;
	border-color: #227bc3;
	box-shadow: 0 0 0 3px rgba(34, 123, 195, 0.15);
}

.tbm-field-title {
	margin-bottom: 28px;
}

.tbm-field-title input[type="text"] {
	padding: 14px 16px;
	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	border-radius: 10px;
}

.tbm-sidebar-card {
	background: #f9fafb;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 20px;
}

.tbm-sidebar-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: #111827;
	margin-bottom: 4px;
}

.tbm-sidebar-hint {
	font-size: 12.5px;
	line-height: 1.5;
	color: #6b7280;
	margin: 0 0 14px;
}

.tbm-image-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 150px;
	border: 1.5px dashed #d1d5db;
	border-radius: 10px;
	color: #9ca3af;
	font-size: 13px;
	margin-bottom: 14px;
	background: #fff;
}

.tbm-current-thumb {
	margin-bottom: 14px;
}

.tbm-current-thumb img {
	width: 100%;
	max-width: none;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	margin-bottom: 0;
}

.tbm-file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
}

.tbm-upload-btn {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.tbm-file-name {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	color: #6b7280;
	text-align: center;
	word-break: break-all;
}

.tbm-sidebar-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #fff;
}

.tbm-btn-block {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 12px 18px;
}

.tbm-form-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.tbm-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(17, 24, 39, 0.55);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.tbm-modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.tbm-modal {
	width: 400px;
	max-width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 32px;
	text-align: left;
	box-shadow: 0 30px 60px rgba(17, 24, 39, 0.25);
	transform: scale(0.92) translateY(12px);
	opacity: 0;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.tbm-modal-overlay.is-open .tbm-modal {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.tbm-modal-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: #fde2e2;
	color: #e11d48;
}

.tbm-modal-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.tbm-modal-desc {
	margin: 0 0 28px;
	font-size: 14px;
	line-height: 1.6;
	color: #6b7280;
}

.tbm-modal-desc span {
	color: #374151;
	font-weight: 600;
}

.tbm-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.tbm-modal-actions .tbm-btn {
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 14px;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.tbm-modal-actions .tbm-btn:active {
	transform: scale(0.97);
}

.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-cancel,
.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-cancel:visited {
	background-color: #fff !important;
	border-color: #d1d5db !important;
	color: #374151 !important;
}

.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-cancel:hover,
.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-cancel:focus-visible {
	background-color: #374151 !important;
	border-color: #374151 !important;
	color: #fff !important;
}

.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-cancel:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(55, 65, 81, 0.25);
}

.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-confirm,
.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-confirm:visited {
	background-color: #e11d48 !important;
	border-color: #e11d48 !important;
	color: #fff !important;
}

.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-confirm:hover,
.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-confirm:focus-visible {
	background-color: #9f1239 !important;
	border-color: #9f1239 !important;
	color: #fff !important;
}

.tbm-modal-overlay .tbm-modal-actions .tbm-btn.tbm-modal-confirm:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.3);
}

.tbm-single-wrap {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px 80px;
}

.tbm-single-hero {
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0;
	margin-bottom: 36px;
	aspect-ratio: 16 / 9;
	max-height: 560px;
	background: #222;
}

.tbm-single-hero-thumb {
	position: absolute;
	inset: 0;
	display: block;
}

.tbm-single-hero-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.tbm-single-hero-back {
	position: absolute;
	top: 20px;
	left: 36px;
	z-index: 2;
	width: fit-content;
	padding: 9px 16px 9px 12px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.45);
	backdrop-filter: blur(4px);
	color: #fff;
}

.tbm-single-hero-back:hover {
	background: rgba(17, 24, 39, 0.68);
	color: #fff;
}

.tbm-single-hero-back svg {
	stroke: #fff;
}

@media (max-width: 640px) {
	.tbm-single-hero-back {
		top: 14px;
		left: 20px;
		padding: 7px 14px 7px 10px;
		font-size: 12px;
	}
}

.tbm-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.82) 100%);
	pointer-events: none;
}

.tbm-single-hero-content {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 36px;
	max-width: 820px;
	margin: 0 auto;
	justify-content: flex-end;
	color: #fff;
}

.tbm-single-title {
	margin: 0;
	font-size: 34px;
	line-height: 1.28;
	font-weight: 700;
	color: #fff !important;
}

.tbm-single-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 2px;
}

.tbm-single-meta-text {
	font-size: 13.5px;
	color: #e6e6e6;
}

@media (max-width: 640px) {
	.tbm-single-hero {
		aspect-ratio: 4 / 3;
		max-height: 420px;
	}

	.tbm-single-hero-content {
		padding: 22px;
	}

	.tbm-single-title {
		font-size: 24px;
	}
}

.tbm-single-content {
	font-size: 16px;
	line-height: 1.85;
	color: #333;
}

.tbm-single-content p {
	margin: 0 0 20px;
}

.tbm-single-content h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
	margin: 36px 0 16px;
	color: #111827;
}

.tbm-single-content h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	margin: 28px 0 14px;
	color: #111827;
}

.tbm-single-content ul,
.tbm-single-content ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.tbm-single-content li {
	margin-bottom: 8px;
}

.tbm-single-content li strong {
	color: #111827;
}

.tbm-single-content a {
	color: #227bc3;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tbm-single-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	margin: 8px 0 20px;
	display: block;
}

/* Dukungan class alignment bawaan WordPress (dipilih lewat toolbar gambar
   di editor), supaya tidak tertimpa margin default img di atas. */
.tbm-single-content .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.tbm-single-content .alignleft {
	float: left;
	margin: 6px 20px 16px 0;
}

.tbm-single-content .alignright {
	float: right;
	margin: 6px 0 16px 20px;
}

.tbm-single-content .alignnone {
	margin: 8px 0 20px;
}

.tbm-single-content .wp-caption {
	max-width: 100%;
}

.tbm-single-content .wp-caption.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.tbm-single-content .wp-caption img {
	margin: 0;
}

.tbm-single-content .wp-caption-text {
	text-align: center;
	font-size: 13px;
	color: #6b7280;
	margin-top: 8px;
}

.tbm-single-content blockquote {
	margin: 24px 0;
	padding: 16px 20px;
	border-left: 4px solid #227bc3;
	background: #f5f9fc;
	color: #444;
	font-style: italic;
	border-radius: 0 8px 8px 0;
}

.tbm-single-footer {
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

/* Modal crop gambar unggulan */
.tbm-crop-modal {
	width: 560px;
}

.tbm-crop-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 10px;
	background: #111;
	margin-bottom: 18px;
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.tbm-crop-frame.is-dragging {
	cursor: grabbing;
}

.tbm-crop-frame img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	max-height: none;
	will-change: transform;
	pointer-events: none;
	transform-origin: 0 0;
}

.tbm-crop-frame-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
	background-size: 33.333% 33.333%;
}

.tbm-crop-zoom-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}

.tbm-crop-zoom-row svg {
	flex-shrink: 0;
	color: #6b7280;
}

.tbm-crop-zoom {
	flex: 1;
	accent-color: #227bc3;
}

.tbm-crop-hint {
	margin: 0 0 20px;
	font-size: 12.5px;
	line-height: 1.5;
	color: #6b7280;
}

@media (max-width: 600px) {
	.tbm-crop-modal {
		width: 100%;
	}
}
