:root {
  color-scheme: light;
  --ink: #20201d;
  --muted: #666861;
  --line: #d9d8d1;
  --paper: #f6f5ef;
  --surface: #ffffff;
  --accent: #216c5c;
  --accent-dark: #16483f;
}

* {
  box-sizing: border-box;
}

html {
  font-family: "SUIT Variable", SUIT, Pretendard, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.masthead {
  margin-bottom: 28px;
}

.eyebrow,
.asset-type {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.asset-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.asset-row {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(220px, 0.9fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.asset-row h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.asset-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin: 0;
}

.actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.actions a:first-child {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1120px);
    padding: 38px 0;
  }

  .asset-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .actions {
    justify-content: flex-start;
  }
}
