.entry {
  margin-bottom: 2rem;
}

.entry h3 {
  color: #64ffda;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.entry p {
  color: #a8b2d1;
  font-size: 1rem;
}

.entry-item {
  display: flex;
  gap: 1rem;
  background-color: #112240;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  align-items: flex-start;
}

.entry-img {
  width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.entry-content {
  flex: 1;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.entry-title {
  font-size: 1.3rem;
  color: #64ffda;
  margin: 0;
}

.entry-subtitle {
  font-size: 1rem;
  color: #8892b0;
  margin: 0.5rem 0;
}

.entry-description {
  color: #a8b2d1;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.entry-link {
  color: #64ffda;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.tag {
  display: inline-block;
  background-color: #233554;
  color: #64ffda;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.entry-link {
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
}

.entry-link:hover {
  transform: scale(1.02);
}

.entry-dates {
  color: #a8b2d1;
}

