.premium-internal-page {
  padding-top: clamp(22px, 4vw, 44px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

.premium-media-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
  margin-bottom: clamp(26px, 4.4vw, 54px);
  isolation: isolate;
}

.premium-media-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(9, 21, 42, 0.25), rgba(11, 79, 138, 0.1));
  z-index: 1;
  pointer-events: none;
}

.premium-media-hero::after {
  content: "";
  position: absolute;
  inset: -30% -12%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.24), transparent 42%);
  z-index: 2;
  pointer-events: none;
  animation: premiumGlow 8.5s ease-in-out infinite;
}

.premium-media-hero img {
  width: 100%;
  height: clamp(300px, 44vw, 510px);
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  animation: premiumKenBurns 15s ease-in-out infinite alternate;
}

.premium-content-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.11);
  padding: clamp(22px, 3.5vw, 42px);
}

.premium-page-title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 0.6rem;
}

.premium-page-subtitle {
  color: #35506b;
  font-size: clamp(1.14rem, 2vw, 1.36rem);
  margin-bottom: 1.35rem;
}

.premium-page-copy,
.premium-page-copy p,
.premium-page-copy li {
  color: #24384f;
  font-size: 1.14rem;
  line-height: 1.8;
}

.premium-page-copy ul,
.premium-page-copy ol {
  padding-left: 1.15rem;
}

.premium-page-quote {
  margin-top: 1.4rem;
  border-left: 4px solid #0b4f8a;
  padding: 0.5rem 0 0.5rem 1rem;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.18rem;
}

.premium-media-hero--document {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.premium-media-hero--document img {
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: none;
  animation: none;
}

.premium-contact-panel {
  max-width: 900px;
}

.premium-contact-panel h2 {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
}

.premium-contact-panel .form-label,
.premium-contact-panel .alert,
.premium-contact-panel .form-control,
.premium-contact-panel .btn {
  font-size: 1.05rem;
}

@keyframes premiumKenBurns {
  from { transform: scale(1.03) translateY(0); }
  to { transform: scale(1.09) translateY(-6px); }
}

@keyframes premiumGlow {
  0%, 100% { transform: translateX(-1%) translateY(0); opacity: 0.42; }
  50% { transform: translateX(2%) translateY(-2%); opacity: 0.62; }
}

@media (max-width: 768px) {
  .premium-media-hero {
    border-radius: 18px;
  }

  .premium-content-panel {
    border-radius: 16px;
    padding: 1.2rem 1rem;
  }
}
