/* ============================================================
   MUL M365 — Unified Stylesheet
   Covers: main page, timeline widget, FAQ page
   ============================================================ */

/* -- TOKENS -- */
:root {
  /* Teal ramp */
  --t:          #00727e;
  --t-dark:     #00555e;
  --t-deep:     #003d44;
  --t-mid:      #0a8a96;
  --t-base:     #159aa6;
  --t-light:    #8fc7cd;
  --t-pale:     #e3f1f3;
  --t-text:     #004F58;
  --t-border:   #b8dde0;

  /* Accent */
  --accent:     #0f7fb5;
  --label-gold: #ffcf5a;

  /* Surfaces */
  --bg:         #eef4f5;
  --white:      #ffffff;

  /* Text */
  --ink:        #0e1718;
  --muted:      #2e3a3c;
  --hint:       #516063;

  /* Borders */
  --rule:       rgba(0,0,0,.10);
  --rule-row:   rgba(0,0,0,.12);
  --rule-soft:  #e2e2e0;

  /* Radii */
  --r-sm:  6px;
  --r-md:  8px;
  --r-lg:  12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.10);
  --shadow-md: 0 8px 18px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 18px 44px rgba(0,0,0,.22), 0 10px 22px rgba(0,0,0,.14);
}

/* -- BASE -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 110%; }
@media (max-width: 720px) { html { font-size: 100%; } }
body { background: var(--bg); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--t-dark); }
a:hover { color: var(--t); }

/* -- LAYOUT -- */
.m365-content {
  max-width: 1040px; margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  display: flex; flex-direction: column; gap: 2.25rem;
  background: var(--bg);
}
.m365-divider { height: 1px; background: var(--rule-soft); border: 0; }

/* FAQ page */
.page { max-width: 860px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }

/* -- SECTION HEADER (main page) -- */
.m365-sh {
  background: var(--t);
  border: 1px solid rgba(0,0,0,.16);
  border-radius: var(--r-md);
  padding: .5rem .75rem; margin-bottom: .75rem;
  box-shadow: var(--shadow-md); color: #fff;
}
.m365-sh-label {
  display: inline-block;
  font-size: .6875rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #2b2100; margin-bottom: 8px; padding: 3px 10px; border-radius: 999px;
  background: linear-gradient(180deg, var(--label-gold), #ffbf2f); border: 0;
}
.m365-sh-title {
  font-size: 1.25rem; font-weight: 700; color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}

/* -- GRIDS -- */
.m365-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; align-items: stretch; }
.m365-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.m365-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

