/* =========================
   SCRIPTS PAGE
========================= */

.scripts-hero {
  text-align: center;
  margin: 5rem auto 4rem;
  max-width: 800px;
}

.scripts-hero h1 {
  font-size: 2.4rem;
  color: #ff7a00;
  margin-bottom: 1rem;
}

.scripts-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

/* =========================
   GRID
========================= */

.scripts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.script-card {
  background: rgba(0,0,0,0.65);
  border-radius: 20px;
  overflow: hidden;

  box-shadow:
    0 0 30px rgba(255,122,0,0.15);

  transition: transform .35s ease, box-shadow .35s ease;
}

.script-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 45px rgba(255,122,0,0.45);
}

.script-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.script-card h3 {
  margin: 1rem 1.2rem .4rem;
  color: #ff7a00;
}

.script-card p {
  margin: 0 1.2rem 1.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
