/* The Implementation Files — supplements styles.css.
   Only classes the main stylesheet does not already define.
   Uses the site's own brand variables so it recolours with the site. */

/* ---------- worksheet call to action ---------- */

.worksheet-cta {
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: clamp(1.4rem, 3vw, 2rem);
  max-width: 46rem;
}

.worksheet-cta h2 { margin: 0 0 .6rem; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.worksheet-cta p { margin: 0 0 1.3rem; color: var(--ink-soft); max-width: 34rem; }

.actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.actions .buy {
  display: inline-flex;
  align-items: center;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.actions .buy:hover { filter: brightness(1.06); color: #fff; }

.actions .quiet {
  display: inline-flex;
  align-items: center;
  color: var(--blue-700);
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: var(--paper);
}

.actions .quiet:hover { border-color: var(--blue); }

/* ---------- seven-day sequence (genuinely ordered, so it is numbered) ---------- */

.days {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  max-width: 46rem;
}

.days li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.days .when { font-weight: 800; color: var(--blue-700); }
.days .what { margin: 0; color: var(--ink-soft); }

@media (max-width: 560px) {
  .days li { grid-template-columns: 1fr; gap: .2rem; }
}

/* ---------- books in the series ---------- */

.ifbook {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  max-width: 46rem;
}

.ifbook:last-of-type { border-bottom: 1px solid var(--line); }

.ifbook .tag {
  display: block;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .45rem;
}

.ifbook h3 { margin: 0 0 .5rem; font-size: 1.3rem; }
.ifbook p { margin: 0 0 .9rem; color: var(--ink-soft); }

.ifbook .buyrow { display: flex; gap: .9rem; align-items: center; }
.ifbook .buy { font-weight: 800; font-size: .9rem; color: var(--blue-700); text-decoration: none; }
.ifbook .buy:hover { text-decoration: underline; }

/* ---------- method note ---------- */

.method {
  background: var(--mist);
  border-radius: 14px;
  padding: clamp(1.4rem, 3vw, 2rem);
  max-width: 46rem;
}

.method h2 { margin: 0 0 .7rem; font-size: 1.35rem; }
.method p { color: var(--ink-soft); margin: 0 0 .8rem; }
.method p:last-child { margin-bottom: 0; }
