/* ===== BREADCRUMB ===== */
.pp-breadcrumb {
  background: var(--navy-mid);
  padding: 0.75rem 2rem;
  margin-top: 68px;
}

.pp-breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.pp-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.pp-breadcrumb a:hover { color: var(--gold); }

.pp-breadcrumb i {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
}

.pp-breadcrumb span {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ===== SHARED INNER ===== */
.pp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== PRODUCT HERO ===== */
.pp-hero {
  background: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.pp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 860px) {
  .pp-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.pp-hero-img-wrap {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  min-height: 300px;
}

.pp-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.pp-hero-desc {
  font-size: 1.05rem;
  color: #5a6a85;
  line-height: 1.75;
}

.pp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

/* ===== SHARED SECTION ===== */
.pp-section {
  padding: 5rem 2rem;
}

.pp-why { background: var(--light); }
.pp-install { background: #fff; }
.pp-gallery-section { background: var(--navy); }
.pp-specs-section { background: var(--light); }

/* ===== WHY CARDS ===== */
.pp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pp-why-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.pp-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11,31,58,0.08);
}

.pp-why-icon {
  width: 48px; height: 48px;
  background: rgba(249,115,22,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pp-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pp-why-card p {
  font-size: 0.9rem;
  color: #6b7a99;
  line-height: 1.6;
}

/* ===== INSTALL STEPS ===== */
.pp-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid #f0f4f8;
  position: relative;
}

.pp-step:last-child { border-bottom: none; }

.pp-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  margin-top: 2px;
}

.pp-step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.pp-step-content p {
  font-size: 0.92rem;
  color: #6b7a99;
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.pp-gallery-section .section-tag { color: var(--gold); }
.pp-gallery-section .section-title { color: #fff; }
.pp-gallery-section .section-title span { color: var(--gold); }
.pp-gallery-section .section-desc { color: rgba(255,255,255,0.55); }

.pp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.pp-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.pp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.pp-gallery-item:hover img { transform: scale(1.04); }

.pp-gallery-placeholder {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

.pp-gallery-placeholder i { font-size: 2rem; }

/* ===== SPECS TABLE ===== */
.pp-specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11,31,58,0.06);
}

.pp-specs th,
.pp-specs td {
  padding: 1rem 1.5rem;
  text-align: right;
  border-bottom: 1px solid #f0f4f8;
  font-size: 0.95rem;
}

.pp-specs th {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  width: 200px;
}

.pp-specs td {
  color: var(--text);
}

.pp-specs tr:last-child th,
.pp-specs tr:last-child td { border-bottom: none; }

/* ===== VIDEO SECTION ===== */
.pp-video-section {
  background: linear-gradient(160deg, #070f1e 0%, #0b1f3a 50%, #0e1a30 100%);
  position: relative;
  overflow: hidden;
}

.pp-video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,   rgba(249,115,22,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 100%, rgba(249,115,22,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pp-video-section .section-tag  { color: var(--gold); }
.pp-video-section .section-title { color: #fff; }
.pp-video-section .section-title span { color: var(--gold); }
.pp-video-section .section-desc  { color: rgba(255,255,255,0.5); }

.pp-video-wrap {
  position: relative;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* layered glow blob behind the video */
.pp-video-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 130%;
  background: radial-gradient(ellipse at center,
    rgba(249,115,22,0.35) 0%,
    rgba(249,115,22,0.10) 35%,
    transparent 70%
  );
  filter: blur(48px);
  border-radius: 50%;
  pointer-events: none;
  animation: videoGlowPulse 4s ease-in-out infinite;
}

@keyframes videoGlowPulse {
  0%, 100% { opacity: 1;   transform: translate(-50%, -50%) scale(1);    }
  50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.08); }
}

.pp-video-frame {
  position: relative;
  width: 100%;
  max-width: 860px;
  border-radius: 20px;
  overflow: hidden;
  /* golden animated border via box-shadow */
  box-shadow:
    0 0  0   2px rgba(249,115,22,0.6),
    0 0  30px 4px rgba(249,115,22,0.35),
    0 0  70px 10px rgba(249,115,22,0.18),
    0 32px 80px rgba(0,0,0,0.55);
  animation: videoFrameGlow 4s ease-in-out infinite;
}

@keyframes videoFrameGlow {
  0%, 100% {
    box-shadow:
      0 0  0   2px rgba(249,115,22,0.6),
      0 0  30px 4px rgba(249,115,22,0.35),
      0 0  70px 10px rgba(249,115,22,0.18),
      0 32px 80px rgba(0,0,0,0.55);
  }
  50% {
    box-shadow:
      0 0  0   2px rgba(249,115,22,0.9),
      0 0  50px 8px rgba(249,115,22,0.5),
      0 0 100px 18px rgba(249,115,22,0.25),
      0 32px 80px rgba(0,0,0,0.55);
  }
}

.pp-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

@media (max-width: 600px) {
  .pp-video-frame { border-radius: 12px; }
}

/* ===== SHOWCASE SECTION ===== */
.pp-showcase-section {
  background: linear-gradient(160deg, #070f1e 0%, #0b1f3a 60%, #0d1e38 100%);
  position: relative;
  overflow: hidden;
}

.pp-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(249,115,22,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(59,130,246,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.pp-showcase-section .section-tag  { color: var(--gold); }
.pp-showcase-section .section-title { color: #fff; }
.pp-showcase-section .section-title span { color: var(--gold); }
.pp-showcase-section .section-desc  { color: rgba(255,255,255,0.5); }

.pp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pp-showcase-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pp-showcase-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pp-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(249,115,22,0.3);
  border-color: rgba(249,115,22,0.3);
}

.pp-showcase-img-wrap {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* normal cards: image on top */
.pp-showcase-card:not(.pp-showcase-wide) .pp-showcase-img-wrap {
  aspect-ratio: 4/3;
}

.pp-showcase-card:not(.pp-showcase-wide) .pp-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
  padding: 0.75rem;
}

.pp-showcase-card:not(.pp-showcase-wide):hover .pp-showcase-img-wrap img {
  transform: scale(1.05);
}

/* wide card: image fills its column */
.pp-showcase-wide .pp-showcase-img-wrap {
  height: 100%;
  min-height: 280px;
}

.pp-showcase-wide .pp-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.4s;
}

.pp-showcase-wide:hover .pp-showcase-img-wrap img {
  transform: scale(1.03);
}

.pp-showcase-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

/* wide card body is centered vertically */
.pp-showcase-wide .pp-showcase-body {
  justify-content: center;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.025);
}

.pp-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  align-self: flex-start;
  margin-bottom: 0.25rem;
}

.pp-showcase-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.pp-showcase-wide .pp-showcase-body h3 {
  font-size: 1.4rem;
}

.pp-showcase-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

.pp-showcase-wide .pp-showcase-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .pp-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pp-showcase-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .pp-showcase-wide .pp-showcase-img-wrap {
    min-height: 220px;
    height: auto;
  }
}

@media (max-width: 580px) {
  .pp-showcase-grid {
    grid-template-columns: 1fr;
  }
  .pp-showcase-wide {
    grid-column: span 1;
  }
}

/* ===== BROCHURE SECTION ===== */
.pp-brochure-section {
  background: #fff;
}

.pp-brochure-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(11,31,58,0.07);
}

.pp-brochure-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11,31,58,0.14);
  transition: transform 0.35s, box-shadow 0.35s;
}

