@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,500,0,0&family=Public+Sans:wght@400;500;600;700;800;900&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700;8..60,800&display=swap');

:root {
  --tis-paper: #f4f6f7;
  --tis-white: #ffffff;
  --tis-tint: #e8edef;
  --tis-ink: #182126;
  --tis-ink-2: #38464d;
  --tis-muted: #626f76;
  --tis-line: #dce2e5;
  --tis-line-2: #c4ced3;
  --tis-brand: #123c2f;
  --tis-brand-2: #0d3026;
  --tis-brand-3: #08251d;
  --tis-accent: #2f6a51;
  --tis-accent-2: #245640;
  --tis-brand-glass: #e7b84b;
  --tis-neutral-hover: #f1f3f4;
  --tis-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --tis-sans: "Public Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --tis-wrap: 1240px;
  --tis-shadow-soft: 0 1px 2px rgba(22, 27, 36, 0.03);
  --tis-shadow-h: 0 2px 10px rgba(22, 27, 36, 0.06);
  --accent: var(--tis-brand);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--tis-paper);
  color: var(--tis-ink);
  font-family: var(--tis-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:where(a, summary):focus-visible {
  outline: 2px solid var(--tis-accent);
  outline-offset: 3px;
}
h1, h2, h3, h4 {
  font-family: var(--tis-serif);
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--tis-ink);
  margin: 0;
  line-height: 1.12;
}
.wrap {
  width: 100%;
  max-width: var(--tis-wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- header ---------- */
.header {
  background: var(--tis-brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 18px rgba(8, 19, 36, 0.16);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(32px, 5vw, 72px);
  max-width: none;
  min-height: 64px;
  padding-right: clamp(48px, 5vw, 84px);
  padding-left: clamp(48px, 5vw, 84px);
}
.wordmark {
  font-family: var(--tis-serif);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.015em;
  color: #fff;
  white-space: nowrap;
}
.wordmark em {
  font-style: normal;
  color: var(--tis-brand-glass);
}
.site-nav-shell {
  min-width: 0;
  position: relative;
}
.site-nav-toggle { display: none; }
.site-nav-hint {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-padding-inline: 12px;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid transparent;
  border-radius: 0;
  white-space: nowrap;
}
.site-nav a:hover {
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
}
.site-nav a.active {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.34);
}
.header a:focus-visible,
.footer a:focus-visible,
.newsbox a:focus-visible { outline-color: var(--tis-brand-glass); }

/* ---------- shared editorial pieces ---------- */
.kicker {
  font-family: var(--tis-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tis-accent);
  margin: 0 0 10px;
  display: inline-block;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tis-muted);
  margin: 0 0 14px;
}
.crumb-link { color: var(--tis-ink-2); }
.crumb-link:hover { color: var(--tis-accent); text-decoration: underline; }
.crumb-sep { color: var(--tis-line-2); }
.crumb-current { color: var(--tis-muted); }
.shead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}
.shead h2 {
  font-size: 22px;
  font-weight: 800;
  white-space: normal;
  min-width: 0;
  overflow-wrap: anywhere;
}
.shead .line {
  flex: 1;
  height: 2px;
  background: var(--tis-ink);
  opacity: 0.8;
}
.shead .more {
  font-size: 13px;
  font-weight: 700;
  color: var(--tis-accent);
  white-space: nowrap;
}
.shead .more:hover { text-decoration: underline; }
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 10%, var(--tis-white));
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--tis-line));
  color: var(--accent);
  font-family: var(--tis-serif);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  flex: none;
}
.status-chip {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--tis-ink-2);
  background: var(--tis-tint);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ---------- homepage ---------- */
