/* =========================================================================== French IPTV — Base element styling & helpers Minimal, opinionated resets so specimens/components look right out of the box. =========================================================================== */ *, *::before, *::after { box-sizing: border-box; } body { margin: 0; font-family: var(--font-sans); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--text-body); background: var(--bg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; } h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-strong); font-weight: var(--fw-display); line-height: var(--lh-heading); letter-spacing: var(--ls-display); margin: 0; text-wrap: balance; } p { margin: 0; text-wrap: pretty; } a { color: var(--link); text-decoration: none; } a:hover { color: var(--link-hover); } /* Eyebrow / kicker label ------------------------------------------------ */ .fi-eyebrow { font-family: var(--font-sans); font-size: var(--text-eyebrow); font-weight: var(--fw-semibold); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--brand); } /* Lead paragraph -------------------------------------------------------- */ .fi-lead { font-size: var(--text-lead); line-height: var(--lh-relaxed); color: var(--text-body); } ::selection { background: var(--blue-200); color: var(--ink-900); } :focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--r-sm); }