:root { --ink: rgba(0,0,0,.85); --sans: "Diatype", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Inter, Arial, sans-serif; }
* { box-sizing: border-box; }
html, body { margin: 0; background: #fff; }
body {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 1.6rem; font-weight: 440; line-height: 1.2; color: var(--ink);
  font-variant-numeric: oldstyle-nums; -webkit-font-smoothing: antialiased;
}
.card {
  width: 40%; margin: 2.2rem; padding: 1rem;
  border: .1rem solid var(--ink); border-radius: 1.5rem;
}
a { color: var(--ink); text-decoration: none; }
a:active { opacity: .7; }
hr { background: rgba(0,0,0,.25); border: 0; height: 1px; margin: .8rem 0; }
.top { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.top .right { text-align: right; }
.slideshow { position: relative; aspect-ratio: 2772 / 1975; margin-top: 1.2em; margin-bottom: .8rem; overflow: hidden; border-radius: 3rem; }
.slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s ease; }
.slideshow img.on { opacity: 1; }
.links { display: block; font-size: 2.6rem; font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: rgba(0,0,0,.75); }
.links a { color: rgba(0,0,0,.75); }
@media (max-width: 1100px) { .card { width: 60%; } }
@media (max-width: 767px) { .card { width: auto; margin: 1rem; } body { font-size: 1.4rem; } .links { font-size: 2.2rem; } }
