.hero {
  background-image: url("/assets/img/Vintage-cereal-set.jpg");
  background-size: cover;
  height: 280px;
  background-color: var(--color-bg-two);
}

.product-intro {
position: relative;
padding: 0;
}

.product-intro img{
z-index: 1;
width: 100%;
height: 320px;
object-fit: cover;
}

.hero-content {
  color: #f5f5f5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product-subtitle {
  margin-top: 16px;
  max-width: 900px;
  text-align: center;
}

.hero-content p {
  max-width: 800px;
}

.card-grid .underline{
  margin-top: 6px;
  background-color: var(--color-accent);
}

.service-section {
  padding-bottom: 72px;
  background-color: white;
  padding-top: 44px;
}

.service-head {
  margin-top: 44px;
  margin-bottom: 72px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.service-head h3 {
  margin-top: 44px;
}

.card-grid {
  margin-top: 72px;
  width: 100%;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, 20rem);
  justify-content: center;
  align-items: stretch;
}

.card {
  background-color: var(--color-bg-two);
  padding-bottom: 16px;
}

.card-img {
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.card-content {
  padding: 16px;
}

.card-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-head h3 {
  color: var(--color-primary);
}

.card-head a:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.arrow-outward {
  height: 28px;
}

.hinweis-section {
  background-color: white;
}

.hinweis {
  background-color: var(--color-bg-two);
  margin-bottom: 72px;
  padding: 24px;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */

/* Extra Large Devices (1200px – 1599px) */
@media (max-width: 1599px) {
}

/* Large Devices (992px – 1199px) */
@media (max-width: 1440px) {
  .hero {
    background-image: url("/assets/img/Vintage-cereal-set - 1440px.jpg");
    background-size: cover;
    height: 280px;
    background-color: var(--color-bg-two);
  }
}

/* Medium Devices (768px – 991px) */
@media (max-width: 991px) {
  .hinweis-section{
    padding: 0;
  }
}

/* Small Devices (576px – 767px) */
@media (max-width: 767px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, 23rem);
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  .hero {
    background-image: url("/assets/img/Vintage-cereal-set - 480px.jpg");
    background-size: cover;
    height: 280px;
    background-color: var(--color-bg-two);
  }
.hero-content p {
  max-width: 280px;
}

}
