/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.1
*/

/* Inherit parent */
@import url("../twentytwentyfive/style.css");

/* Video Gallery Grid */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Artwork Page */
.video-artwork-page {
  text-align: center;
  padding: 2rem 1rem;
}

.video-artwork-page h2 {
  margin-bottom: 1.5rem;
}

.video-artwork-page .wp-block-video {
  max-width: 100%;
  margin: 0 auto 2rem auto;
}

.back-to-gallery {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.back-to-gallery:hover {
  background: #444;
}
