/* ==========================================================================
   UPCOMING CASTING CALLS
   Rebuilt to match the live production site (firstframecast.in) —
   the first draft of this section was fabricated since no source was
   provided; class names/colors/spacing below are the verified originals.
   ========================================================================== */

.vc-casting-calls-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 20px;
  background:
    radial-gradient(circle at left top, rgba(210, 180, 140, 0.1), transparent 30%),
    radial-gradient(circle at right bottom, rgba(139, 94, 60, 0.08), transparent 30%),
    #fdfbf8;
  overflow: hidden;
}

.vc-casting-calls-section * {
  box-sizing: border-box;
}

.vc-casting-calls-wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.vc-casting-calls-head {
  text-align: center;
  margin-bottom: 42px;
}

.vc-casting-calls-head .subtext {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8b5e3c;
  margin-bottom: 12px;
}

.vc-casting-calls-head h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 14px;
}

.vc-casting-calls-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #5e5e5e;
}

.vc-casting-calls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.vc-casting-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(139, 94, 60, 0.12);
  border-radius: 24px;
  padding: 24px 22px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 34px rgba(45, 30, 20, 0.06);
  backdrop-filter: blur(8px);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.vc-casting-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(45, 30, 20, 0.12);
  border-color: rgba(139, 94, 60, 0.26);
}

.vc-casting-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.vc-casting-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #8b5e3c;
  background: rgba(139, 94, 60, 0.1);
  border: 1px solid rgba(139, 94, 60, 0.14);
}

.vc-casting-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ece5;
  color: #8b5e3c;
  border: 1px solid rgba(139, 94, 60, 0.15);
}

.vc-casting-icon svg {
  width: 22px;
  height: 22px;
}

.vc-casting-card h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 10px;
}

.vc-casting-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5f5f5f;
  margin: 0 0 18px;
}

.vc-casting-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.vc-casting-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3f3f3f;
  line-height: 1.5;
}

.vc-casting-meta i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3ece5;
  color: #8b5e3c;
  font-style: normal;
}

.vc-casting-meta i svg {
  width: 14px;
  height: 14px;
}

.vc-casting-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: #1f1f1f;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: .3s;
}

.vc-casting-btn:hover {
  background: #8b5e3c;
  color: #ffffff;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .vc-casting-calls-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .vc-casting-calls-section {
    padding: 60px 16px;
  }

  .vc-casting-calls-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vc-casting-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .vc-casting-card h3 {
    font-size: 20px;
  }

  .vc-casting-calls-head p {
    font-size: 15px;
  }
}
