/* The 8:00 Meeting — a page managers keep open on the screen while they run it.
   Built to be read across a room and printed on one sheet, so type runs large
   and every block states what to open and what to say. */

.mm-head { margin: 4px 0 24px; }
.mm-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 8px;
}
.mm-head h1 { margin: 0 0 8px; font-size: clamp(30px, 4.4vw, 44px); line-height: 1.1; letter-spacing: -.02em; }
.mm-head .mm-sub { margin: 0; font-size: 18px; color: var(--slate); max-width: 62ch; }

.mm-purpose {
  background: var(--navy); color: #fff; border-radius: 16px;
  padding: 22px 26px; margin: 0 0 26px;
}
.mm-purpose p { margin: 0; font-size: clamp(17px, 2.1vw, 21px); line-height: 1.45; font-weight: 600; }
.mm-purpose .mm-attrib { display: block; margin-top: 10px; font-size: 13px; font-weight: 500; opacity: .72; }

/* the three things that are open during the meeting */
.mm-open { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 30px; }
.mm-open a {
  display: block; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; text-decoration: none; color: var(--navy);
}
.mm-open a:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(23,35,59,.08); }
.mm-open b { display: block; font-size: 15px; margin-bottom: 3px; }
.mm-open span { font-size: 13px; color: var(--slate); }

/* the first card in the opening row is the store choice itself */
.mm-pick {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px;
}
.mm-pick label {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 6px;
}
.mm-pick select {
  font: inherit; font-size: 15px; font-weight: 700; color: var(--navy); background: #fff;
  border: 1px solid var(--line); border-radius: 9px; padding: 6px 9px; cursor: pointer;
  max-width: 100%;
}
.mm-pick select:hover, .mm-pick select:focus { border-color: var(--blue); outline: none; }
.mm-pick > span { display: block; font-size: 13px; color: var(--slate); margin: 8px 0 0; }
.mm-pick > a {
  /* a plain link, not another card — .mm-open styles every anchor as a card */
  display: inline-block; margin-top: 10px; font-size: 13.5px; font-weight: 700;
  color: var(--blue); text-decoration: none;
  background: none; border: 0; padding: 0; box-shadow: none;
}
.mm-pick > a:hover { text-decoration: underline; }

.mm-h2 {
  font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate); margin: 34px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}

/* the clock */
.mm-block {
  display: grid; grid-template-columns: 96px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.mm-block:last-of-type { border-bottom: 0; }
.mm-when {
  font-variant-numeric: tabular-nums; font-weight: 800; font-size: 15px;
  color: var(--navy); background: var(--soft-blue); border-radius: 10px;
  padding: 8px 6px; text-align: center; height: fit-content;
}
.mm-block.mm-pre .mm-when { background: #efece4; color: #6b6459; }
.mm-block h3 { margin: 0 0 6px; font-size: 21px; line-height: 1.25; }
.mm-q { font-size: 13px; font-weight: 700; color: var(--blue); margin: 0 0 10px; }
.mm-block p { margin: 0 0 10px; font-size: 16px; line-height: 1.6; color: #2c3547; }
.mm-block p:last-child { margin-bottom: 0; }
.mm-tool {
  display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 12px; margin: 0 6px 8px 0; text-decoration: none;
}
.mm-tool:hover { border-color: var(--blue); color: var(--blue); }
.mm-say {
  border-left: 3px solid var(--blue); background: var(--soft-blue);
  padding: 10px 14px; border-radius: 0 10px 10px 0; margin: 10px 0 0;
  font-size: 15.5px; line-height: 1.55; color: var(--navy);
}
.mm-say b { font-weight: 800; }

/* the four questions / the four rules */
.mm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mm-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.mm-card h3 { margin: 0 0 12px; font-size: 18px; }
.mm-list { margin: 0; padding: 0; list-style: none; counter-reset: mm; }
.mm-list li {
  position: relative; padding: 0 0 12px 34px; counter-increment: mm;
  font-size: 15.5px; line-height: 1.5;
}
.mm-list li:last-child { padding-bottom: 0; }
.mm-list li::before {
  content: counter(mm); position: absolute; left: 0; top: 0;
  width: 23px; height: 23px; border-radius: 7px; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-size: 12px; font-weight: 800;
}
.mm-list b { display: block; }
.mm-list span { color: var(--slate); font-size: 14.5px; }

/* weak vs strong closing language */
.mm-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mm-vs > div { border-radius: 13px; padding: 16px 18px; border: 1px solid var(--line); background: var(--surface); }
.mm-vs .weak { border-left: 5px solid #8b2c2c; }
.mm-vs .strong { border-left: 5px solid #1a7a3c; }
.mm-vs h4 {
  margin: 0 0 8px; font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; font-weight: 800;
}
.mm-vs .weak h4 { color: #8b2c2c; }
.mm-vs .strong h4 { color: #1a7a3c; }
.mm-vs p { margin: 0 0 7px; font-size: 15.5px; line-height: 1.5; }
.mm-vs p:last-child { margin-bottom: 0; }

.mm-close {
  margin-top: 30px; background: var(--soft-blue); border-radius: 16px; padding: 22px 26px;
}
.mm-close h3 { margin: 0 0 8px; font-size: 20px; }
.mm-close p { margin: 0 0 8px; font-size: 16px; line-height: 1.6; }
.mm-close p:last-child { margin-bottom: 0; }

.mm-foot { margin: 34px 0 0; font-size: 12.5px; color: var(--slate); line-height: 1.6; }

@media (max-width: 860px) {
  .mm-open, .mm-grid, .mm-vs { grid-template-columns: 1fr; }
  .mm-block { grid-template-columns: 72px 1fr; gap: 14px; }
  .mm-when { font-size: 13.5px; }
  .mm-block h3 { font-size: 19px; }
}

@media print {
  .topbar, .mm-open, .inline-feedback-trigger { display: none; }
  .mm-purpose, .mm-close { background: #fff; color: #17233b; border: 2px solid #17233b; }
  .mm-block { break-inside: avoid; page-break-inside: avoid; }
  .mm-head h1 { font-size: 26px; }
}

/* The thinking behind a block lives in the training, one link away — small
   and secondary, so it never competes with what to open during the meeting. */
.mm-why {
  display: block; margin-top: 10px; font-size: 13px; font-weight: 600;
  color: var(--slate); text-decoration: none;
  border-bottom: 1px dotted rgba(86,97,113,.5); width: fit-content;
}
.mm-why:hover { color: var(--blue); border-bottom-color: var(--blue); }
.mm-close .mm-why { margin-top: 12px; }
