/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #161616;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(0,0,0,0.06), transparent 60%),
    linear-gradient(180deg, #f8fafc, #eef2f7);
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.wrap {
  text-align: center;
  max-width: 780px;
}

.card {
  width: min(60vw, 320px);
  aspect-ratio: 1 / 1; /* perfect square */
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.06),
    0 12px 40px rgba(0,0,0,0.12);
  padding: 24px;
  margin: 10px auto 28px auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* fill the square nicely */
  border-radius: 16px;  /* rounded corners for the image itself */
  image-rendering: auto;
}

.title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.6vw, 32px);
  letter-spacing: 0.2px;
  font-weight: 700;
}

.lead {
  margin: 0 auto;
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.6;
  color: #2b2b2b;
  max-width: 52ch;
}

a { color: #0d6efd; text-decoration: none; }
a:hover { text-decoration: underline; }

.foot {
  position: fixed;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(0,0,0,0.55);
  font-size: 12px;
  pointer-events: none;
}
