/* PRO Pravda — light business presentation (cosmo-man inspired) */

:root {
  --pp-bg: #f8fafc;
  --pp-surface: #ffffff;
  --pp-surface-2: #f1f5f9;
  --pp-accent: #0d9488;
  --pp-accent-soft: rgba(13, 148, 136, 0.1);
  --pp-accent-2: #14b8a6;
  --pp-text: #0f172a;
  --pp-muted: #64748b;
  --pp-border: #e2e8f0;
  --pp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --pp-radius: 16px;
  --pp-font: 'Manrope', system-ui, sans-serif;
  --pp-header-h: 60px;
}

body.pp-presentation-route {
  margin: 0 !important;
  background: var(--pp-bg) !important;
  color: var(--pp-text) !important;
  font-family: var(--pp-font);
  overflow-x: hidden;
}

body.pp-presentation-route .wp-site-blocks,
body.pp-presentation-route main,
body.pp-presentation-route .entry-content,
body.pp-presentation-route .wp-block-post-content,
body.pp-presentation-route .wp-block-group,
body.pp-presentation-route .alignfull {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.pp-wrapper {
  width: 100%;
  max-width: 100vw;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20, 184, 166, 0.08), transparent 60%),
    var(--pp-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.pp-wrapper *,
.pp-wrapper *::before,
.pp-wrapper *::after {
  box-sizing: border-box;
}

.pp-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.pp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pp-border);
}

.pp-header.scrolled {
  box-shadow: var(--pp-shadow);
}

.pp-logo {
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--pp-text);
  text-decoration: none;
  font-size: 0.82rem;
}

.pp-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pp-nav a {
  color: var(--pp-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.pp-nav a:hover {
  color: var(--pp-accent);
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.pp-btn-primary {
  background: var(--pp-accent);
  color: #fff;
}

.pp-btn-primary:hover {
  background: var(--pp-accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.pp-btn-secondary {
  background: var(--pp-surface);
  color: var(--pp-text);
  border-color: var(--pp-border);
}

.pp-btn-secondary:hover {
  border-color: var(--pp-accent);
  color: var(--pp-accent);
}

.pp-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.pp-hero {
  padding-top: calc(var(--pp-header-h) + 32px);
  min-height: auto;
  display: block;
}

.pp-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.pp-hero-summary-head {
  margin-bottom: 16px;
}

.pp-hero-summary-head .pp-h3 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}

.pp-hero-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pp-hero-summary-card {
  display: flex;
  flex-direction: column;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--pp-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pp-hero-summary-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.pp-hero-summary-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pp-surface-2);
}

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

.pp-hero-summary-body {
  padding: 14px 16px 16px;
}

.pp-hero-summary-body h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pp-text);
}

.pp-hero-summary-body p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

.pp-badge,
.pp-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pp-accent-soft);
  color: var(--pp-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pp-h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--pp-text);
}

.pp-h2 {
  margin: 12px 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}

.pp-h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
}

.pp-lead,
.pp-muted {
  color: var(--pp-muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.pp-hero-subtitle {
  margin-bottom: 16px;
}

.pp-hero-goal {
  margin: 0 0 20px;
  padding: 16px 18px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-left: 4px solid var(--pp-accent);
  border-radius: 12px;
  color: var(--pp-text);
  font-size: 0.98rem;
  line-height: 1.6;
  box-shadow: var(--pp-shadow);
}

.pp-hero-mechanics {
  margin-bottom: 22px;
}

.pp-hero-mechanics-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pp-text);
}

.pp-hero-mechanics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pp-hero-mechanic-item {
  margin: 0;
}

.pp-hero-mechanic-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  padding: 12px 14px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pp-hero-mechanic-link:hover {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: var(--pp-shadow);
  transform: translateY(-1px);
}

.pp-hero-mechanic-phase {
  grid-row: 1 / span 2;
  align-self: start;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pp-accent-soft);
  color: var(--pp-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pp-hero-mechanic-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pp-text);
}

