.video-section {
  padding: 70px 0;
  background: #f8fbff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #0d3b66;
  font-weight: 700;
}

.section-title p {
  color: #555;
  margin-top: 10px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 15px;
}

.video-info h3 {
  font-size: 18px;
  color: #0d3b66;
}

.video-info p {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

.load-more {
  text-align: center;
  margin-top: 40px;
}

.load-more button {
  padding: 12px 28px;
  border: none;
  background: #0d3b66;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.load-more button:hover {
  background: #145da0;
}

/* Responsive */
@media(max-width: 1200px){
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 900px){
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.video-section {
  padding: 80px 0;
  background: #f4f9fd;
}

.video-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;   /* 👈 kengroq bo‘shliq */
}

@media (max-width: 768px) {
  .video-section .container {
    padding: 0 20px;
  }
}




.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe,
.video-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: 18px;
}

.video-info h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

/* INSTAGRAM */
.insta-thumb {
  position: relative;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: .3s;
}

.insta-overlay i {
  font-size: 32px;
  margin-bottom: 8px;
}

.insta-thumb:hover .insta-overlay {
  background: rgba(0,0,0,.65);
}