/* -- CARDS -- */
.m365-card {
  background: var(--white);
  border: 1px solid var(--rule-row);
  border-radius: var(--r-lg);
  padding: 0; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.m365-card-header {
  background: var(--t);
  padding: 1rem 1.25rem; display: flex; gap: .7rem; align-items: center;
  color: #fff; border-bottom: 1px solid rgba(0,0,0,.25);
}
.m365-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.m365-card-title { font-size: 1rem; font-weight: 700; color: #fff; }
.m365-card-body-wrap { padding: 1.05rem 1.25rem; display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.m365-card-body { font-size: .84375rem; color: var(--muted); line-height: 1.65; flex: 1; }
.m365-card-table { width: 100%; border-collapse: collapse; }
.m365-card-table td {
  font-size: .84375rem; color: var(--muted); line-height: 1.55;
  padding: 9px 0; border-top: 1px solid var(--rule-row); vertical-align: top;
}
.m365-card-table tr:first-child td { border-top: none; padding-top: 0; }
.m365-card-table tr:last-child td { padding-bottom: 0; }

/* SVG contrast fix for card/app icons */
.m365-card-icon, .m365-app-icon { color: #fff; }
.m365-card-icon svg [stroke], .m365-app-icon svg [stroke] { stroke: currentColor !important; }
.m365-card-icon svg *, .m365-app-icon svg * { opacity: 1 !important; }

/* -- CTA BUTTON -- */
.m365-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 700; color: #fff;
  background: linear-gradient(180deg, var(--t), var(--t-dark));
  border-radius: var(--r-sm);
  padding: 9px 14px; text-decoration: none; align-self: flex-start; border: 0;
  box-shadow: 0 10px 22px rgba(0,114,126,.34);
  transition: transform .12s, box-shadow .12s, filter .12s;
}
.m365-cta-btn:hover { filter: brightness(1.07); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,114,126,.42); }
.m365-cta-btn:focus-visible { outline: 3px solid rgba(21,154,166,.45); outline-offset: 2px; }

/* -- APP TILES -- */
.m365-app-tile {
  background: var(--white);
  border: 1px solid var(--rule-row);
  border-radius: 10px;
  padding: 1.1rem 1rem; display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s, box-shadow .16s, background .16s, border-color .16s;
}
.m365-app-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(180deg, var(--t), var(--t-dark));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 6px 14px rgba(0,114,126,.35);
}
.m365-app-name { font-size: .84375rem; font-weight: 700; color: var(--ink); }
.m365-app-desc { font-size: .78125rem; color: var(--hint); line-height: 1.55; }

/* -- MAIN PAGE FAQ (link-style) -- */
.m365-faq { display: flex; flex-direction: column; gap: 1px; }
.m365-faq-item {
  background: var(--white);
  border: 1px solid var(--rule-row);
  border-radius: var(--r-md);
  padding: .25rem .35rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background .12s, border-color .12s, box-shadow .12s, transform .12s;
}
.m365-faq-item:hover { background: #dbecef; border-color: rgba(0,0,0,.18); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.m365-faq-q { font-size: .84375rem; color: var(--ink); line-height: 1.4; font-weight: 600; }
.m365-faq-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--t);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .12s, filter .12s;
}
.m365-faq-item:hover .m365-faq-arrow { filter: brightness(1.05); }
.m365-faq-item:hover .m365-faq-arrow path { stroke: #fff; }
.m365-faq-item.is-open .m365-faq-arrow { transform: rotate(180deg); }
.m365-faq-more { font-size: .78125rem; font-weight: 700; color: var(--t-dark); text-decoration: none; margin-top: 10px; display: inline-block; }
.m365-faq-more:hover { color: var(--t); }

/* -- SPEICHER -- */
.m365-speicher {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule-row); border-radius: 10px; overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.m365-speicher-row {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--rule-row);
}
.m365-speicher-row:last-child { border-bottom: none; }
.m365-speicher-val { font-size: 1.625rem; font-weight: 800; color: var(--t-dark); min-width: 72px; line-height: 1; }
.m365-speicher-label { font-size: .84375rem; color: var(--muted); line-height: 1.4; }

