.ringer-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

.ringer-post {
  display: flex;
  background: white;
  border-radius: 14px;
  border: 1px solid #ddd;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 90px;
  transition: background 0.2s;
}

.ringer-post:hover {
  background: #f9f9f9;
}

.ringer-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
}

.ringer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ringer-content {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.ringer-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.ringer-meta {
  font-size: 13px;
  color: #666;
}
