/* Main Grid Styling */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  padding: 20px;
  max-width: 1300px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Individual Video Card */
.video-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 1px solid #ddd;
}

.video-card:hover {
  transform: translateY(-8px);
}

/* Responsive Video Container (16:9 Aspect Ratio) */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video Info Styling */
.video-info {
  padding: 15px;
  text-align: center;
}

.video-info h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #002e5b; /* Navy Blue */
}

.yt-btn {
  display: inline-block;
  background-color: #ff0000; /* YouTube Red */
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
}

.yt-btn:hover {
  background-color: #cc0000;
}

