.whs-slideshow {
	position: relative;
	overflow: hidden;
}

.whs-slide-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
}

.whs-slide-img.whs-active {
	opacity: 1;
}

.whs-slide-img.whs-anim-zoom-in.whs-active { animation: whsZoomIn var(--whs-dur, 4s) ease forwards; }
.whs-slide-img.whs-anim-zoom-out.whs-active { animation: whsZoomOut var(--whs-dur, 4s) ease forwards; }
.whs-slide-img.whs-anim-slide-left.whs-active { animation: whsSlideLeft var(--whs-dur, 4s) ease forwards; }
.whs-slide-img.whs-anim-slide-right.whs-active { animation: whsSlideRight var(--whs-dur, 4s) ease forwards; }
.whs-slide-img.whs-anim-ken-burns.whs-active { animation: whsKenBurns var(--whs-dur, 4s) ease forwards; }

@keyframes whsZoomIn    { from { transform: scale(1); }             to { transform: scale(1.15); } }
@keyframes whsZoomOut   { from { transform: scale(1.15); }          to { transform: scale(1); } }
@keyframes whsSlideLeft { from { transform: translateX(4%); }       to { transform: translateX(0); } }
@keyframes whsSlideRight{ from { transform: translateX(-4%); }      to { transform: translateX(0); } }
@keyframes whsKenBurns  { from { transform: scale(1) translate(3%,2%); } to { transform: scale(1.1) translate(-2%,-1%); } }

.whs-overlay-text {
	position: absolute;
	width: 100%;
	padding: 14px 20px;
	line-height: 1.3;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0,0,0,0.9);
	background-color: rgba(0,0,0,0.6);
	z-index: 5;
	box-sizing: border-box;
}

.whs-pos-top-left      { top: 0;    left: 0;    text-align: left; }
.whs-pos-top-center    { top: 0;    left: 50%;  transform: translateX(-50%); text-align: center; }
.whs-pos-top-right     { top: 0;    right: 0;   text-align: right; }
.whs-pos-middle-left   { top: 50%;  left: 0;    transform: translateY(-50%); text-align: left; }
.whs-pos-middle-center { top: 38%;  left: 0%;  text-align: center; }
.whs-pos-middle-right  { top: 50%;  right: 0;   transform: translateY(-50%); text-align: right; }
.whs-pos-bottom-left   { bottom: 0; left: 0;    text-align: left; }
.whs-pos-bottom-center { bottom: 0; left: 0%;   text-align: center; }
.whs-pos-bottom-right  { bottom: 0; right: 0;   text-align: right; }

/* Admin meta box editing UI */
.whs-card {
	border: 1px solid #ccd0d4;
	background: #fff;
	border-radius: 4px;
	padding: 14px;
	margin-bottom: 14px;
}

.whs-card-top {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 10px;
}

.whs-thumb {
	width: 140px;
	height: 90px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #f0f0f1;
}

.whs-thumb-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	font-size: 12px;
}

.whs-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-content: flex-start;
}

.whs-card label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #555;
}

.whs-card textarea.whs-text {
	width: 100%;
	margin-bottom: 10px;
}

.whs-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
