.more-page {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 72px;
}

.mo-hero {
  width: 100%;
}

.mo-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 4px 6px 24px rgba(0,0,0,0.7);
  outline: 2px solid rgba(255,255,255,0.4);
  outline-offset: 6px;
}

.mo-grid {
  columns: 4;
  column-gap: 16px;
}

@media (max-width: 800px) {
  .mo-grid {
    columns: 3;
  }
}

@media (max-width: 500px) {
  .mo-grid {
    columns: 2;
  }
}

.mo-grid figure {
  margin: 0 0 16px;
  break-inside: avoid;
}

.mo-grid img {
  width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.mo-grid figcaption {
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.mo-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mo-contact p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 0;
  letter-spacing: 0.05em;
}

.mo-contact-link {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.mo-contact-link:hover {
  background: white;
  color: black;
}