.front-hero {
  background: var(--tis-white);
  border-bottom: 1px solid var(--tis-line);
  padding: 42px 0 40px;
}
.front-hero .inner { max-width: 760px; }
.front-hero h1 {
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 800;
}
.front-hero p.lead {
  color: var(--tis-ink-2);
  font-size: 17px;
  line-height: 1.65;
  margin: 16px 0 0;
}
.front-section { padding: 34px 0 4px; }
.front-section:last-of-type { padding-bottom: 40px; }
.p-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.p-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--tis-white);
  border: 1px solid var(--tis-line);
  border-radius: 10px;
  padding: 13px 15px;
  box-shadow: var(--tis-shadow-soft);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.p-card:hover { border-color: var(--tis-line-2); box-shadow: var(--tis-shadow-h); }
.p-card .t { min-width: 0; }
.p-card .name {
  display: block;
  font-family: var(--tis-serif);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.2;
  color: var(--tis-ink);
}
.p-card .role {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--tis-muted);
  margin-top: 3px;
}

/* ---------- hub ---------- */
.hub-head {
  background: var(--tis-white);
  border-bottom: 1px solid var(--tis-line);
  padding: 30px 0 32px;
}
.hub-head .inner { max-width: 760px; }
.hub-head h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.hub-head p {
  color: var(--tis-ink-2);
  font-size: 16.5px;
  line-height: 1.62;
  margin: 13px 0 0;
}
.plist {
  padding: 30px 0 44px;
  display: grid;
  gap: 10px;
}
.prow {
  display: grid;
  grid-template-columns: auto minmax(0, 1.2fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  background: var(--tis-white);
  border: 1px solid var(--tis-line);
  border-radius: 10px;
  padding: 12px 18px;
  min-height: 66px;
  box-shadow: var(--tis-shadow-soft);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.prow:hover { border-color: var(--tis-line-2); box-shadow: var(--tis-shadow-h); }
.prow .name {
  font-family: var(--tis-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--tis-ink);
}
.prow .role {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--tis-muted);
}

/* ---------- profile page ---------- */
.profile-head {
  background: var(--tis-white);
  border-bottom: 1px solid var(--tis-line);
  padding: 28px 0 32px;
}
.profile-head .inner { max-width: 820px; }
.profile-head h1 { font-size: clamp(27px, 3.8vw, 38px); font-weight: 800; }
.profile-head p.lead {
  color: var(--tis-ink-2);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 14px 0 0;
}
.profile-head .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tis-muted);
}
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: center;
  padding: 30px 0 20px;
}
.article {
  background: var(--tis-white);
  border: 1px solid var(--tis-line);
  border-radius: 12px;
  padding: 30px 34px 34px;
  box-shadow: var(--tis-shadow-soft);
}
.article h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 38px 0 14px;
  line-height: 1.18;
}
.article section:first-child h2 { margin-top: 0; }
.article h3 {
  font-family: var(--tis-sans);
  font-size: 16.5px;
  font-weight: 700;
  margin: 24px 0 8px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.article p {
  margin: 0 0 13px;
  line-height: 1.72;
  color: var(--tis-ink-2);
  font-size: 15.5px;
}
.article ul { margin: 0 0 13px; padding-left: 20px; }
.article li { line-height: 1.66; color: var(--tis-ink-2); font-size: 15.5px; margin-bottom: 5px; }
.article li::marker { color: var(--tis-accent); }

/* ---------- text pages (E-E-A-T, 404) ---------- */
.page-article { padding: 30px 0 50px; }
.page-article .inner {
  max-width: 760px;
  background: var(--tis-white);
  border: 1px solid var(--tis-line);
  border-radius: 12px;
  padding: 32px 36px 38px;
  box-shadow: var(--tis-shadow-soft);
}
.page-article h1 { font-size: clamp(27px, 3.8vw, 36px); font-weight: 800; margin: 0 0 16px; }
.page-article h2 { font-size: 22px; font-weight: 800; margin: 30px 0 10px; }
.page-article h3 { font-family: var(--tis-sans); font-size: 16.5px; font-weight: 700; margin: 20px 0 6px; }
.page-article p { line-height: 1.72; color: var(--tis-ink-2); margin: 0 0 13px; font-size: 15.5px; }
.page-article .lead { font-size: 17px; color: var(--tis-ink-2); }
.page-article ul { margin: 0 0 13px; padding-left: 20px; }
.page-article li { line-height: 1.66; color: var(--tis-ink-2); margin-bottom: 5px; font-size: 15.5px; }
.page-article li::marker { color: var(--tis-accent); }
.page-article a { color: var(--tis-brand); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.page-article a:hover { color: var(--tis-accent); }
.text-link { color: var(--tis-brand); font-weight: 700; text-decoration: underline; }

/* ---------- footer ---------- */
.footer {
  background: var(--tis-brand-2);
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0;
}
.footer-top { padding: 44px 0 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-top .wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}
.fbrand .wordmark { color: #fff; font-size: 24px; }
.fbrand .wordmark em { color: var(--tis-brand-glass); }
.fbrand p {
  font-size: 13px;
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.55);
}
.fcol-title {
  font-family: var(--tis-sans);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.fcol a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  padding: 5px 0;
  transition: color 0.15s;
}
.fcol a:hover { color: #fff; }
.footer-bottom { padding: 16px 0 20px; }
.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .layout { grid-template-columns: 1fr; }
  .p-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .header .wrap {
    min-height: 64px;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
  }
  .wordmark { font-size: 23px; }
  .site-nav-shell {
    position: static;
    width: auto;
    margin: 0;
  }
  .site-nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .site-nav-toggle:hover,
  .site-nav-toggle[aria-expanded="true"] { background: rgba(255, 255, 255, .1); }
  .site-nav-toggle:focus-visible { outline: 2px solid var(--tis-brand-glass); outline-offset: 3px; }
  .site-nav-toggle .material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
  }
  .site-nav {
    position: absolute;
    z-index: 51;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 8px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: var(--tis-brand);
    box-shadow: 0 18px 32px rgba(4, 26, 19, .22);
    overflow: visible;
  }
  .site-nav-shell[data-open="true"] .site-nav { display: grid; }
  .site-nav a { padding: 11px 6px; font-size: 15px; }
  .site-nav a + a { border-top: 1px solid rgba(255, 255, 255, .1); }
  .site-nav-hint {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .footer-top .wrap { grid-template-columns: 1fr; gap: 26px; }
  .prow { grid-template-columns: auto minmax(0, 1fr) auto; }
  .prow .role { display: none; }
  .article { padding: 22px 20px 26px; }
  .page-article .inner { padding: 24px 20px 28px; }
}
@media (max-width: 560px) {
  .p-grid { grid-template-columns: 1fr; }
  .front-hero { padding: 30px 0 28px; }
}

/* ---------- f1blogg-inspired profile system ---------- */
.home-brand-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(500px, 36.5vw, 610px);
  overflow: hidden;
  background: var(--tis-brand-3);
}
.home-brand-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: rgba(4, 26, 19, .26);
  pointer-events: none;
}
.home-brand-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.96) contrast(1.02) brightness(1);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.home-brand-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  padding: 0 clamp(48px, 5vw, 84px);
  transform: translateY(20px);
}
.home-brand-hero h1,
.home-brand-hero p {
  margin: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .48);
}
.home-brand-hero h1 {
  max-width: 820px;
  font-family: var(--tis-sans);
  font-size: clamp(48px, 4.9vw, 80px);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.home-brand-hero .home-brand-hero-lede {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .91);
  font-family: var(--tis-sans);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  line-height: 1.5;
}
.home-brand-hero-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 6px;
  background: rgba(18, 60, 47, .92);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .005em;
  box-shadow: 0 10px 28px rgba(4, 20, 27, .24), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.home-brand-hero-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
