.simple-home-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #f2f0e9;
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: #142b4a;
  color: #fff;
}

.teacher-link {
  color: #d8e2ef;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
}

.teacher-link:hover,
.teacher-link:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.simple-home {
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(38px, 8vw, 90px) 22px;
}

.welcome-card {
  width: min(820px, 100%);
}

.welcome-card h1 {
  margin: 0;
  color: #172237;
  font: 800 clamp(3rem, 8vw, 5.7rem)/.98 Georgia, serif;
  letter-spacing: -.035em;
}

.welcome-copy {
  margin: 18px 0 34px;
  color: #606a78;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.entry-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 520px;
}

.entry-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 126px;
  padding: 22px;
  background: #fff;
  border-top: 6px solid var(--entry-color);
  color: #172237;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(20, 43, 74, .10);
  transition: transform .15s ease, box-shadow .15s ease;
}

.entry-card:hover,
.entry-card:focus-visible {
  transform: translateY(-3px);
  outline: 3px solid color-mix(in srgb, var(--entry-color) 28%, transparent);
  box-shadow: 0 17px 38px rgba(20, 43, 74, .16);
}

.student-entry { --entry-color: #b63838; }

.entry-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--entry-color) 12%, white);
  color: var(--entry-color);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.entry-card strong,
.entry-card small {
  display: block;
}

.entry-card strong {
  font: 800 1.45rem Georgia, serif;
}

.entry-card small {
  margin-top: 5px;
  color: #606a78;
  font-size: .88rem;
}

.entry-card b {
  color: var(--entry-color);
  font-size: 1.65rem;
}

.simple-footer {
  padding: 20px clamp(20px, 5vw, 72px);
  background: #0e213a;
  color: #cbd7e7;
  font-size: .82rem;
}

@media (max-width: 700px) {
  .entry-options { grid-template-columns: 1fr; }
  .entry-card { min-height: 112px; padding: 18px; }
  .entry-icon { width: 54px; height: 54px; }
}
