/* BASIC css start */
.shorts { width: 1400px; margin: auto; }
.shorts .sec-head { align-items: center; justify-content: space-between; padding-bottom: 20px; }
.shorts .sec-title { font-weight: 600; font-size: 24px; line-height: 30px; color: #111; text-align: center; padding: 64px 0 40px 0; }

.charlla-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.charlla-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #000;
	cursor: pointer;
}
.charlla-item::before {
	content: '';
	display: block;
	padding-top: 177.78%;
}
.charlla-item iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: none;
}
.charlla-item .charlla-thumb-video {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	background: #222;
}
.charlla-item .charlla-play-btn {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 60px; height: 60px;
	background: rgba(255,255,255,0.85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: transform 0.2s;
}
.charlla-item:hover .charlla-play-btn {
	transform: translate(-50%, -50%) scale(1.1);
}
.charlla-item .charlla-play-btn::after {
	content: '';
	width: 0; height: 0;
	border-style: solid;
	border-width: 12px 0 12px 22px;
	border-color: transparent transparent transparent #333;
	margin-left: 4px;
}

.charlla-paging {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin: 30px 0 60px;
}
.charlla-paging a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 13px;
	color: #666;
	text-decoration: none;
}
.charlla-paging a:hover {
	border-color: #333;
	color: #333;
}
.charlla-paging a.active {
	background: #333;
	border-color: #333;
	color: #fff;
}
/* BASIC css end */

