@charset "UTF-8";
/* ===== Materials Sample (nur Bilder, größere Tiles) ===== */
.materials-sample {
  background: #f7f3ef;
  color: #1a1a1a;
  border-top: 1px solid #e8e1d8;
  margin: 72px 0 0;
  padding: 64px 20px;
}

.materials-sample__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.materials-sample__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 960px) {
  .materials-sample__grid {
    grid-template-columns: 0.8fr 1.2fr; /* left text / right wall */
    gap: 48px;
    align-items: center;
  }
}
.ms-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 12px;
}

.ms-sub {
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0 0 24px;
}

.ms-btn {
  display: inline-block;
  background: #d1b08c;
  color: #111;
  border: 1px solid #d1b08c;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 22px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: larger;
}

.ms-btn:hover {
  background: transparent;
}

/* Wall mit größeren Tiles */
.materials-sample__wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .materials-sample__wall {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .materials-sample__wall {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ms-tile {
  background: #fff;
  border: 1px solid #e6ded4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  /* Größerer Look */
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.ms-tile:hover {
  transform: translateY(-2px);
  border-color: #d1b08c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.ms-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-section {
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .product-section {
    margin: 30px auto;
  }
}

/*# sourceMappingURL=material_sample_section.css.map */
