/* YouTube Screenshot Block - Frontend Styles */

.yt-screenshot-block .yt-screenshot-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.yt-screenshot-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.yt-screenshot-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Play-Button Styling */
.yt-screenshot-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Hover-Effekte */
.yt-screenshot-link:hover .yt-screenshot-play-icon {
    opacity: 1;
    /*transform: translate(-50%, -50%) scale(1.1);*/
}

/*.yt-screenshot-link:hover .yt-screenshot-wrapper img {
    transform: scale(1.02);
}*/

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .yt-screenshot-play-icon {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .yt-screenshot-play-icon {
        width: 50px;
    }
}

/* Caption Styling */
.yt-screenshot-block .wp-element-caption {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.yt-screenshot-block .wp-element-caption a {
    color: #1e73be;
    text-decoration: none;
    transition: color 0.2s ease;
}

.yt-screenshot-block .wp-element-caption a:hover {
    color: #f00;
    text-decoration: underline;
}