
.tile-horizontal {
  display: flex;
  align-items: center;
  padding-left: 5px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  width: 320px;
  margin: 12px auto;
  transition: transform 0.2s ease;
}

.tile-horizontal:hover {
  transform: translateY(-2px);
}

.tile-img-left {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.tile-text {
  padding: 8px;
  flex: 1;
}

.tile-title {
  font-size: 16px;
  margin: 0 0 4px;
  color: #222;
}

.tile-description {
  font-size: 12px;
  color: #555;
  line-height: 1.3;
}

/* Responsive: Stack vertically on very small screens */
@media (max-width: 400px) {
  .tile-horizontal {
    flex-direction: column;
    text-align: center;
  }

  .tile-img-left {
    width: 100%;
    height: 100px;
  }

  .tile-text {
    padding: 6px;
  }
}

