.offers {
max-width: 925px;
    margin: 0 auto;
    display: flex;
    column-gap: 2%;
    row-gap: 10px;
    flex-wrap: wrap;
}
.offers .content-asset{
	width:49%;
}
.offer-ucb {
    cursor: pointer;
    background-color: var(--brightwhite);
    display: flex;
    align-items: center;
    height: 100%;
	width: 100%;
    min-height: 250px;
    border: 1px dashed #ddd;
	border-radius: 10px;
	overflow: hidden;
    flex-direction: column;
	padding: 0;
}
.offer-ucb-bnr{
	text-align: center;
    background-color: var(--night);
    color: #fff;
    width: 100%;
    position: relative;
    top: 0;
    padding: 10px 30px;
    text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
}
.offer-ucb .offer-copy {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.offer-ucb h2 {
  line-height: .9;
  color: var(--night);
}
.offer-ucb h2 span {
  color: var(--night);
  font-weight: 400;
}
.offer-ucb p {
  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:975px) {
  .offers {
    width: auto;
    margin: 0 25px;
  }

}
@media screen and (max-width:768px) {
  .offers {
    margin: 0 5%;
  }
}
@media screen and (max-width:500px) {
.offers .content-asset{
	width:100%;
}
}