@media (min-width: 761px) {
  .header .wrap {
    min-height: 64px;
    padding-right: clamp(40px, 3.55vw, 59px);
    padding-left: clamp(40px, 3.55vw, 59px);
  }
  .wordmark { font-size: 28px; }
  .site-nav-shell { margin-left: auto; }
  .site-nav a { font-size: 17px; }
  .home-brand-hero-copy {
    padding-right: clamp(54px, 5vw, 84px);
    padding-left: clamp(54px, 5vw, 84px);
  }
  .home-brand-hero-cta {
    width: auto;
    min-height: 52px;
  }
}
.home-about { background: #f7f5f0; border-bottom: 1px solid var(--tis-line); }
.home-about-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 430px; }
.home-about-copy {
  width: 100%;
  align-self: center;
  padding: 62px clamp(46px, 4.6vw, 74px) 62px clamp(54px, 7vw, 112px);
}
.home-about-copy h2 { font-size: clamp(36px, 3.25vw, 48px); line-height: 1.08; }
.home-about-copy p:not(.kicker) { margin: 18px 0 0; color: var(--tis-ink-2); font-size: 16.5px; line-height: 1.72; }
.home-about-image { position: relative; min-height: 430px; margin: 0; overflow: hidden; background: var(--tis-brand-2); }
.home-about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.02); }
#sportprofiler { scroll-margin-top: 96px; }

