/* masterclass css */
.masterclasses-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0A2647 0%, #144272 100%);
  color: white;
}

.masterclasses-container {
  max-width: 1200px;
  margin: 0 auto;
}

.masterclass-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.masterclass-text {
  text-align: left;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: white;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}

.company-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.company-logo {
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
}

.masterclass-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.masterclass-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cta-button {
  margin-top: 32px;
}

.request-callback {
  display: inline-block;
  background-color: #0A2647;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.request-callback:hover {
  background-color: #001c3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
  .masterclass-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
  }

  .company-logos {
    gap: 24px;
  }

  .company-logo {
    height: 28px;
  }

  .masterclass-video {
    order: -1;
  }
} 