.qing-tg__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1023px) {
    .qing-tg__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .qing-tg__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Card */
.qing-tg__card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.qing-tg__card.qing-tg__item--hidden {
    display: none !important;
}

.qing-tg__img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.qing-tg__card:hover .qing-tg__img {
    transform: scale(1.08);
}

.qing-tg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

/* Play Button */
.qing-tg__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 110, 202, 0.95);
    color: #ffffff;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.qing-tg__play::before,
.qing-tg__play::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(25, 110, 202, 0.6);
    animation: qing-tg-ripple 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.qing-tg__play::after {
    animation-delay: 1.25s;
}

@keyframes qing-tg-ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.qing-tg__card:hover .qing-tg__play {
    background: #ffffff;
    color: #196eca;
    transform: translate(-50%, -50%) scale(1.15);
}

.qing-tg__play svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

/* Info */
.qing-tg__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.qing-tg__cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #196eca;
    margin: 0 0 0.25rem;
}

.qing-tg__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* More Button */
.qing-tg__more {
    text-align: center;
    margin-top: 3.5rem;
}

.qing-tg__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #0f1d2f;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
}

.qing-tg__more-btn:hover {
    background-color: #196eca;
}

.qing-tg__more-btn svg {
    width: 18px;
    height: 18px;
}

/* Lightbox */
.qing-tg__lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qing-tg__lightbox.open {
    opacity: 1;
    visibility: visible;
}

.qing-tg__lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.qing-tg__lightbox-close:hover {
    color: #ffffff;
}

.qing-tg__lightbox-close svg {
    width: 24px;
    height: 24px;
}

.qing-tg__lightbox-content {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.qing-tg__lightbox-iframe {
    width: 100%;
    height: 100%;
    display: block;
}