.pp-hero-mechanic-text {
  grid-column: 2;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--pp-muted);
}

.pp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.pp-author-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.pp-author-inline strong {
  display: block;
  font-size: 0.95rem;
}

.pp-author-inline span {
  color: var(--pp-muted);
  font-size: 0.85rem;
}

.pp-author-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pp-border);
}

.pp-hero-photo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
}

.pp-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.pp-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pp-kpi-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 22px;
  box-shadow: var(--pp-shadow);
}

.pp-kpi-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--pp-accent);
  margin-bottom: 8px;
}

.pp-kpi-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.pp-kpi-card p {
  margin: 0;
  color: var(--pp-muted);
  font-size: 0.85rem;
}

.pp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.pp-split-panel,
.pp-card,
.pp-dash-panel,
.pp-downloads-card,
.pp-quote-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.pp-split-panel,
.pp-quote-card {
  padding: 24px;
}

.pp-table-wrap {
  overflow-x: auto;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pp-table th,
.pp-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--pp-border);
  text-align: left;
}

.pp-table th {
  color: var(--pp-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pp-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pp-card {
  padding: 20px;
}

.pp-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.pp-card p {
  margin: 0;
  color: var(--pp-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.pp-timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.pp-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--pp-accent), rgba(13, 148, 136, 0.15));
}

.pp-timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  position: relative;
}

.pp-timeline-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pp-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--pp-bg);
}

.pp-timeline-body {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 24px;
  box-shadow: var(--pp-shadow);
}

.pp-timeline-body h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.pp-timeline-body p {
  margin: 0 0 10px;
  color: var(--pp-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.pp-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.pp-shot {
  margin: 0;
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--pp-surface-2);
}

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

.pp-shot figcaption {
  padding: 8px 10px;
  font-size: 0.78rem;
  color: var(--pp-muted);
}

.pp-ingredient-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pp-ingredient-list li {
  padding: 10px 14px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
}

.pp-case-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  grid-template-areas:
    "photo intro"
    "channels channels";
  gap: 16px;
  align-items: stretch;
}

.pp-case-photo {
  grid-area: photo;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}

.pp-case-photo-frame {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--pp-radius);
  border: 1px solid var(--pp-border);
  background: linear-gradient(160deg, #f8fafc 0%, #ecfeff 100%);
  box-shadow: var(--pp-shadow);
}