.home-hero {
  background: var(--tis-white);
  border-bottom: 1px solid var(--tis-line);
  padding: 34px 0;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}
.newsbox {
  background: var(--tis-brand-3);
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--tis-shadow-h);
}
.newsbox-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 19px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.newsbox-head p { margin: 0; font-family: var(--tis-serif); font-size: 21px; font-weight: 800; }
.newsbox-head span { color: rgba(255,255,255,0.58); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.newsbox-list { display: grid; }
.newsbox-list a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 67px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.newsbox-list a:last-child { border-bottom: 0; }
.newsbox-list a:hover { background: rgba(255,255,255,0.06); }
.newsbox-number { color: var(--tis-brand-glass); font-family: var(--tis-serif); font-size: 18px; font-weight: 800; }
.newsbox-list small { display: block; color: rgba(255,255,255,0.57); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.newsbox-list strong { display: block; margin-top: 2px; font-family: var(--tis-serif); font-size: 16px; line-height: 1.2; }

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}
.profile-card { 
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: var(--tis-white);
  border: 1px solid var(--tis-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--tis-shadow-soft);
  transition: box-shadow .16s, transform .16s;
}
.profile-card:hover { box-shadow: var(--tis-shadow-h); transform: translateY(-2px); }
.profile-visual { margin: 0; background: var(--tis-tint); }
.profile-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 24%;
}
.profile-card .profile-visual img { aspect-ratio: 4 / 3; }
.profile-visual-fallback {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 10%, var(--tis-white));
}
.profile-card-body { display: flex; flex: 1; flex-direction: column; padding: 16px 17px 18px; }
.card-kicker {
  display: block;
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.profile-card-title { display: block; margin: 0; font-family: var(--tis-serif); font-size: 21px; font-weight: 800; line-height: 1.15; }
.profile-card-text { display: block; color: var(--tis-ink-2); font-size: 14px; line-height: 1.55; margin-top: 8px; }
.profile-card-meta { display: block; color: var(--tis-muted); font-size: 11.5px; font-weight: 600; margin-top: auto; padding-top: 11px; }
.profile-card.is-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 1fr);
  align-items: stretch;
}
.profile-card.is-lead .profile-visual img { aspect-ratio: auto; min-height: 315px; }
.profile-card.is-lead .profile-card-body { display: flex; flex-direction: column; justify-content: center; padding: 30px 32px; }
.profile-card.is-lead .profile-card-title { font-size: clamp(27px, 3.2vw, 38px); }
.profile-card.is-lead .profile-card-text { font-size: 16px; }

