/* =============================================================
   AuditFlow Suisse — styles.css
   1. Tokens · 2. Reset & base · 3. Utilities · 4. Header
   5. Hero · 6. Tool card · 7. Report · 8. Content sections
   9. Footer · 10. Responsive · 11. Reduced motion · 12. Print
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #f5f6f9;
  --paper: #ffffff;
  --ink: #101a2c;
  --ink-soft: #47536a;
  --muted: #71809a;
  --line: #e2e6ee;
  --line-soft: #edf0f5;
  --accent: #163f6b;
  --accent-deep: #0e2c4d;
  --accent-soft: #e8eef6;
  --swiss: #d8232a;
  --green: #177a4d;
  --green-bg: #e7f4ec;
  --amber: #8f6400;
  --amber-bg: #fdf3d9;
  --red: #b3261e;
  --red-bg: #fbebe9;
  --info-bg: #eef1f6;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(16, 26, 44, .05), 0 10px 30px -12px rgba(16, 26, 44, .12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.12; letter-spacing: -0.015em; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.wrap { max-width: 1080px; margin-inline: auto; padding-inline: var(--gutter); }
.muted { color: var(--muted); }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
html:not(.is-ready) [data-reveal] { opacity: 1; transform: none; } /* JS caído → contenido visible */

/* =============================================================
   4. Header
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(160%) blur(10px);
}
.site-header .wrap { display: flex; align-items: center; gap: 1rem; min-height: 60px; }
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 650; letter-spacing: -.01em; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand small { display: block; font-weight: 500; color: var(--muted); font-size: .68rem; line-height: 1.1; letter-spacing: .02em; }
.site-nav { margin-left: auto; display: none; gap: 1.2rem; font-size: .92rem; color: var(--ink-soft); }
.site-nav a:hover { color: var(--ink); }
.lang-switch { margin-left: auto; display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 2px; font-size: .8rem; font-weight: 600; }
.site-nav + .lang-switch { margin-left: 0; }
.lang-switch a, .lang-switch span { padding: .18rem .6rem; border-radius: 999px; color: var(--muted); }
.lang-switch .is-current { background: var(--accent); color: #fff; }
.lang-switch a:hover:not(.is-current) { color: var(--ink); }

/* =============================================================
   5. Hero
   ============================================================= */
.hero { padding: clamp(1.6rem, 4.5vw, 3rem) 0 1rem; text-align: center; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 640;
  font-size: clamp(1.75rem, 4.6vw, 2.9rem);
  max-width: 22ch; margin-inline: auto;
}
.hero-sub { max-width: 56ch; margin: .8rem auto 0; color: var(--ink-soft); font-size: clamp(.98rem, 1.6vw, 1.08rem); }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1rem; font-size: .8rem; }
.hero-badges span { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem; color: var(--ink-soft); }

/* =============================================================
   6. Tool card
   ============================================================= */
