/**
 * /pzdravmoder/ + shared program landing styles (no @import — more reliable).
 * Prices omitted by design.
 */

.mp-pall {
  margin: 0 0 2rem;
  color: #526371;
  font-family: "Exo 2", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow: visible;
}

.mp-pall a {
  color: #00bf80;
  text-decoration: none;
}

.mp-pall a:hover {
  color: #0055a6;
}

.mp-pall__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 280px;
  margin: 0 0 1.25rem;
  padding: 2.25rem 1.5rem;
  background-image: var(--mp-pall-hero, linear-gradient(135deg, #1a5c45 0%, #2d8f6f 55%, #3aa87e 100%));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3px;
  overflow: hidden;
}

.mp-pall__hero--solid {
  background-image: linear-gradient(135deg, #1a5c45 0%, #2d8f6f 55%, #3aa87e 100%);
}

.mp-pall__hero--blue {
  background-image: linear-gradient(135deg, #1a4a6e 0%, #2d6f9f 55%, #3a8fc0 100%);
}

.mp-pall__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 55, 48, 0.35);
}

.mp-pall__hero--blue::before {
  background: rgba(20, 40, 70, 0.35);
}

.mp-pall__title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 40rem;
  font-family: "Exo 2", Roboto, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.mp-pall-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  margin: 28px 0 24px;
  padding: 20px 16px;
  font-family: "Exo 2", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: #54595f;
  text-align: center;
  background-image: linear-gradient(180deg, #c0e6d2 0%, rgba(192, 230, 210, 0.37) 100%);
}

.mp-pall-section {
  margin: 0 0 8px;
}

.mp-pall-section p {
  margin: 0 0 14px;
}

.mp-pall-cat__grid,
.mp-pz__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 0 0 1rem;
}

.mp-pall-item {
  margin: 0;
  background: #fff;
  border: 1px solid #e4eee9;
  border-radius: 3px;
}

.mp-pall-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.mp-pall-item__link img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 0.65rem;
  background: #fff;
}

.mp-pall-item__name {
  display: block;
  padding: 0.55rem 0.75rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
}

a.mp-pall-item__link:hover .mp-pall-item__name {
  color: #00bf80;
}

.mp-pz__more {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.95rem;
}

.mp-pz__cta {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: #f7fbf9;
  border: 1px solid #d7ebe2;
  border-radius: 4px;
}

.mp-pz__cta p {
  margin: 0 0 0.85rem;
}

.mp-pz__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 4px;
  background: #00bf80;
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.mp-pz__cta-btn:hover {
  background: #009e6a;
  color: #fff !important;
}

@media (max-width: 760px) {
  .mp-pall__title {
    font-size: 22px;
  }

  .mp-pall-bar {
    font-size: 1.05rem;
    padding: 1rem 0.85rem;
  }

  .mp-pall-cat__grid,
  .mp-pz__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mp-pall-item__link img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .mp-pall-cat__grid,
  .mp-pz__grid {
    grid-template-columns: 1fr;
  }
}
