:root {
  font-family: system-ui, sans-serif;
  color: #17333d;
  background: #eef3f4;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(
    145deg,
    #eef3f4,
    #f9fbfa,
    #e5edef
  );
}

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

header {
  margin-bottom: 32px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.eyebrow {
  color: #4b6b76;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.access-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #c9d7db;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(31, 62, 72, 0.08);
}

.access-card a {
  margin-top: auto;
  padding: 13px 18px;
  border-radius: 10px;
  background: #245f70;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.access-card small {
  margin-top: 14px;
  color: #536c75;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-card {
    min-height: auto;
  }
}
