.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  gap: 3rem;
}

.image {
    max-width: 800px;
}

img {
    width: 100%;
}

.info {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.status {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.status.sold {
    background: #aa2347;
}

h1 {
  color: #f5d76e;
  font-size: 2rem;
  margin: 1rem 0 0.5rem;
}

h2 {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #444;
  padding-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  line-height: 1.6;
  font-size: 1rem;
}

.meta {
  margin-top: 1rem;
  color: #888;
  font-size: 0.9rem;
}