/* Program lander pages — hero poster + layout */
.prog-hero {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  border-bottom: 1px solid #e5e5e7;
  padding: 56px 5%;
}

.prog-hero-in {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 300px) minmax(180px, 220px);
  gap: 32px;
  align-items: center;
}

.prog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f5ff;
  border: 1px solid #dde6ff;
  color: #1a3fad;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.prog-hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #1a1f36;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.prog-hero p {
  font-size: 15px;
  color: #6e6e73;
  max-width: 560px;
  line-height: 1.7;
}

.prog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.prog-meta span {
  background: #f5f5f7;
  color: #6e6e73;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.price-box {
  background: #f5f5f7;
  border: 1px solid #e5e5e7;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
}

.price-box .old {
  font-size: 13px;
  color: #6e6e73;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-box .price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a3fad;
}

.price-box .period {
  font-size: 12px;
  color: #6e6e73;
  margin-bottom: 16px;
}

.btn-kayit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #e8232a;
  color: #fff;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
  text-decoration: none;
  margin-bottom: 8px;
}

.btn-kayit:hover {
  background: #c8191f;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
  text-decoration: none;
}

.btn-share {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #e5e5e7;
  border-radius: 9px;
  background: #fff;
  color: #6e6e73;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}

.btn-share:hover {
  border-color: #1a3fad;
  color: #1a3fad;
}

.prog-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 5%;
}

.prog-body--intro {
  padding-top: 32px;
  padding-bottom: 0;
}

.prog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.prog-poster-feature--section {
  margin-bottom: 28px;
}

.prog-hero-poster {
  border-radius: 16px;
  overflow: hidden;
  background: #f0f5ff;
  border: 1px solid #e5e5e7;
  box-shadow: 0 12px 40px rgba(26, 63, 173, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.prog-hero-poster img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.prog-poster-feature {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e7;
  background: #f0f5ff;
  padding: 14px;
  text-align: center;
}

.prog-poster-feature img {
  max-width: 100%;
  width: min(100%, 480px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}

.prog-poster-feature--live {
  padding: 0;
  background: #0f172a;
  border: none;
  box-shadow: 0 16px 48px rgba(26, 63, 173, 0.14);
}

.prog-poster-feature--live img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin: 0;
}

@media (max-width: 960px) {
  .prog-hero-in {
    grid-template-columns: 1fr;
  }

  .prog-hero-poster {
    max-width: 340px;
    margin: 0 auto;
    order: -1;
  }

  .prog-hero-copy {
    order: 0;
  }

  .price-box {
    order: 1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}
