.portfolio-float {
  position: fixed;
  z-index: 9999;
  bottom: 24px;
  left: 24px;
  display: flex;
  width: 280px;
  min-height: 92px;
  overflow: hidden;
  border: 1px solid rgba(20, 45, 37, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  color: #16362b;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.portfolio-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
}

.portfolio-float__photo {
  width: 80px;
  flex: 0 0 80px;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid #e7e4de;
}

.portfolio-float__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.portfolio-float__content {
  padding: 11px 13px;
}

.portfolio-float__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #9a7543;
  font: 700 8px/1.2 Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-float strong {
  display: block;
  font: 600 16px/0.95 Georgia, serif;
}

.portfolio-float__link {
  display: block;
  margin-top: 8px;
  font: 700 10px/1.2 Arial, sans-serif;
}

@media (max-width: 600px) {
  .portfolio-float {
    bottom: 14px;
    left: 14px;
    width: 250px;
  }
}