/* Hubbfiltret. Raden ligger dold i HTML och avslöjas av hubbens inline-skript, så en
   besökare utan JS får hela listan i stället för en död knapprad. */
.hub-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding-top: 22px;
  padding-bottom: 4px;
}
.hub-filter[hidden] { display: none; }
.hub-filter-label {
  margin: 0;
  color: var(--tis-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.hub-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hub-filter-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tis-line-2);
  border-radius: 999px;
  background: var(--tis-white);
  color: var(--tis-ink-2);
  padding: 10px 16px;
  /* Touch target: 44px, samma golv som sajtens övriga pill-knappar. */
  min-height: 44px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}
.hub-filter-chip:hover { border-color: var(--accent); color: var(--tis-ink); }
.hub-filter-chip:focus-visible { outline: 2px solid var(--tis-accent); outline-offset: 3px; }
.hub-filter-chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.hub-listing { padding-top: 20px; padding-bottom: 46px; }
.hub-card-grid { margin-top: 14px; }
.hub-card-grid .profile-card-text {
  display: -webkit-box;
  min-height: 4.65em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
/* Faktarutan i boxen: sportens krav-slots, samma fält på varje kort. */
.profile-card-facts {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid var(--tis-line);
}
.profile-card-fact {
  display: grid;
  grid-template-columns: minmax(78px, 40%) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}
.profile-card-fact dt {
  color: var(--tis-muted);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.profile-card-fact dd {
  margin: 0;
  min-width: 0;
  color: var(--tis-ink-2);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.profile-card[hidden] { display: none; }

/* BILDKREDITER
   CC BY och CC BY-SA kraver upphovsperson, licens och kalla vid VARJE visning av
   verket, alltsa aven pa hubbkort och miniatyrer. Raden renderas av
   src/components/PhotoCredit.astro och stilen MASTE bo har: Astros scopade stilar
   nar aldrig en barnkomponents element. Global `a { color: inherit; text-decoration: none }`
   gor dessutom att lankarna behover bade farg och understrykning i viloläget. */
.tis-photo-credit {
  margin: 0;
  color: var(--tis-muted);
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.tis-photo-credit a {
  color: var(--tis-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.tis-photo-credit a:hover { color: var(--accent); }
.tis-hero-image .tis-photo-credit { margin-top: 0.45rem; font-size: 12.5px; }

/* Ramen bar krediten UTANFOR kortets lank (lankar far inte nastlas) och ar helt
   genomskinlig — kortet behaller sitt eget utseende. Hubbfiltret doljer bade kortet
   och ramen, annars skulle en ensam kreditrad bli kvar under ett bortfiltrerat kort. */
.profile-card-frame {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.profile-card-frame .profile-card { flex: 1 1 auto; }
.profile-card-frame .tis-photo-credit { padding: 6px 2px 0; }
.profile-card-frame[hidden] { display: none; }

.entity-head {
  background: #efede5;
  border-bottom: 1px solid var(--tis-line);
  padding: 28px 0 38px;
}
.profile-reading-column { max-width: 1010px; margin: 0 auto; }
.entity-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: 46px;
  align-items: center;
  max-width: 1010px;
  margin: 0 auto;
}
.entity-copy h1 { font-size: clamp(30px, 4.2vw, 45px); font-weight: 800; }
.entity-intro { max-width: 650px; margin: 15px 0 0; color: var(--tis-ink-2); font-size: 16px; line-height: 1.65; }
.tis-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--tis-muted); font-size: 12.5px; font-weight: 600; margin: 18px 0 0; }
.tis-byline-author { display: inline-flex; align-items: center; gap: 8px; color: var(--tis-ink); }
.tis-byline-author img { width: 32px; height: 32px; border: 1px solid var(--tis-line); border-radius: 50%; object-fit: cover; }
.tis-byline a { color: var(--tis-brand); text-decoration: underline; text-underline-offset: 3px; }
.tis-hero-image { margin: 0; overflow: hidden; border: 1px solid var(--tis-line); border-radius: 6px; background: var(--tis-paper); box-shadow: var(--tis-shadow-soft); }
.tis-hero-image img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 24%; }
.tis-hero-image figcaption { padding: 8px 11px 9px; color: var(--tis-muted); background: var(--tis-paper); font-size: 10.5px; line-height: 1.45; }
.tis-hero-image figcaption a { color: var(--tis-brand); text-decoration: underline; text-underline-offset: 2px; }
.profile-main { background: var(--tis-white); }
.profile-content-wrap { padding-top: 42px; padding-bottom: 62px; }
.quick-facts {
  max-width: 1010px;
  margin: 28px auto 0;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--tis-line);
  border-radius: 6px;
  padding: 20px 22px 22px;
  box-shadow: var(--tis-shadow-soft);
}
.quick-facts-title { margin: 0 0 11px; color: var(--tis-muted); font-family: var(--tis-sans); font-size: 11px; font-weight: 800; letter-spacing: .065em; line-height: 1.3; text-transform: uppercase; }
.quick-facts dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--tis-line);
}
.quick-fact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3px;
  align-content: center;
  flex: 1 1 calc(33.333% - 18px);
  min-width: 250px;
  padding: 10px 2px 11px;
  border-bottom: 1px solid var(--tis-line);
}
.quick-fact dt { color: var(--tis-muted); font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; }
.quick-fact dd { margin: 0; color: var(--tis-ink); font-size: 14px; font-weight: 700; line-height: 1.4; overflow-wrap: anywhere; }
.profile-article { max-width: 840px; width: 100%; margin: 0 auto; }
.profile-body > .profile-section {
  margin: 34px 0 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--tis-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.profile-body > .profile-section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.profile-body h2 { margin: 28px 0 12px; font-size: 24px; line-height: 1.2; }
.profile-body > .profile-section:first-child h2 { margin-top: 0; }
.profile-body h3 { margin: 22px 0 8px; font-family: var(--tis-serif); font-size: 19px; line-height: 1.24; }
.profile-body p { margin: 0 0 16px; color: var(--tis-ink-2); font-size: 17px; line-height: 1.66; }
.profile-body .section-answer { color: var(--tis-ink-2); font-size: 17px; font-weight: 400; line-height: 1.66; }
.profile-subsection {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.profile-career-summary { margin: 34px 0 38px; }
.profile-prose-list { display: grid; gap: 8px; margin: 2px 0 20px; padding-left: 22px; color: var(--tis-ink-2); }
.profile-prose-list li { padding-left: 4px; font-size: 16px; line-height: 1.62; }
.profile-article p a,
.profile-article li a { color: var(--tis-brand); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

.tis-faq { max-width: 800px; margin: 42px 0 0; padding-top: 36px; border-top: 1px solid var(--tis-line); }
.tis-faq.is-flush { margin-top: 0; }
.tis-faq > h2 { margin: 0 0 14px; font-size: 24px; font-weight: 700; line-height: 1.2; }
.tis-faq-list { display: grid; gap: 10px; }
.tis-faq-item { overflow: hidden; border: 1px solid var(--tis-line); border-radius: 6px; background: var(--tis-white); box-shadow: var(--tis-shadow-soft); }
.tis-faq-item[open] { border-color: var(--tis-line-2); box-shadow: var(--tis-shadow-h); }
.tis-faq-item summary { display: grid; grid-template-columns: minmax(0, 1fr) 22px; gap: 14px; align-items: center; min-height: 56px; padding: 15px 17px; cursor: pointer; list-style: none; color: var(--tis-ink); }
.tis-faq-item summary::-webkit-details-marker { display: none; }
.tis-faq-item summary::marker { content: ''; }
.tis-faq-item summary:focus-visible { outline: 2px solid var(--tis-ink); outline-offset: -3px; }
.tis-faq-item summary > h3 { display: block; margin: 0; color: inherit; font: inherit; font-size: 17px; font-weight: 700; line-height: 1.35; }
.tis-faq-chevron { display: grid; width: 22px; height: 22px; place-items: center; color: var(--tis-muted); transition: transform 160ms ease, color 160ms ease; }
.tis-faq-item summary:hover .tis-faq-chevron { color: var(--tis-accent); }
.tis-faq-item[open] .tis-faq-chevron { transform: rotate(180deg); color: var(--tis-accent); }
.tis-faq-answer { border-top: 1px solid var(--tis-line); padding: 14px 17px 17px; }
.tis-faq-answer p { margin: 0; color: var(--tis-ink-2); font-size: 16px; line-height: 1.6; }

.tis-author-box {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--tis-line);
  border-radius: 6px;
  background: var(--tis-white);
}
.tis-author-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.tis-author-box p { margin: 0; }
.tis-author-eyebrow { margin: 0 0 8px !important; color: var(--tis-muted) !important; font-size: 11px !important; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.tis-author-name { margin: 0 0 2px !important; color: var(--tis-ink) !important; font-family: var(--tis-serif); font-size: 21px !important; font-weight: 700; }
.tis-author-role { color: var(--tis-muted) !important; font-size: 12px !important; font-weight: 700; }
.tis-author-bio { margin: 9px 0 12px !important; color: var(--tis-ink-2) !important; font-size: 14px !important; line-height: 1.6 !important; }
.tis-author-link { display: inline; padding: 0; border: 0; background: none; color: var(--tis-ink-2); font-size: 13.5px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.tis-author-link:hover { color: var(--tis-ink); }
.tis-author-link:focus-visible { outline-color: var(--tis-ink); }

.tis-internal-links { margin-top: 42px; padding-top: 36px; border-top: 1px solid var(--tis-line); }
/* Centrerad titel mellan tva symmetriska linjer. minmax(0, auto) i mittspalten
   later langa sammansatta ord brytas i stallet for att spranga boxen. */
.tis-internal-links-head { display: grid; grid-template-columns: minmax(16px, 1fr) minmax(0, auto) minmax(16px, 1fr); gap: 14px; align-items: center; margin-bottom: 18px; }
.tis-internal-links-title { margin: 0; color: var(--tis-ink); font-family: var(--tis-serif); font-size: 24px; font-weight: 700; line-height: 1.2; text-align: center; overflow-wrap: break-word; }
.tis-internal-links-line { height: 1px; background: var(--tis-line-2); }
.tis-internal-links-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.editorial-page { background: var(--tis-white); padding: 30px 0 64px; }
.editorial-page-head { max-width: 780px; padding: 14px 0 34px; }
.editorial-page-head h1 { font-size: clamp(34px, 5vw, 52px); }
.editorial-page-head > p:last-child { margin: 16px 0 0; color: var(--tis-ink-2); font-size: 17px; line-height: 1.68; }
.editorial-team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.editorial-person-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 28px 24px 26px; border: 0; border-radius: 12px; background: var(--tis-paper); }
.editorial-person-card > img { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; margin-bottom: 4px; }
.editorial-person-role { margin: 0; color: var(--tis-accent); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.editorial-person-card h2 { margin: 0; font-size: 24px; }
.editorial-person-card > p:not(.editorial-person-role) { margin: 4px 0 0; color: var(--tis-ink-2); font-size: 14px; line-height: 1.6; }
.editorial-person-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 14px; padding: 10px 18px; border: 1px solid var(--tis-accent); border-radius: 999px; color: var(--tis-accent); font-size: 13px; font-weight: 700; transition: background-color .15s ease, color .15s ease; }
.editorial-person-link:hover, .editorial-person-link:focus-visible { background: var(--tis-accent); color: #fff; }
.editorial-profile { display: grid; grid-template-columns: 128px minmax(0, 1fr); gap: 28px; align-items: center; max-width: 880px; padding: 22px 0 38px; }
.editorial-profile-avatar { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; }
.editorial-profile h1 { font-size: clamp(34px, 5vw, 50px); }
.editorial-profile .lead { max-width: 720px; margin: 14px 0 0; color: var(--tis-ink-2); font-size: 17px; line-height: 1.68; }
.editorial-coverage,
.editorial-assignment { max-width: 840px; padding: 28px 0; border-top: 1px solid var(--tis-line); }
.editorial-coverage h2,
.editorial-assignment h2 { margin: 0 0 12px; font-size: 26px; }
.editorial-coverage p { margin: 0; color: var(--tis-ink-2); font-size: 16px; line-height: 1.72; }
.editorial-assignment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.editorial-assignment-grid .profile-card-title { font-size: 19px; }
.adcard, .ad-leader { border: 1px solid var(--tis-line); border-radius: 12px; background: var(--tis-white); }
.adcard { display: grid; gap: 8px; padding: 14px; }
.adcard img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 7px; }
.adcard strong { font-family: var(--tis-serif); font-size: 19px; }
.adcard b, .ad-leader b { color: var(--tis-accent); }
.adlabel { color: var(--tis-muted); font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ad-leader { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; margin: 0 0 28px; }
.ad-leader span { display: grid; }

@media (max-width: 980px) {
  .home-hero-grid, .entity-head-grid, .profile-card.is-lead { grid-template-columns: 1fr; }
  .profile-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-card.is-lead .profile-visual img { aspect-ratio: 16 / 9; min-height: 0; }
  .editorial-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .home-brand-hero { height: 540px; }
  .home-brand-hero::after { background: rgba(4, 26, 19, .35); }
  .home-brand-hero img { object-position: 50% center; }
  .home-brand-hero-copy { justify-content: center; padding: 34px 20px 30px; transform: translateY(14px); }
  .home-brand-hero h1 { max-width: 350px; font-size: clamp(40px, 11vw, 52px); line-height: 1; }
  .home-brand-hero .home-brand-hero-lede { max-width: 340px; margin-top: 20px; font-size: 16px; line-height: 1.5; }
  .home-brand-hero-cta { min-height: 48px; margin-top: 23px; padding: 12px 26px; font-size: 15px; }
  #sportprofiler { scroll-margin-top: 80px; }
  .home-about-inner { grid-template-columns: 1fr; min-height: 0; }
  .home-about-copy { max-width: none; padding: 42px 20px 38px; }
  .home-about-image { min-height: 0; aspect-ratio: 16 / 10; }
  .profile-card-grid { grid-template-columns: 1fr; }
  .entity-head-grid { gap: 22px; }
  .profile-card.is-lead .profile-card-body { padding: 22px 20px; }
  .tis-author-box { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .tis-internal-links-grid { grid-template-columns: 1fr; }
  .editorial-team-grid { grid-template-columns: 1fr; }
  .editorial-profile { grid-template-columns: 1fr; justify-items: start; }
}
@media (max-width: 560px) {
  .home-about-copy h2 { font-size: 31px; }
  .quick-facts { padding: 16px; }
  .quick-facts dl { display: block; }
  .quick-fact { min-width: 0; grid-template-columns: minmax(105px, 38%) minmax(0, 1fr); gap: 13px; }
  .profile-body h2 { font-size: 24px; }
  .tis-faq-item summary { padding: 14px 15px; }
  .tis-faq-answer { padding: 13px 15px 16px; }
  .hub-filter-chips { width: 100%; }
  .hub-filter-chip { white-space: nowrap; }
  .shead { align-items: flex-start; flex-wrap: wrap; row-gap: 8px; }
  .shead h2 { flex: 1 1 calc(100% - 92px); }
  .shead .line { display: none; }
  .shead .more { margin-left: auto; padding-top: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .tis-faq-chevron { transition: none; }
}
