@charset "UTF-8";

/* ===================================== */
/* Home – Hero Responsive                */
/* ===================================== */

/* Desktop / größere Tablets */
@media (min-width: 768px) {
  .home-hero {
    min-height: 70vh;
    padding: 5.5rem 0;
  }

  .home-hero-title {
    font-size: 2.8rem;
  }
}

/* Mobile Hero-Anpassungen */
@media (max-width: 767px) {
  .home-hero {
    min-height: 52vh;
    padding: 3.8rem 0;
  }

  .home-hero-content {
    padding: 1.9rem 1.9rem 2.2rem;
    border-radius: 18px;
  }

  .home-hero-title {
    font-size: 2.1rem;
  }

  .home-hero-text {
    font-size: 0.98rem;
  }
}

/* ===================================== */
/* Home – USPs Responsive                */
/* ===================================== */

/* drei Spalten ab Tablet quer */
@media (min-width: 768px) {
  .home-usps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===================================== */
/* Home – Featured-Grid Responsive       */
/* ===================================== */

/* zwei Spalten ab 640px */
@media (min-width: 640px) {
  .home-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* drei Spalten ab 960px */
@media (min-width: 960px) {
  .home-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===================================== */
/* Home – Blog-Grid Responsive           */
/* ===================================== */

/* drei Spalten im Blogbereich ab 768px */
@media (min-width: 768px) {
  .home-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
