.elf-feed { display: block; max-width: 100%; }

.elf-feed__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.elf-post {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 600px) {
  .elf-post { grid-template-columns: 1fr; }
}

.elf-post__thumb,
.elf-post__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.elf-post__thumb img {
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.elf-post__title {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  line-height: 1.3;
}
.elf-post__title a {
  color: inherit;
  text-decoration: none;
}
.elf-post__title a:hover { text-decoration: underline; }

.elf-post__meta {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.elf-post__excerpt {
  margin: 0;
  line-height: 1.5;
}

.elf-feed__sentinel {
  height: 1px;
  width: 100%;
  margin: 1rem 0;
}

.elf-feed__loading,
.elf-feed__end {
  text-align: center;
  padding: 1.5rem 0;
  opacity: 0.7;
  font-size: 0.95rem;
  font-style: italic;
}
