.cru {
  background-color: var(--color-bg);
  padding: 40px 0 100px 0;
}

.heading {
  justify-self: center;
}

.divider {
  width: 150px;
  height: 2px;
  background-color: var(--color-accent);
  justify-self: center;
  margin: 40px 0;
}

.subheading {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-accent);
  justify-self: center;
}

.grid-coffee {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr minmax(200px, 1fr);
  grid-auto-columns: 1fr;
  place-content: center;
  align-self: auto;
  place-items: stretch stretch;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  margin: 40px 0;
}

.gridblock {
  grid-column-gap: 20px;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.gridblock img {
  align-self: center;
  width: auto;
  max-width: 30%;
  height: auto;
}

.grid-text {
  grid-column-gap: 0px;
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: center;
  margin: 0;
  display: flex;
}

.title-text {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .subheading {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .grid-coffee {
    grid-template-columns: auto;
  }
}
