/* === Smart Garden namespace – påverkar bara wrappern .smartgarden === */

.smartgarden #ezPagesHeading {display:none;}

.smartgarden {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102218;
  background-color: #f5f7f5;
}

.smartgarden .page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

/* Rubriker & text */
.smartgarden h1,
.smartgarden h2,
.smartgarden h3 {
  color: #0a1a10;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.smartgarden h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}

.smartgarden h2 {
  font-size: 1.6rem;
}

.smartgarden h3 {
  font-size: 1.2rem;
}

.smartgarden p {
  line-height: 1.6;
  margin: 0.5rem 0 0.75rem;
}

/* Hero & tag */
.smartgarden .subtitle {
  font-size: 1.1rem;
  color: #3d5a46;
  margin-bottom: 1.75rem;
}

.smartgarden .hero {
  background: #e4efe6;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  margin-bottom: 2rem;
}

.smartgarden .hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #caddcf;
  color: #163424;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.9rem;
}

.smartgarden .hero-title {
  margin: 0;
}

.smartgarden .hero-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.smartgarden .hero-image {
  margin-top: 1.25rem;
  border-radius: 14px;
  background: #d4e3d8;
  border: 1px dashed #9fb3a5;
  padding: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #3a5342;
}

/* Grid & cards */
.smartgarden .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.smartgarden .card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 14px 35px rgba(7, 36, 18, 0.06);
  border: 1px solid #dde7de;
}

/* Listor & tags */
.smartgarden ul {
  padding-left: 1.1rem;
  margin: 0.25rem 0 0.75rem;
}

.smartgarden li {
  margin: 0.2rem 0 0.2rem;
  line-height: 1.5;
}

.smartgarden .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.smartgarden .tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #eef4ef;
  color: #284231;
  border: 1px solid #d5e1d7;
}

/* Sektioner, pill-heading, notes */
.smartgarden .section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.smartgarden .pill-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #597561;
  margin-bottom: 0.4rem;
}

.smartgarden .note {
  font-size: 0.85rem;
  color: #5b6e62;
  margin-top: 0.9rem;
}

/* CTA-rad & knappar */
.smartgarden .cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.smartgarden .btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.smartgarden .btn-primary {
  background: #1b6b3f;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(16, 78, 43, 0.35);
}

.smartgarden .btn-secondary {
  background: #ffffff;
  color: #204330;
  border: 1px solid #cdd9cf;
}

/* Highlight */
.smartgarden .highlight {
  background: #e9f4ec;
  border-left: 3px solid #2e7b48;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* Responsivt */
@media (max-width: 768px) {
  .smartgarden .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .smartgarden .hero {
    padding: 1.4rem 1.25rem;
  }

  .smartgarden .page {
    padding: 1.75rem 1.1rem 2.5rem;
  }

  .smartgarden h1 {
    font-size: 2rem;
  }
}