* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', sans-serif; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  padding: 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E0E1E1;
  background: #fff;
}
.logo { height: 30px; width: auto; }

.main {
  padding-top: 72px;
  min-height: 100vh;
  background: #f7f9fb;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0 0 1.5rem;
  align-items: center;
  width: 100%;
}
.content { grid-column: 2 / 6; align-self: center; }

.title {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #2f3941;
  width: 65%;
  margin: 5rem 0 1rem 0;
}
.message {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #2f3941;
  margin-bottom: 1rem;
}
.message.first { margin-top: 24px; }
.message a { color: inherit; text-decoration: underline; }

.art { grid-column: 6 / -1; justify-self: stretch; align-self: center; min-width: 0; }
.art img { display: block; width: 100%; height: auto; object-fit: contain; object-position: left center; }
