.photos-container {
  padding: 2rem 0;
}

.photos {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .photos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.photos-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photos-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-item strong {
  font-weight: 600;
  color: var(--primary);
}

.info-item span {
  color: var(--secondary);
  word-break: break-word;
}

.info-item time {
  color: inherit;
  word-break: break-word;
  font-style: normal;
  font-size: inherit;
}

.info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
