.discount {
  font-size: 28px;
  font-weight: bold;
  color: #bd1313;
  margin: 0;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.specials {
  display: grid;
  grid-template-columns: 4fr 3fr;
  border: 1px solid #666;
  gap: 14px;
  margin: 7px 0;
  padding: 14px;
}

.specials .seven-button {
  width: auto;
  align-self: start;
  justify-self: start;
  padding: 4px 7px;
  box-sizing: border-box;
  background-color: #e2e2e2;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  color: #24639e;
  cursor: pointer;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition-duration: 0.4s;
  vertical-align: middle;
}
.specials .seven-button:hover {
  background-color: #24639e !important;
  color: #ffffff !important;
}
.specials .seven-button:active {
  background-color: #f9a825 !important;
  color: #ffffff !important;
}

.specials a {
  text-decoration: none;
  display: contents;
}

.specials h3 {
  margin: 0;
}

.specials-img {
  width: 100%;
  grid-column: 2;
  height: auto;
}

.specials .description {
  display: flex;
  flex-direction: column;
}

/* 
single column for phones 
image on top, text below it
*/
@media (max-width: 600px) {
  .specials {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .specials-img {
    grid-column: 1;
    grid-row: 1;
  }
  .description {
    grid-column: 1;
    grid-row: 2;
  }
}/*# sourceMappingURL=specials.css.map */