.box-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.box-col.f-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.box-col.f-video:hover {
    transform: translateY(-5px);
}

/* Shorts specific styles */
.shorts-video .shorts-container {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.shorts-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Common styles */
.image .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image:hover .info {
    opacity: 1;
}

.info .icon {
    color: #fff;
    font-size: 24px;
}

.desc {
    padding: 15px;
    background: #fff;
}

.category {
    font-size: 12px;
    color: #ff0000;
    margin-bottom: 5px;
}

.name {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
}