.top-bejegyzesek {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.top-bejegyzes-item {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.top-bejegyzes-thumb {
  width: 100%;
  height: auto;
  display: block;
}
.top-bejegyzes-meta {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.top-bejegyzes-content {
  padding: 1rem;
}
.top-bejegyzes-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.top-bejegyzes-content p {
  font-size: 1rem;
  margin: 0 0 1rem;
}
.top-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #003034;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}
.top-button:hover {
  background: #005b5f;
}
@media (max-width: 768px) {
  .top-bejegyzesek {
    grid-template-columns: 1fr;
  }
}