/* ================================
   SECTION 1 – HERO
================================ */

.pr-hero {
  /* background: linear-gradient(180deg,
            rgba(0, 73, 255, 0.08),
            rgba(0, 73, 255, 0.02)); */
}

.pr-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.35);
}

.pr-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin-top: 15px;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.35);
}

/* ================================
   SECTION 2 – MEDIA STRIP (RED)
================================ */

.pr-media-strip {
  position: relative;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #fff5f5 40%,
      #ffecec 100%);
  overflow: hidden;
}

/* Top red glow divider */
.pr-media-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 130px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at top,
      rgba(239, 68, 68, 0.18),
      transparent 70%);
  pointer-events: none;
}

/* Subtle background texture */
.pr-media-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 15% 25%,
      rgba(255, 255, 255, 0.7),
      transparent 70%),
    radial-gradient(35% 30% at 85% 60%,
      rgba(239, 68, 68, 0.06),
      transparent 70%);
  pointer-events: none;
}

/* Logo container */
.pr-media-logos {}

/* Individual logo card */
.pr-media-logo {
  padding: 22px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pr-media-logo img {
  max-height: 64px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.pr-media-logo:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.pr-media-logo:hover img {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* ================================
   SECTION 3 – PR ARTICLES
================================ */

.pr-articles-section {
  position: relative;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f8fafc 35%,
      #f1f5ff 100%);
  overflow: hidden;
}

/* Top blue glow */
.pr-articles-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 140px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at top,
      rgba(79, 124, 255, 0.18),
      transparent 70%);
  pointer-events: none;
}

/* Subtle texture */
.pr-articles-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 20% 20%,
      rgba(255, 255, 255, 0.6),
      transparent 70%),
    radial-gradient(35% 30% at 80% 60%,
      rgba(79, 124, 255, 0.06),
      transparent 70%);
  pointer-events: none;
}

/* Header */
.pr-articles-header {
  margin-bottom: 48px;
}

.pr-articles-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
}

.pr-articles-subtitle {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #64748b;
}

.pr-articles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.pr-articles-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 50% 0%,
      rgba(79, 124, 255, 0.08),
      transparent 70%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .pr-articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pr-articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .pr-articles-grid {
    grid-template-columns: 1fr;
  }
}

.pr-article-card {
  text-decoration: none;
  display: block;
}

.pr-article-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pr-article-card:hover .pr-article-media {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.pr-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-article-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0));
}

.pr-article-outlet {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f9fafb;
}

.pr-article-year {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.pr-article-cta {
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ================================
   SECTION 4 – CTA
================================ */

.pr-cta {
  position: relative;
  background: linear-gradient(180deg,
      #fffbeb 0%,
      #fef3c7 45%,
      #fde68a 100%);
  overflow: hidden;
}

/* Liquid glow effect */
.pr-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 30% 30%,
      rgba(255, 255, 255, 0.7),
      transparent 70%),
    radial-gradient(50% 35% at 75% 65%,
      rgba(251, 191, 36, 0.25),
      transparent 70%);
  pointer-events: none;
}

/* Animated floating orbs */
.pr-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%,
      rgba(252, 211, 77, 0.15),
      transparent 25%),
    radial-gradient(circle at 80% 30%,
      rgba(251, 191, 36, 0.12),
      transparent 25%);
  animation: float-orbs 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-orbs {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, -15px);
  }
}

.pr-cta-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #111827;
  position: relative;
  z-index: 1;
}

.pr-cta-text {
  font-size: 1.05rem;
  color: #374151;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  line-height: 1.65;
}

/* ================================
   GLASSY LIQUID BUTTON
================================ */

.pr-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;

  /* Glassy blue background */
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.85),
      rgba(37, 99, 235, 0.9));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  border: 1.5px solid rgba(147, 197, 253, 0.4);
  border-radius: 50px;

  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;

  box-shadow:
    0 8px 24px rgba(59, 130, 246, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  overflow: hidden;
}

/* Liquid shine effect */
.pr-cta-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.pr-cta-button:hover::before {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Hover state */
.pr-cta-button:hover {
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.9),
      rgba(29, 78, 216, 0.95));
  border-color: rgba(147, 197, 253, 0.6);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(59, 130, 246, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  color: #fde68a
}

/* Active/pressed state */
.pr-cta-button:active {
  transform: translateY(-1px) scale(0.98);
  background: linear-gradient(135deg,
      rgba(29, 78, 216, 0.95),
      rgba(30, 64, 175, 1));
  box-shadow:
    0 6px 16px rgba(59, 130, 246, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Button text */
.pr-cta-button-text {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Arrow icon */
.pr-cta-button-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.pr-cta-button:hover .pr-cta-button-icon {
  transform: translateX(4px);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .pr-cta-title {
    font-size: 1.9rem;
  }

  .pr-cta-text {
    font-size: 0.95rem;
  }

  .pr-cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pr-cta-title {
    font-size: 1.6rem;
  }

  .pr-cta-text {
    font-size: 0.9rem;
  }

  .pr-cta-button {
    padding: 11px 22px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .pr-cta-button-icon {
    width: 14px;
    height: 14px;
  }
}