.artTitleCopy {
  margin: 2em auto;
  width: 80%;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
}

.title {
  font-size: 3em;
  font-family: 'Raleway', sans-serif;
}

.subtitle {
  font-size: 1.5em;
  text-align: center;
  padding: 20px;
}

.contactLink {
  color: #473438;
  font-size: 1.75em;
}

#productContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5em;
  padding: 30px;
  justify-content: center;
  width: 80%;
  margin: 10px auto;
  font-family: 'Raleway', sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: solid 2px white;
  box-shadow: 4px 4px 15px rgba(71, 52, 56, 0.6);
  padding: 20px;
  text-align: center;
  width: 100%;
}

.productImg {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.productDescription {
  margin-top: 15px;
  background-color: var(--corpHighlight);
  color: white;
  border-radius: 10px;
  padding: 10px;
}

.productName {
  font-size: 1.5em;
  font-weight: bold;
}

.productPrice {
  font-size: 1.25em;
  padding: 5px;
}

@media (max-width: 1024px) {
  .title {
    font-size: 2.5em;
  }
  .subtitle {
    font-size: 1.4em;
  }
  #productContainer {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Adjust layout to 2 columns for smaller screens */
    gap: 3em;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2.2em;
  }
  .subtitle {
    font-size: 1.3em;
  }
  #productContainer {
    grid-template-columns: repeat(2, 1fr); /* Maintain 2 columns */
    gap: 2em;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.8em;
  }
  .subtitle {
    font-size: 1.2em;
  }
  #productContainer {
    grid-template-columns: repeat(1, 1fr); /* 1 column for mobile */
    gap: 1.5em; /* Adjust spacing between products */
  }
  .product {
    padding: 15px;
  }
  .productImg {
    max-height: 400px; /* Adjust max-height for better image fit */
  }
}