.pp-brochure-img-wrap:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 20px 56px rgba(11,31,58,0.2);
}

.pp-brochure-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.pp-brochure-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pp-brochure-body h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
}

.pp-brochure-body p {
  font-size: 1rem;
  color: #5a6a85;
  line-height: 1.7;
}

.pp-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 780px) {
  .pp-brochure-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }
  .pp-brochure-img-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .pp-brochure-btn {
    align-self: center;
  }
}

/* ===== CTA ===== */
.pp-cta {
  background: var(--navy);
  padding: 5rem 2rem;
}

.pp-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
}

.pp-cta-title span { color: var(--gold); }

.pp-cta-desc {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* ===== PRICE BOX ===== */
.pp-price-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.75rem;
  background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
  border: 1.5px solid rgba(249,115,22,0.3);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(249,115,22,0.1);
}

.pp-price-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pp-price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  line-height: 1;
}

.pp-price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.pp-price-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.pp-price-note {
  font-size: 0.75rem;
  color: #8a9ab8;
  margin-top: 0.15rem;
}

.pp-prices-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.pp-prices-row .pp-price-box {
  margin-top: 0;
  flex: 1 1 200px;
}

/* ===== APPROVAL ROW ===== */
.pp-approval-row {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(249,115,22,0.15);
}

.pp-approval-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

.pp-approval-actions {
  display: flex;
  gap: 0.35rem;
}

.pp-approval-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(11,31,58,0.06);
  color: var(--navy);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.pp-approval-btn:hover {
  background: var(--navy);
  color: #fff;
}

.pp-approval-btn.pp-approval-wa {
  background: rgba(37,211,102,0.1);
  color: #25d366;
}

.pp-approval-btn.pp-approval-wa:hover {
  background: #25d366;
  color: #fff;
}

/* ===== APPROVAL MODAL ===== */
.approval-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,31,58,0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.approval-modal.is-open {
  display: flex;
}

.approval-modal-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(11,31,58,0.3);
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.approval-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 1rem;
}

.approval-modal-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.approval-modal-close:hover {
  background: rgba(255,255,255,0.25);
}

.approval-modal-body {
  padding: 1.25rem;
}

.approval-modal-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.approval-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem;
  justify-content: center;
}

.approval-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.approval-action-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.approval-action-download {
  background: var(--navy);
  color: #fff;
}

.approval-action-whatsapp {
  background: #25d366;
  color: #fff;
}

/* ===== PRODUCT COMPONENTS SECTION ===== */
.pp-components-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2.5rem;
}

.pp-component-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--navy-mid);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.pp-component-card:nth-child(even) {
  grid-template-columns: 1.6fr 1fr;
  direction: ltr;
}

.pp-component-card:nth-child(even) .pp-component-info {
  direction: rtl;
}

.pp-component-card img {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  justify-self: center;
}

.pp-component-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pp-component-info p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.85;
}

.pp-component-info strong {
  color: #fff;
}

@media (max-width: 768px) {
  .pp-component-card,
  .pp-component-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: rtl;
  }

  .pp-component-card img {
    max-width: 260px;
  }
}

/* ── Multi-cable STS section ── */
.pp-multicable-section {
  background: #f8f9fb;
}

.pp-multicable-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.pp-multicable-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  position: sticky;
  top: 100px;
}

.pp-multicable-img img {
  width: 100%;
  height: auto;
  display: block;
}

.pp-multicable-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pp-multicable-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.pp-multicable-card .pp-why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.15rem;
  margin-bottom: 0;
}

.pp-multicable-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.35rem;
}

.pp-multicable-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .pp-multicable-wrap {
    grid-template-columns: 1fr;
  }

  .pp-multicable-img {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }
}
