.sales-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 2fr; /* Two equal-width columns */
  grid-template-rows: 2fr 4fr; /* Fill the available height */
  justify-items: center;
  /* height: 100%; Fill the height of the viewport */
  color: var(--primary);
  /* margin: 0 2rem; */
  max-width: 1200px;
  min-width: 920px;
  column-gap: 1rem;
}
.sales-header {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Maharlika-Regular";
}
.sales-column-1 {
  display: flex;
  flex-direction: column;
}
.sales-column-1 h1 {
  margin-top: 1rem;
  font-size: 3rem;
}

.sales-column-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sales-container p {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 100;
}
.sales-container a.button {
  font-size: 1.25rem;
  font-family: Lustria-Regular, serif;
  padding: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 160px;
  text-align: center;
  /* margin-top: 2rem; */
}

.sales-container a:hover {
  opacity: 0.8;
}

.sales-text {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin-top: 1.25rem;
}
.social {
  font-size: 2.25rem;
  color: var(--primary);
}

.social a {
  padding: 0;
  margin: 0;
  color: var(--primary);
  background-color: transparent;
}

.image-container {
  width: 530px;
  height: 265px;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  /* Your responsive styles here */
  .sales-column-1 {
    justify-content: space-between;
  }
  .sales-column-1 h1 {
    margin-top: 1rem;
    font-size: 2.5rem;
    margin-right: 1rem;
  }
  .image-container {
    width: 100%;
    height: auto;
  }
  .sales-text {
  }
}

@media only screen and (max-device-width: 812px) and (orientation: portrait) {
  .sales-container {
    display: flex;
    flex-direction: column;
    /* grid-template-columns: 1fr; */
    /* grid-template-rows: 2fr 2fr 2fr 2fr; */
    width: 90%;
    min-width: 0;
  }
  .sales-column-1 h1 {
    font-size: 1.6rem;
    margin-right: 0;
    margin-top: 0;
  }
  .image-container {
    width: 90vw;
    height: auto;
  }
  .social {
    margin-top: 2rem;
  }
  .sales-text {
    max-width: 90vw;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .sales-column-1,
  .sales-column-2 {
    /* width: 100%; */
  }
}
