
/* ============================================================
   Photo Blog Styles
   ============================================================ */

.photo-feed {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.photo-entry {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.photo-entry__header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-bottom: 1px solid var(--current);
  padding-bottom: 0.75rem;
}

.photo-entry__date {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--purple);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.photo-entry__day {
  font-size: 2rem;
  line-height: 1;
}

.photo-entry__month {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.photo-entry__year {
  font-size: 0.85rem;
  color: var(--comment);
  font-weight: 500;
}

.photo-entry__figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--current);
  background: var(--bg-card);
}

.photo-entry__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.photo-entry__caption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .photo-feed {
    gap: 3rem;
    padding: 0 0.5rem;
  }

  .photo-entry__day {
    font-size: 1.5rem;
  }
}
