/* =============================================
   SK BUILDERS — Videos Page Styles
   ============================================= */

/* ── VIDEOS GRID ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── VIDEO CARD ── */
.video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Thumbnail */
.video-thumb {
  position: relative;
  height: 220px;
  background: var(--dark);
  overflow: hidden;
}

.video-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.25);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--dark-2);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
  opacity: 0.75;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
  margin-left: 4px;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.6);
}

/* Duration Badge */
.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 3px;
}

/* Info */
.video-info {
  padding: 18px 20px 22px;
}

.video-category {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.video-client {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ── NOTE ── */
.videos-note {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: var(--gray);
}

.videos-note a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
