/* Responsive grid layout */
.clare-watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 20px 0;
}
@media (max-width: 900px) {
  .clare-watch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .clare-watch-grid {
    grid-template-columns: 1fr;
  }
}

/* Video container with fixed 16:9 aspect ratio */
.clare-watch-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
}
.clare-watch-thumb,
.clare-watch-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.clare-watch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clare-watch-preview iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Sound button styling */
.clare-watch-sound-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.9em;
}

/* Info section for title and watch link */
.clare-watch-info {
  margin-top: 5px;
  text-align: left;
}
.clare-watch-title {
  font-size: 1em;
  margin: 0;
}
.clare-watch-link {
  font-size: 0.9em;
  text-decoration: none;
  background: #f5f5f5;
  padding: 0.2em 0.7em 0.2em 0.7em;
  display: inline-block;
}
.clare-watch-link:hover {
  text-decoration: underline;
}

/* Lightbox modal styles */
#clare-watch-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#clare-watch-lightbox-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
}
#clare-watch-lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 1100;
}
