.offers {
  width: 100%;
  max-width: 925px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 2%;
  grid-row-gap: 10px;
}
.offer-ucb {
  cursor: pointer;
  background-color: var(--brightwhite);
  display: grid;
  align-items: center;
  position: relative;
  width: 100%;
  padding-bottom: 60%;
	border: 1px dashed #ddd;
}
.offer-ucb .offer-copy {
  position: absolute;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
.offer-ucb h2 {
  font-family: var(--font);
  font-size: 50px;
  line-height: .9;
  color: var(--night);
  font-weight: 400;
}
.offer-ucb h2 span {
  font-family: var(--font);
  font-size: 50px;
  color: var(--night);
  font-weight: 400;
}
.offer-ucb p {
  font-family: var(--font);
  font-size: 24px;
  color: var(--night);
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1;
}
.offer-ucb .offer-details-link {
  color: var(--night);
  text-decoration: underline;
}
@media screen and (max-width:925px) {
  .offers {
    width: auto;
    margin: 0 25px;
  }
  .offer-ucb h2 {
    font-size: 6.5vw;
  }
}
@media screen and (max-width:768px) {
  .offers {
    grid-template-columns: auto;
    margin: 0 5%;
  }
  .offer-ucb h2 {
    font-size: 10.3vw;
  }
  .offer-ucb p {
    font-size: 4.7vw;
  }
}