.worksheets-main {
  min-height: 70vh;
  background:
    radial-gradient(circle at top left, rgba(45, 154, 146, 0.12), transparent 34rem),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 72%);
}

.worksheets-hero {
  padding: 5rem 1.25rem 5.5rem;
}

.worksheets-hero__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.worksheets-eyebrow {
  margin: 0 0 0.75rem;
  color: #2d9a92;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.worksheets-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #172323;
  font-size: clamp(2.4rem, 7vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.worksheets-lead {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: #4b5b5b;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.worksheets-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.worksheet-card {
  min-height: 215px;
  padding: 1.5rem;
  border: 1px solid #d8e7e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(20, 52, 50, 0.07);
}

.worksheet-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: #d8e7e8;
  color: #176f69;
  font-size: 0.82rem;
  font-weight: 800;
}

.worksheet-card h2 {
  margin: 0 0 0.65rem;
  color: #1d2a2a;
  font-size: 1.1rem;
}

.worksheet-card p {
  margin: 0;
  color: #5c6969;
  line-height: 1.6;
}

.worksheets-coming-soon {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid #2d9a92;
  border-radius: 10px;
  background: #eef7f6;
  color: #344545;
}

.worksheets-coming-soon strong {
  flex: 0 0 auto;
  color: #176f69;
}

.worksheets-back-link {
  display: inline-flex;
  margin-top: 1.75rem;
  color: #176f69;
  font-weight: 700;
  text-decoration: none;
}

.worksheets-back-link:hover,
.worksheets-back-link:focus-visible {
  text-decoration: underline;
}

.worksheets-page.worksheets-ready .worksheet-card {
  animation: worksheetsFadeIn 420ms ease both;
}

.worksheets-page.worksheets-ready .worksheet-card:nth-child(2) {
  animation-delay: 60ms;
}

.worksheets-page.worksheets-ready .worksheet-card:nth-child(3) {
  animation-delay: 120ms;
}

.worksheets-page.worksheets-ready .worksheet-card:nth-child(4) {
  animation-delay: 180ms;
}

@keyframes worksheetsFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .worksheets-page.worksheets-ready .worksheet-card {
    animation: none;
  }
}

@media (max-width: 900px) {
  .worksheets-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .worksheets-hero {
    padding: 3.25rem 1rem 4rem;
  }

  .worksheets-preview {
    grid-template-columns: 1fr;
  }

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

  .worksheets-coming-soon {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }
}


.worksheet-card--live {
  display: block;
  color: inherit;
  text-decoration: none;
  border-color: rgba(45, 154, 146, .55);
  background: linear-gradient(180deg, #ffffff 0%, #f1f9f8 100%);
}

.worksheet-card--live:hover,
.worksheet-card--live:focus-visible {
  border-color: #2d9a92;
  box-shadow: 0 16px 36px rgba(20, 52, 50, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.worksheet-card__category,
.worksheet-card__status {
  display: block;
  margin: -.35rem 0 .55rem;
  color: #617172;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.worksheet-card__status {
  margin: 1rem 0 0;
}

.worksheet-card__link {
  display: inline-block;
  margin-top: 1rem;
  color: #176f69;
  font-weight: 800;
}
