.data_info {
    position: relative;
    overflow: hidden;
    min-height: 20vh;
    padding-top: 14px;
    display: flex;
    align-items: center;
    background: var(--bg3);
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
}
.data_info h3 {
	padding: 20px;
	width: 100%;
	text-align: center;
}
.data_info_smallinfo{
	display: flex;
	width: 70%;
	justify-content: space-around;
    flex-wrap: wrap;
}
.copyright-notification{
	min-height: 9vh;
    padding-top: 5px;
    display: flex;
    align-items: center;
    background: var(--orange);
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
}
.tags-list{
	padding-top: 10px;
	display: flex;
	width: 70%;
	justify-content: center;
	margin-bottom: 3px;
}

.gallery {
	--gap: 6px;
	--radius: 4px;
	--row-height: 300px;
}

.gallery__grid {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}

.gallery__row {
	display: flex;
	gap: var(--gap);
}

.gallery__skeleton {
	width: 100%;
	border-radius: var(--radius);
	background: #1c1c1c;
	animation: sk 1.6s ease infinite;
}

@keyframes sk { 0%,100% {
	background: #1c1c1c;
}50%{
	background:#2a2a2a;
}
}
.gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background: #1c1c1c;
	cursor: pointer;
	flex-shrink: 0;
}

.gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery__item:hover img {
	transform: scale(1.04);
	filter: brightness(0.8);
}

.gallery__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent
		50%);
	opacity: 0;
	transition: opacity 0.22s ease;
	pointer-events: none;
}

.gallery__item:hover .gallery__overlay {
	opacity: 1;
}

.gallery__download {
	display: flex; 
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.52);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	text-decoration: none;
	opacity: 0;
	transform: translateY(5px) scale(0.88);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease, visibility 0.2s;
}

.gallery__item:hover .gallery__download {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.gallery__download:hover {
	background: rgba(0, 0, 0, 0.78);
}

.gallery__download svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.gallery__lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.93);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.gallery__lightbox.is-open {
	opacity: 1;
	pointer-events: all;
}

.gallery__lightbox img {
	max-width: 92vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 3px;
	transform: scale(0.95);
	transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.gallery__lightbox.is-open img {
	transform: scale(1);
}

.gallery__lb-close {
	position: absolute;
	top: 18px;
	right: 22px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.65);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.15s;
}

.gallery__lb-close:hover {
	color: #fff;
}

.gallery__lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	transition: background 0.15s;
	z-index: 999;
}

.gallery__lb-nav:hover {
	background: rgba(255, 255, 255, 0.16);
}

.gallery__lb-nav--prev {
	left: 18px;
}

.gallery__lb-nav--next {
	right: 18px;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .2s;
}

.video-thumbnail:hover .thumbnail-img {
    opacity: .85;
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform .15s;
}

.play-btn svg {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    border-radius: 10px;
}

.video-title {
    font-size: .9rem;
    margin: 0;
    color: var(--text-secondary, #888);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media ( max-width : 600px) {
	.gallery {
		--row-height: 180px;
	}
}