/* -- SUPPORT BAR -- */
.m365-support, .support {
  background: var(--t);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem; 
  display: flex; align-items: center; justify-content: flex-start; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 8px 28px rgba(0,114,126,.30); color: #fff;
}
.support { margin-top: 2.5rem; }
.m365-support-title, .support-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.m365-support-sub, .support-sub { color: #bfe5e9; font-size: .8125rem; }
.m365-support-links, .support-links { display: flex; gap: 8px; flex-wrap: wrap; margin-left: auto; margin-right: auto; }
.m365-support-link, .support-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 600; color: #0b2326;
  background: linear-gradient(180deg, #fff, #e9f1f2);
  border-radius: var(--r-sm); padding: 7px 13px; text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.22);
  transition: transform .12s, background .12s, box-shadow .12s;
}
.m365-support-link:hover, .support-link:hover { background: linear-gradient(180deg, #fff, #dfe9ea); transform: translateY(-1px); box-shadow: 0 10px 18px rgba(0,0,0,.28); }
.m365-support-link svg, .support-link svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--t); }
.m365-support-link, .support-link { color: #0b2326 !important; }
.m365-support-link.external-link::before,
.m365-support-link.external-link::after,
.support-link.external-link::before,
.support-link.external-link::after { display: none !important; }

/* -- AUDIENCE BAR -- */
.m365-audience {
  display: flex; gap: 1.5rem; padding: 1.5rem 2rem; max-width: 1040px; margin: 0 auto;
  flex-wrap: nowrap; justify-content: center;
}
.m365-audience-link {
  display: inline-block; flex: 0 0 auto; background: var(--t); color: #fff;
  font-size: 1.375rem; font-weight: 700;
  padding-inline: 6rem; padding-block: .85rem; text-decoration: none; letter-spacing: .01em;
}
.m365-audience-link:hover { background: var(--t-deep); }

/* -- TIMELINE WIDGET -- */
.timeline-section *, .timeline-section *::before, .timeline-section *::after { box-sizing: border-box; margin: 0; padding: 0; }
.timeline-section td::before, .timeline-section td::after { content: none !important; }
.timeline-section {
  background: var(--white); border: 1px solid var(--rule-soft);
  padding: 2.5rem; max-width: 640px; margin: 0 auto;
  font-family: var(--font); font-size: 15px; line-height: 1.65; color: var(--ink);
}
.timeline-section .tl-header { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.timeline-section .tl-header-icon { flex-shrink: 0; color: var(--t); margin-top: 3px; }
.timeline-section .tl-header-icon svg { width: 42px; height: 42px; }
.timeline-section .tl-header-body { flex: 1; }
.timeline-section .tl-header h1 { font-size: 1.35rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); line-height: 1.2; margin-bottom: .6rem; }
.timeline-section .lead { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: .9rem; }
.timeline-section .tl-wrap { position: relative; }
.timeline-section .tl-wrap::before { content: ''; position: absolute; left: 1.05rem; top: 0; bottom: 0; width: 2px; background: var(--t); z-index: 0; }
.timeline-section .tl-item { position: relative; margin-bottom: 0; }
.timeline-section .tl-banner { display: flex; align-items: center; gap: .85rem; color: white; padding: .65rem 1.25rem; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--t); cursor: pointer; user-select: none; }
.timeline-section .tl-banner:hover { background: var(--t-dark); }
.timeline-section .tl-num { width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.timeline-section .banner-chevron { margin-left: auto; width: 16px; height: 16px; color: rgba(255,255,255,.7); transition: transform .2s; flex-shrink: 0; }
.timeline-section .tl-banner.tl-open .banner-chevron { transform: rotate(180deg); }
.timeline-section .tl-content { padding: 1.35rem 1.4rem 1.5rem; border-bottom: 1px solid var(--rule-soft); }
.timeline-section .tl-item:last-child .tl-content { border-bottom: none; }
.timeline-section .entry { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: .9rem; }
.timeline-section .entry:last-child { margin-bottom: 0; }
.timeline-section .entry-icon { flex-shrink: 0; margin-top: 2px; color: var(--t); width: 18px; height: 18px; }
.timeline-section .entry-icon svg { width: 18px; height: 18px; }
.timeline-section .entry-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: .35rem; }
.timeline-section .entry-body p:last-child { margin-bottom: 0; }
.timeline-section .entry-body p strong { color: var(--ink); font-weight: 700; }
.timeline-section .entry-body a { color: var(--t); text-decoration: underline; text-underline-offset: 2px; font-size: 13.5px; }
.timeline-section .entry-sep { height: 1px; background: var(--rule-soft); margin: .9rem 0; }
.timeline-section .entry-date { font-size: 13px; font-weight: 800; color: var(--t-text); margin-bottom: 6px; }
.timeline-section .entry-date-sep { margin: 0 .4rem; color: var(--hint); }
.timeline-section .entry-alert { margin: 0; background: rgba(0,114,126,.04); padding: 8px 10px; border-radius: var(--r-sm); color: #08393b; }
.timeline-section .entry-alert strong { color: inherit; font-weight: 700; }
.timeline-section .tl-event-table { width: 100%; margin-top: .5rem; }
.timeline-section .tl-event-icon-cell { width: 20px; vertical-align: top; padding: 3px 6px 6px 0; font-size: 0; line-height: 0; }
.timeline-section .tl-event-icon-cell svg { width: 14px; height: 14px; display: block; }
.timeline-section .tl-event-icon-cell--last { padding-bottom: 0; }
.timeline-section .tl-event-text { font-size: 13px; color: var(--muted); line-height: 1.6; padding-bottom: 6px; }
.timeline-section .tl-event-text--last { padding-bottom: 0; }
.timeline-section .tl-event-label { color: var(--ink); font-size: 12px; }
.timeline-section .link-row { display: flex; flex-wrap: wrap; gap: .35rem .75rem; margin-top: .3rem; }
.timeline-section .link-row a { font-size: 13px; color: var(--t); text-decoration: underline; text-underline-offset: 2px; }
.timeline-section .link-hint { font-size: 12px; color: var(--hint); }
.timeline-section .login-steps { margin: .5rem 0 0; display: flex; flex-direction: column; gap: .4rem; }
.timeline-section .login-step { display: flex; gap: .65rem; align-items: flex-start; background: var(--bg); border: 1px solid var(--rule-soft); padding: .55rem .75rem; }
.timeline-section .ls-num { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--t); color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.timeline-section .ls-body { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.timeline-section .ls-body strong { color: var(--ink); font-weight: 700; }
.timeline-section .change-list { display: flex; flex-direction: column; border: 1px solid var(--rule-soft); overflow: hidden; }
.timeline-section .change-item { background: var(--white); border-top: 1px solid var(--rule-soft); }
.timeline-section .change-item:first-child { border-top: none; }
.timeline-section .change-item.warn-row .change-summary { background: #FFF8EE; border-left: 3px solid #D4790C; }
.timeline-section .change-summary { display: flex; align-items: center; gap: 11px; padding: 10px 14px; cursor: pointer; }
.timeline-section .change-summary:hover { background: var(--bg); }
.timeline-section .change-item.warn-row .change-summary:hover { background: #FFF0D0; }
.timeline-section .change-ico { flex-shrink: 0; width: 30px; height: 30px; background: var(--t-pale); display: flex; align-items: center; justify-content: center; }
.timeline-section .change-ico svg { width: 15px; height: 15px; color: var(--t); }
.timeline-section .change-item.warn-row .change-ico { background: #FFF0D0; }
.timeline-section .change-item.warn-row .change-ico svg { color: #D4790C; }
.timeline-section .change-title { font-size: 12.5px; font-weight: 700; color: var(--ink); flex: 1; }
.timeline-section .change-item.warn-row .change-title { color: #7A4800; }
.timeline-section .badge { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.timeline-section .badge-ok { background: var(--t-pale); color: var(--t-text); }
.timeline-section .badge-act { background: #FFF0D0; color: #7A4800; }
.timeline-section .row-chevron { width: 14px; height: 14px; color: var(--muted); flex-shrink: 0; transition: transform .2s; margin-left: 4px; }
.timeline-section .change-item.tl-is-open .change-summary { border-bottom: 1px solid var(--rule-soft); background: var(--t-pale); }
.timeline-section .change-item.warn-row.tl-is-open .change-summary { background: #FFF0D0; }
.timeline-section .change-detail-body { display: none; padding: 9px 14px 10px 55px; font-size: 12.5px; color: var(--muted); line-height: 1.65; background: var(--bg); }
.timeline-section .change-detail-body strong { color: var(--ink); font-weight: 700; }
.timeline-section .change-detail-body a { color: var(--t); text-decoration: underline; text-underline-offset: 2px; }

/* -- FAQ PAGE -- */
.hero { margin-bottom: 2.5rem; }
.hero-eyebrow { font-size: .6875rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--t); margin-bottom: .6rem; }
.hero h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: .75rem; }
.hero-sub { font-size: .9375rem; color: var(--hint); max-width: 600px; line-height: 1.7; }
.jump-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.jump-link {
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--t-dark); background: var(--white);
  border: 1px solid var(--t-border); border-radius: 999px;
  padding: 5px 14px; text-decoration: none;
  transition: background .14s, color .14s, border-color .14s, transform .14s;
}
.jump-link:hover { background: var(--t); color: #fff; border-color: var(--t); transform: translateY(-1px); }
.faq-section { margin-bottom: 1.5rem; }
.section-header {
  background: var(--t); color: #fff;
  border-radius: var(--r-md) var(--r-md) 0 0;
  padding: .55rem 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.section-header-icon { width: 20px; height: 20px; opacity: .8; flex-shrink: 0; }
.section-label { font-size: .6875rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.section-body {
  background: var(--white);
  border: 1px solid var(--rule); border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item { border-top: 1px solid var(--rule-soft); }
.faq-item:first-child { border-top: none; }
.faq-q {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.1rem; cursor: pointer;
  list-style: none; user-select: none;
  transition: background .12s;
}
.faq-q:hover { background: var(--t-pale); }
.faq-q-text { font-size: .875rem; font-weight: 700; color: var(--ink); flex: 1; line-height: 1.4; }
.faq-chevron {
  width: 22px; height: 22px; border-radius: 50%; background: var(--t-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .2s, background .15s;
}
.faq-chevron svg { width: 12px; height: 12px; color: var(--t); }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--t); }
.faq-item.open .faq-chevron svg { color: #fff; }
.faq-item.open .faq-q { background: var(--t-pale); }
.faq-a {
  display: none; padding: .1rem 1.1rem 1rem;
  font-size: .875rem; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--t-border); background: var(--white);
}
.faq-item.open .faq-a { display: block; }
.faq-a p { margin-bottom: .6rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--ink); font-weight: 700; }
.faq-a a { color: var(--t); text-underline-offset: 2px; }
.faq-a ul, .faq-a ol { padding-left: 1.2rem; margin: .4rem 0 .6rem; display: flex; flex-direction: column; gap: .35rem; }
.faq-a li { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.faq-a li strong { color: var(--ink); }
.faq-a .def-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; margin: .5rem 0; }
.faq-a .def-list li { display: flex; gap: .6rem; align-items: flex-start; }
.faq-a .def-list li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--t); margin-top: .45rem; }
.faq-a .steps { counter-reset: step; list-style: none; padding: 0; margin: .5rem 0; display: flex; flex-direction: column; gap: .5rem; }
.faq-a .steps li { display: flex; gap: .75rem; align-items: flex-start; }
.faq-a .steps li::before { counter-increment: step; content: counter(step); flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--t); color: #fff; font-size: .6875rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: .15rem; }
.faq-a .callout { background: var(--t-pale); border-left: 3px solid var(--t); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: .6rem .85rem; margin: .5rem 0; font-size: .8125rem; color: var(--muted); }
.faq-a .callout strong { color: var(--t-dark); }

/* -- BREADCRUMB -- */
.breadcrumb { display: none !important; }

/* -- EXTERNAL LINK ICON -- */
.external-link::before,
.external-link::after { display: none !important; }

/* -- SCROLL OFFSET FOR ANCHORS -- */
[id] { scroll-margin-top: 75px; 

window.addEventListener('load', function() {
  window.dispatchEvent(new Event('scroll'));
});


/* -- RESPONSIVE -- */
@media (max-width: 720px) {
  .m365-grid-3, .m365-grid-4, .m365-two-col { grid-template-columns: 1fr; gap: 14px; }
  .m365-content { padding: 2rem 1.25rem 3rem; gap: 1.8rem; }
  .m365-sh-title { font-size: 1.125rem; }
  .m365-audience { flex-direction: column; align-items: flex-start; gap: .75rem; padding: 0; }
  .m365-audience-link { width: auto; text-align: left; white-space: nowrap; padding-inline: 2rem; padding-block: .85rem; }
  .page { padding: 1.5rem 1rem 4rem; }
  .hero h1 { font-size: 1.4rem; }
  .support { flex-direction: column; align-items: flex-start; }
}