<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-card {
  position: relative;
  margin-bottom: 100px;
  z-index: 3;
  margin-top: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 300px));
  gap: 50px;
  row-gap: 90px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}

.product-card-grid.single-card {
  grid-template-columns: minmax(auto, 400px);
}

.product-card-item {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid #c9ac25;
  overflow: hidden;
  height: 100%;
  width: 250px;
  display: flex;
  flex-direction: column;
}

.product-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  justify-content: space-between;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-card-content h2 {
  color: #000000;
  font-size: 30px;
  margin-bottom: 5px;
  font-family: "Raleway", sans-serif;
  margin-top: 5px;
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.product-card-content .first-p {
  color: black;
  font-size: 20px;
  font-weight: bold;
  font-size: medium;
  font-family: "Raleway", sans-serif;
  margin: 20px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-line;
  line-height: 1.2;
}

.product-card-content .second-p {
  color: black;
  font-size: 25px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  margin: 20px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-line;
  line-height: 1.2;
}

.product-card-content p {
  color: black;
  line-height: 1.6;
  font-size: x-large;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-button {
  margin-top: auto;
  margin: auto;
  display: inline-block;
  padding: 10px 20px;
  background: #c9ac25;
  font-family: "Raleway", sans-serif;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  width: 80px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-button:hover {
  background: #ecd158;
}

/* Tablet */
@media (max-width: 1200px) {
  .product-card-grid {
    grid-template-columns: repeat(
      2,
      minmax(250px, 300px)
    ); /* Ã„ndrad till exakt 2 kolumner */
    gap: 50px;
  }
}

/* Mobile */
@media (max-width: 740px) {
  .product-card-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .product-card {
    margin-top: 150px;
  }
}
</pre></body></html>