.tool-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.8rem);
  max-width: 960px; margin: 1.4rem auto 0;
  text-align: left;
}
.tool-top { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.tool-top h2 { font-size: 1.05rem; font-weight: 650; }
.tool-actions { display: flex; gap: .8rem; font-size: .85rem; }
.linkish { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.linkish:hover { color: var(--accent-deep); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; margin-bottom: 1.1rem; }
.step-tab {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px;
  padding: .5rem .4rem; font-size: .8rem; font-weight: 600; color: var(--muted);
  background: var(--bg);
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out), background .25s var(--ease-out);
}
.step-tab .n {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-size: .74rem;
  background: var(--line); color: var(--ink-soft);
}
.step-tab.is-active { background: var(--paper); border-color: var(--accent); color: var(--ink); }
.step-tab.is-active .n { background: var(--accent); color: #fff; }
.step-tab .lbl { display: none; }

.step-panel[hidden] { display: none; }

.fgrid { display: grid; grid-template-columns: 1fr; gap: .75rem .95rem; }
.field { display: flex; flex-direction: column; gap: .28rem; min-width: 0; }
.field > span { font-size: .8rem; font-weight: 600; color: var(--ink-soft); }
.field small { font-size: .72rem; color: var(--muted); font-weight: 400; }
.field input, .field select {
  font: inherit; font-size: .95rem; color: var(--ink);
  border: 1px solid #ccd4e0; border-radius: 10px;
  padding: .55rem .7rem; background: #fff; width: 100%;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input.amt { text-align: right; font-variant-numeric: tabular-nums; }
.check { flex-direction: row; align-items: center; gap: .55rem; padding-top: .2rem; }
.check input { width: 1.05rem; height: 1.05rem; accent-color: var(--accent); }
.check > span { font-weight: 500; font-size: .88rem; }

.cols-2 { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.bal-side h3, .step-panel > h3 { font-size: .92rem; font-weight: 650; margin-bottom: .6rem; color: var(--ink); }
.subtotal {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  border-top: 1px dashed var(--line); margin-top: .55rem; padding-top: .45rem;
  font-variant-numeric: tabular-nums;
}
.subtotal.grand { border-top: 2px solid var(--ink); color: var(--ink); font-size: .92rem; }

.balance-chip {
  display: inline-block; margin-top: .7rem; padding: .32rem .8rem;
  border-radius: 999px; font-size: .8rem; font-weight: 650;
}
.balance-chip.is-ok { background: var(--green-bg); color: var(--green); }
.balance-chip.is-off { background: var(--amber-bg); color: var(--amber); }

.plchips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.plchips span {
  background: var(--accent-soft); color: var(--accent-deep);
  border-radius: 8px; padding: .3rem .7rem; font-size: .8rem; font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.step-nav { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--accent); color: #fff; font-weight: 650; font-size: .95rem;
  border-radius: 11px; padding: .68rem 1.4rem;
  transition: background .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  box-shadow: 0 6px 18px -8px rgba(22, 63, 107, .55);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn--big { font-size: 1.02rem; padding: .8rem 1.7rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid var(--line); border-radius: 11px;
  padding: .62rem 1.1rem; font-weight: 600; font-size: .9rem; color: var(--ink-soft);
  background: var(--paper);
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.tool-msg {
  margin-top: .9rem; padding: .5rem .9rem; border-radius: 9px;
  background: var(--info-bg); color: var(--ink-soft); font-size: .85rem;
}
.privacy-note { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; justify-content: center; margin-top: 1rem; font-size: .8rem; color: var(--muted); }
.privacy-note strong { color: var(--ink-soft); font-weight: 600; }

.noscript-note {
  background: var(--amber-bg); color: var(--amber);
  border-radius: 10px; padding: .8rem 1rem; font-size: .9rem; margin-bottom: 1rem;
}

/* =============================================================
   7. Report
   ============================================================= */
.report-wrap { padding: 1.6rem 0 2.4rem; }
.report {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.2rem, 3.5vw, 2.6rem);
  max-width: 960px; margin-inline: auto;
}
.report-toolbar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: flex-end; max-width: 960px; margin: 0 auto .8rem; }

.rhead { border-bottom: 2px solid var(--ink); padding-bottom: 1.1rem; margin-bottom: 1.4rem; }
.rhead-brand { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.rhead-title { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 640; margin-top: .3rem; }
.rhead-sub { color: var(--muted); font-size: .9rem; margin-top: .15rem; }
.rhead-company { font-size: 1.15rem; font-weight: 700; margin-top: .9rem; }
.rhead-meta { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem .5rem; margin-top: .55rem; font-size: .78rem; color: var(--ink-soft); }
.rhead-meta li { background: var(--info-bg); border-radius: 6px; padding: .18rem .55rem; }

.rsec { margin-top: 1.7rem; }
.rsec-title {
  font-family: var(--serif); font-size: 1.18rem; font-weight: 640;
  display: flex; align-items: baseline; gap: .55rem;
  border-bottom: 1px solid var(--line); padding-bottom: .4rem; margin-bottom: .8rem;
}
.rsec-num { font-family: var(--sans); font-size: .72rem; font-weight: 700; color: var(--accent); background: var(--accent-soft); border-radius: 6px; padding: .1rem .45rem; transform: translateY(-2px); }
.rsub { font-size: .92rem; font-weight: 650; margin: 1rem 0 .4rem; }
.rnote { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }
.rnote--red { color: var(--red); font-weight: 600; }
.rnote--amber { color: var(--amber); font-weight: 600; }
.rnote--disclaimer { border-top: 1px dashed var(--line); padding-top: .7rem; margin-top: 1rem; font-size: .78rem; color: var(--muted); }

.summary-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
.summary-text p { font-size: .95rem; margin-top: .4rem; }
.summary-lists h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: .7rem 0 .3rem; }
.summary-lists ul { list-style: none; padding: 0; font-size: .88rem; }
.summary-lists li { padding-left: 1.15rem; position: relative; margin-top: .25rem; }
.list-good li::before { content: "▲"; position: absolute; left: 0; font-size: .6rem; top: .35rem; color: var(--green); }
.list-bad li::before { content: "▼"; position: absolute; left: 0; font-size: .6rem; top: .35rem; color: var(--red); }
.summary-lists li.muted::before { content: ""; }

.ring { position: relative; width: 132px; margin-inline: auto; }
.ring svg { width: 132px; height: 132px; }
.ring-bg { fill: none; stroke: var(--line-soft); stroke-width: 11; }
.ring-fg { fill: none; stroke-width: 11; stroke-linecap: round; transition: stroke-dashoffset 1s var(--ease-out); }
.ring--green .ring-fg { stroke: var(--green); }
.ring--amber .ring-fg { stroke: var(--amber); }
.ring--red .ring-fg { stroke: var(--red); }
.ring-label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ring-label strong { font-size: 1.9rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.ring-label span { font-size: .72rem; color: var(--muted); font-weight: 600; }

.kf-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
.kf-list dl { display: grid; grid-template-columns: 1fr; gap: .3rem .9rem; font-size: .88rem; }
.kf-list dl > div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dotted var(--line); padding: .22rem 0; }
.kf-list dt { color: var(--ink-soft); }
.kf-list dd { font-weight: 650; font-variant-numeric: tabular-nums; white-space: nowrap; }

.bchart { border: 1px solid var(--line); border-radius: 10px; padding: .9rem; }
.bchart figcaption { font-size: .8rem; font-weight: 650; color: var(--ink-soft); margin-bottom: .6rem; }
.bchart-cols { display: flex; gap: .9rem; height: 300px; }
.bcol { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.bcol-stack { flex: 1; display: flex; flex-direction: column-reverse; gap: 2px; }
.bseg { border-radius: 5px; display: grid; place-content: center; text-align: center; overflow: hidden; }
.bseg span { font-size: .66rem; line-height: 1.25; color: #fff; font-weight: 600; padding: .15rem .3rem; }
.bseg--uv { background: #3f6ea6; }
.bseg--av { background: var(--accent-deep); }
.bseg--kfk { background: #b3261e; }
.bseg--lfk { background: #cf7b3a; }
.bseg--ek { background: var(--green); }
.bcol-label { text-align: center; font-size: .78rem; font-weight: 650; color: var(--ink-soft); margin-top: .4rem; }

.mtable-wrap { overflow-x: auto; }
.mtable { width: 100%; border-collapse: collapse; font-size: .86rem; }
.mtable th {
  text-align: left; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); font-weight: 650; padding: .35rem .6rem .35rem 0; border-bottom: 1px solid var(--line);
}
.mtable td { padding: .55rem .6rem .55rem 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.mrow-name strong { display: block; font-size: .88rem; }
.mrow-name small { display: block; color: var(--muted); font-size: .74rem; line-height: 1.45; max-width: 42ch; margin-top: .1rem; }
.mrow-val { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mrow-bench { color: var(--muted); font-size: .76rem; max-width: 20ch; }
.mrow--red .mrow-val { color: var(--red); }
.mrow--green .mrow-val { color: var(--green); }

.chip {
  display: inline-block; padding: .18rem .6rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
}
.chip--green { background: var(--green-bg); color: var(--green); }
.chip--amber { background: var(--amber-bg); color: var(--amber); }
.chip--red { background: var(--red-bg); color: var(--red); }
.chip--info, .chip--na { background: var(--info-bg); color: var(--muted); }

.verdict { border-radius: 10px; padding: .8rem 1rem; margin-top: .7rem; border: 1px solid transparent; }
.verdict-title { font-weight: 700; font-size: .93rem; }
.verdict-body { font-size: .85rem; margin-top: .3rem; }
.verdict--green { background: var(--green-bg); border-color: #bfe0cc; color: #0f5c39; }
.verdict--amber { background: var(--amber-bg); border-color: #ecd9a0; color: #6d4d00; }
.verdict--red { background: var(--red-bg); border-color: #efc2be; color: #8c1d17; }
.verdict--info { background: var(--info-bg); border-color: var(--line); color: var(--ink-soft); }

.reco-list { padding-left: 1.2rem; font-size: .89rem; }
.reco-list li { margin-top: .55rem; }

/* =============================================================
   8. Content sections (SEO, cómo funciona, FAQ, ads)
   ============================================================= */
.section { padding: 2.6rem 0 0; }
.section h2 { font-family: var(--serif); font-size: clamp(1.35rem, 3vw, 1.8rem); font-weight: 640; text-align: center; max-width: 30ch; margin-inline: auto; }
.section-sub { text-align: center; color: var(--muted); max-width: 52ch; margin: .5rem auto 0; font-size: .93rem; }

.howto { display: grid; grid-template-columns: 1fr; gap: .9rem; max-width: 960px; margin: 1.6rem auto 0; }
.howto article { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.howto .hn { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 700; margin-bottom: .6rem; }
.howto h3 { font-size: 1rem; margin-bottom: .3rem; }
.howto p { font-size: .88rem; color: var(--ink-soft); }

.seo-text { max-width: 720px; margin: 1.6rem auto 0; }
.seo-text h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
.seo-text p { font-size: .95rem; color: var(--ink-soft); margin-top: .6rem; }

.faq { max-width: 720px; margin: 1.4rem auto 0; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: .9rem 1.1rem; margin-top: .6rem;
}
.faq summary { font-weight: 650; font-size: .95rem; cursor: pointer; list-style: none; position: relative; padding-right: 1.6rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-52%); font-size: 1.2rem; color: var(--accent); transition: transform .3s var(--ease-out); }
.faq details[open] summary::after { transform: translateY(-52%) rotate(45deg); }
.faq details p { font-size: .89rem; color: var(--ink-soft); margin-top: .55rem; }

.ad-slot {
  max-width: 960px; margin: 2.2rem auto 0;
  min-height: 100px; border: 1px dashed #ccd4e0; border-radius: 10px;
  display: grid; place-content: center;
  color: #b3bccb; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255, 255, 255, .5);
}

/* =============================================================
   9. Footer
   ============================================================= */
.site-footer { margin-top: 3rem; background: var(--accent-deep); color: #cfdbea; }
.site-footer .wrap { padding-block: 2rem 1.6rem; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; font-size: .85rem; }
.foot-brand { font-weight: 700; color: #fff; display: flex; align-items: center; gap: .5rem; }
.foot-brand .brand-mark { width: 26px; height: 26px; }
.foot-note { font-size: .78rem; color: #9db2c8; max-width: 46ch; margin-top: .5rem; }
.foot-links { display: flex; flex-direction: column; gap: .35rem; }
.foot-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot-legal { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 1.4rem; padding-top: 1rem; font-size: .75rem; color: #8ba2bb; display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; justify-content: space-between; }

/* páginas legales */
.legal-page { max-width: 720px; margin: 2.5rem auto; padding-inline: var(--gutter); }
.legal-page h1 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 1rem; }
.legal-page h2 { font-size: 1.1rem; margin: 1.6rem 0 .4rem; }
.legal-page p, .legal-page li { font-size: .92rem; color: var(--ink-soft); margin-top: .5rem; }
.legal-page .todo { background: var(--amber-bg); color: var(--amber); border-radius: 8px; padding: .5rem .8rem; font-size: .85rem; }

/* =============================================================
   10. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .step-tab .lbl { display: inline; }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .fgrid .span2 { grid-column: span 2; }
}
@media (min-width: 720px) {
  .site-nav { display: flex; }
  .howto { grid-template-columns: repeat(3, 1fr); }
  .summary-grid { grid-template-columns: 150px 1fr; }
  .summary-lists { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
  .summary-lists h4 { margin-top: .4rem; }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
  .kf-grid { grid-template-columns: 1.1fr 1fr; }
}
@media (min-width: 960px) {
  .cols-2 { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .summary-grid { grid-template-columns: 150px 1fr 1.1fr; }
  .summary-lists { grid-column: auto; display: block; }
}

/* =============================================================
   11. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ring-fg { transition: none; }
}

/* =============================================================
   12. Print — solo el informe
   ============================================================= */
@media print {
  @page { margin: 13mm; }
  body { background: #fff; }
  body > *:not(main) { display: none !important; }
  main > *:not(.report-wrap) { display: none !important; }
  .report-toolbar, .no-print { display: none !important; }
  .report-wrap { padding: 0; }
  .report { border: 0; box-shadow: none; padding: 0; max-width: none; }
  .rsec { break-inside: avoid-page; }
  .chip, .verdict, .bseg, .rhead-meta li, .ring-fg, .ring-bg {
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  .bchart-cols { height: 240px; }
  a { text-decoration: none; }
}