.pp-case-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pp-case-photo figcaption {
  margin: 0;
  padding: 0 4px;
  color: var(--pp-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.pp-case-intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.pp-case-lead {
  margin: 0;
  color: var(--pp-text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pp-ingredient-list-grid {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.pp-ingredient-list-grid li {
  padding: 9px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.pp-case-channels {
  grid-area: channels;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pp-case-channel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 20px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.pp-case-channel-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--pp-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pp-case-channel h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.pp-case-channel p {
  margin: 0;
  flex: 1;
  color: var(--pp-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pp-case-metric {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--pp-surface-2);
  color: var(--pp-text);
  font-size: 0.8rem;
  font-weight: 600;
}

.pp-case-cta {
  width: 100%;
  margin-top: auto;
}

.pp-case-cta-icon {
  font-size: 0.9em;
  opacity: 0.85;
}

.pp-quote-card p {
  margin: 0;
  color: var(--pp-muted);
  line-height: 1.65;
  font-size: 1rem;
}

.pp-dash-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pp-dash-kpis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.pp-dash-kpi {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--pp-shadow);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-dash-kpi-label {
  display: block;
  font-size: 0.72rem;
  color: var(--pp-muted);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pp-dash-kpi strong {
  font-size: 1rem;
  color: var(--pp-accent);
  line-height: 1.2;
  word-break: break-word;
}

.pp-dash-panel {
  overflow: hidden;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pp-dash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--pp-border);
  background: var(--pp-surface-2);
}

.pp-dash-tab {
  border: 1px solid var(--pp-border);
  background: var(--pp-surface);
  color: var(--pp-muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
}

.pp-dash-tab.is-active {
  background: var(--pp-accent-soft);
  color: var(--pp-accent);
  border-color: rgba(13, 148, 136, 0.25);
}

.pp-dash-viewport {
  position: relative;
  height: 400px;
  padding: 16px;
  overflow: hidden;
}

.pp-dash-pane {
  display: none;
  width: 100%;
  height: 100%;
}

.pp-dash-pane.is-active {
  display: block;
  animation: ppFadeIn 0.25s ease;
}

.pp-chart-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 368px;
}

.pp-chart-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: 368px;
}

.pp-dash-pane-table,
.pp-dash-pane-notes {
  height: 100%;
  overflow: auto;
}

.pp-pl-table {
  width: 100%;
  overflow: auto;
  max-height: 368px;
}

@keyframes ppFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pp-pl-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.pp-pl-table th,
.pp-pl-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--pp-border);
  text-align: right;
}

.pp-pl-table th:first-child,
.pp-pl-table td:first-child {
  text-align: left;
}

.pp-dash-pane-bep {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.pp-dash-pane-sales {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.pp-sales-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  flex-shrink: 0;
}

.pp-sales-drr-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pp-sales-drr-btn {
  padding: 7px 14px;
  border: 1px solid var(--pp-border);
  border-radius: 999px;
  background: var(--pp-surface);
  color: var(--pp-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pp-sales-drr-btn:hover {
  border-color: rgba(13, 148, 136, 0.35);
  color: var(--pp-accent);
}

.pp-sales-drr-btn.is-active {
  background: var(--pp-accent);
  border-color: var(--pp-accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.22);
}

.pp-sales-drr-btn.is-active[data-drr="10"] {
  background: #0d9488;
  border-color: #0d9488;
}

.pp-sales-drr-btn.is-active[data-drr="20"] {
  background: #14b8a6;
  border-color: #14b8a6;
}

.pp-sales-drr-btn.is-active[data-drr="40"] {
  background: #0284c7;
  border-color: #0284c7;
}

.pp-sales-hint {
  margin: 0;
  flex: 1;
  min-width: 220px;
  color: var(--pp-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.pp-chart-wrap-sales {
  flex: 1;
  min-height: 0;
}

.pp-bep-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(20, 184, 166, 0.04));
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 10px;
  flex-shrink: 0;
}

.pp-bep-summary-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--pp-text);
}

.pp-bep-summary-text strong {
  color: var(--pp-accent);
}

.pp-bep-crossover-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--pp-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.pp-bep-crossover-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.pp-chart-wrap-bep {
  flex: 1;
  min-height: 0;
}

.pp-download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pp-downloads-card {
  padding: 28px;
  text-align: center;
}

.pp-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--pp-border);
  background: var(--pp-surface);
}

.pp-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pp-footer-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pp-footer-author img {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pp-border);
}

.pp-footer-author strong {
  display: block;
}

.pp-footer-author span,
.pp-footer-note {
  color: var(--pp-muted);
  font-size: 0.88rem;
}

.pp-reveal {
  opacity: 0;
  transform: translateY(24px);
}

@media (max-width: 992px) {
  .pp-nav,
  .pp-header-cta {
    display: none;
  }

  .pp-case-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "intro"
      "channels";
  }

  .pp-case-photo-frame img {
    min-height: 260px;
    max-height: 380px;
  }

  .pp-ingredient-list-grid {
    grid-template-columns: 1fr;
  }

  .pp-hero-grid,
  .pp-hero-summary-grid,
  .pp-dash-layout,
  .pp-split,
  .pp-case-layout,
  .pp-case-grid,
  .pp-case-channels,
  .pp-cards-grid,
  .pp-kpi-grid,
  .pp-shot-grid,
  .pp-dash-kpis {
    grid-template-columns: 1fr;
  }

  .pp-dash-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pp-dash-viewport {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .pp-hero-actions .pp-btn {
    width: 100%;
  }

  .pp-download-row .pp-btn {
    width: 100%;
  }
}
