/* Lab Cafe — feedback box.
   Isometric keyline slab: flat front panel + 16px top face + 16px side face.
   The faces are siblings of the front panel inside an unpadded, unbordered wrapper —
   keep it that way or the extrusion detaches from the panel. */

.feedback-box-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feedback-box {
  position: relative;
  height: 96px;
  /* top + right margins carry the 16px extrusion */
  margin: 44px 36px 28px 20px;
}

.feedback-box__top,
.feedback-box__side,
.feedback-box__face {
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #000;
}

.feedback-box__top {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  border-bottom: none;
  transform: skewX(-45deg);
  transform-origin: bottom left;
}

.feedback-box__side {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -16px;
  width: 16px;
  border-left: none;
  transform: skewY(-45deg);
  transform-origin: bottom left;
}

.feedback-box__face {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.feedback-box__art {
  width: 96px;
  flex: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}

.feedback-box__art img {
  width: 80px;
  display: block;
}

.feedback-box__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.feedback-box__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  color: #000;
}

.feedback-box__subtitle {
  font-size: 12px;
  font-weight: 200;
  line-height: 18px;
  color: #000;
  text-wrap: pretty;
}
