/* FBM Cybersecurity Hub — Style v2
   Brand: Barlow Black Italic | Red #E41513 | Dark #111
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700;1,800;1,900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #E41513;
  --red-dk:    #b80f0d;
  --red-lt:    #fdecea;
  --dark:      #111111;
  --dark2:     #1c1c1c;
  --mid:       #4a4a4a;
  --muted:     #888;
  --border:    #e4e4e4;
  --bg:        #f4f4f4;
  --white:     #ffffff;
  --amber-bg:  #fffbeb;
  --green:     #15803d;
  --green-bg:  #f0fdf4;
  --blue:      #1d4ed8;
  --blue-bg:   #eff6ff;
  --font:      'Barlow', sans-serif;
  --r:         6px;
  --r-lg:      10px;
  --sh:        0 1px 3px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.05);
  --sh-lg:     0 6px 24px rgba(0,0,0,.11);
  --max:       1120px;
  --nav-h:     58px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 15px; line-height: 1.6; color: var(--dark); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; }
.tag-red    { background: var(--red); color: #fff; }
.tag-amber  { background: var(--amber-bg); color: #92400e; border: 1px solid #fde68a; }
.tag-green  { background: var(--green-bg); color: #166534; border: 1px solid #bbf7d0; }
.tag-dark   { background: #f0f0f0; color: var(--mid); border: 1px solid var(--border); }
.divider    { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 3px solid var(--red);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 28px; width: auto; }
.nav-logo-sep { width: 1px; height: 24px; background: rgba(255,255,255,.18); }
.nav-logo-text { font-style: italic; font-weight: 800; font-size: 12px; color: rgba(255,255,255,.8); letter-spacing: .04em; text-transform: uppercase; line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 10px; font-weight: 400; font-style: normal; color: rgba(255,255,255,.4); letter-spacing: .07em; }

.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.65); text-decoration: none; letter-spacing: .04em; text-transform: uppercase; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links .nav-cta { background: var(--red); color: #fff !important; padding: 7px 14px; border-radius: var(--r); }
.nav-links .nav-cta:hover { background: var(--red-dk); }

/* Mobile toggle — 3 bars */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.8); padding: 6px; width: 38px; height: 38px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .22s, opacity .22s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
}
.nav-drawer-panel {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-drawer.open .nav-drawer-panel { transform: translateY(0); opacity: 1; }
.nav-drawer-panel ul { list-style: none; padding: 8px 0 4px; }
.nav-drawer-panel ul li { border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-drawer-panel ul li:last-child { border: none; padding: 12px 20px 16px; }
.nav-drawer-panel ul a {
  display: block; padding: 15px 24px;
  font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.72); text-decoration: none; transition: background .15s, color .15s;
}
.nav-drawer-panel ul a:hover { background: rgba(255,255,255,.05); color: #fff; text-decoration: none; }
.drawer-cta-wrap { padding: 4px 20px 16px; }
.drawer-cta {
  display: block; background: var(--red); color: #fff !important;
  padding: 13px 24px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-align: center; text-decoration: none; transition: background .15s;
}
.drawer-cta:hover { background: var(--red-dk); text-decoration: none; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero { background: var(--dark); padding: 52px 0 44px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(228,21,19,.15) 0%, transparent 55%); pointer-events: none; }
.hero-geo { position: absolute; top: -50px; right: -60px; width: 420px; height: 420px; pointer-events: none; opacity: .07; }
.hero-geo rect { fill: none; stroke: #fff; stroke-width: 2; }
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.hero-title { font-style: italic; font-weight: 900; font-size: clamp(26px, 4vw, 48px); color: #fff; line-height: 1.07; text-transform: uppercase; margin-bottom: 14px; }
.hero-title em { color: var(--red); font-style: inherit; }
.hero-sub { font-size: 14px; color: rgba(255,255,255,.58); max-width: 480px; line-height: 1.65; margin-bottom: 22px; }
.hero-alert { display: inline-flex; align-items: center; gap: 8px; background: rgba(228,21,19,.14); border: 1px solid rgba(228,21,19,.3); border-radius: var(--r); padding: 8px 14px; font-size: 12px; color: rgba(255,255,255,.8); }
.hero-alert strong { color: #ff6b6b; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); }
.hero-stat-num { font-style: italic; font-weight: 900; font-size: 22px; color: var(--red); line-height: 1; }
.hero-stat-lbl { font-size: 10px; color: rgba(255,255,255,.42); margin-top: 3px; line-height: 1.4; max-width: 110px; }

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker-bar { background: var(--red); padding: 7px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 45s linear infinite; }
.ticker-item { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; padding: 0 26px; opacity: .92; }
.ticker-item::before { content: '●'; margin-right: 9px; opacity: .5; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip { background: var(--dark); padding: 28px 0; }
.stats-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.strip-num { font-style: italic; font-weight: 900; font-size: 28px; color: var(--red); line-height: 1; margin-bottom: 4px; }
.strip-lbl { font-size: 11px; color: rgba(255,255,255,.48); line-height: 1.4; }
.strip-src { font-size: 10px; color: rgba(255,255,255,.22); margin-top: 3px; }

/* ── MAIN LAYOUT ─────────────────────────────────────────────── */
.main-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; padding: 36px 0 56px; align-items: start; }

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.section-title { font-style: italic; font-weight: 900; font-size: 17px; text-transform: uppercase; color: var(--dark); letter-spacing: .02em; }
.section-title::before { content: ''; display: inline-block; width: 3px; height: 15px; background: var(--red); margin-right: 9px; vertical-align: middle; border-radius: 2px; }
.section-more { font-size: 12px; font-weight: 700; color: var(--red); }

/* ── ALERT BANNER ────────────────────────────────────────────── */
.alert-banner { background: var(--red); border-radius: var(--r-lg); padding: 14px 18px; display: flex; align-items: flex-start; gap: 11px; margin-bottom: 22px; }
.alert-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.alert-title { font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 12px; color: #fff; margin-bottom: 3px; letter-spacing: .03em; }
.alert-body { font-size: 12px; color: rgba(255,255,255,.85); line-height: 1.6; }
.alert-body a { color: #fff; font-weight: 700; }

/* ── FEATURED CARD ───────────────────────────────────────────── */
.card-featured { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh); overflow: hidden; margin-bottom: 22px; display: grid; grid-template-columns: 1fr 1fr; min-height: 280px; transition: box-shadow .2s; }
.card-featured:hover { box-shadow: var(--sh-lg); }
.card-visual { position: relative; overflow: hidden; min-height: 220px; }
.card-visual-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.05) 50%, transparent 100%); }
.card-severity { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.card-headline-vis { font-style: italic; font-weight: 900; font-size: 16px; color: #fff; text-transform: uppercase; line-height: 1.2; }
.card-body { padding: 22px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.card-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 9px; flex-wrap: wrap; }
.card-title { font-style: italic; font-weight: 900; font-size: 16px; color: var(--dark); text-transform: uppercase; line-height: 1.2; margin-bottom: 9px; }
.card-excerpt { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.card-date { font-size: 10px; color: var(--muted); }
.read-more { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .04em; }

/* ── NEWS GRID ───────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 22px; }
.card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh); overflow: hidden; transition: box-shadow .2s, transform .15s; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.card-img { height: 130px; position: relative; overflow: hidden; flex-shrink: 0; }
.card-img-inner { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 11px; }
.card-content { padding: 14px 15px 15px; flex: 1; display: flex; flex-direction: column; }
.card-content .card-meta { margin-bottom: 7px; }
.card-content .card-title { font-size: 13px; margin-bottom: 6px; }
.card-content .card-excerpt { font-size: 12px; line-height: 1.6; flex: 1; margin-bottom: 11px; }
.card-footer-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-date { font-size: 10px; color: var(--muted); }
.card-link { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .04em; }

.bg-breach  { background: linear-gradient(135deg, #1a0505 0%, #3a0808 100%); }
.bg-stealer { background: linear-gradient(135deg, #080810 0%, #18183a 100%); }
.bg-mfa     { background: linear-gradient(135deg, #081008 0%, #183a18 100%); }
.bg-advisory{ background: linear-gradient(135deg, #180e00 0%, #382000 100%); }
.bg-incident{ background: linear-gradient(135deg, #080808 0%, #282828 100%); }
.bg-guide   { background: linear-gradient(135deg, #00101a 0%, #002038 100%); }
.card-icon  { font-size: 28px; margin-bottom: 3px; line-height: 1; }
.card-icon-label { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.42); }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh); overflow: hidden; }
.sidebar-card-head { padding: 10px 15px; background: var(--dark); font-style: italic; font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: #fff; display: flex; align-items: center; gap: 7px; }
.head-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.sidebar-card-body { padding: 13px 15px; }

.threat-levels { display: flex; flex-direction: column; gap: 9px; }
.threat-row { display: flex; align-items: center; gap: 9px; }
.threat-label { font-size: 10px; font-weight: 600; color: var(--mid); min-width: 70px; text-transform: uppercase; line-height: 1.3; }
.threat-bar-wrap { flex: 1; background: #ececec; border-radius: 4px; height: 6px; overflow: hidden; }
.threat-bar { height: 100%; border-radius: 4px; }
.threat-val { font-size: 10px; font-weight: 700; color: var(--dark); min-width: 28px; text-align: right; }
.bar-critical { background: var(--red); }
.bar-high     { background: #f97316; }
.bar-medium   { background: #f59e0b; }
.threat-note  { font-size: 10px; color: var(--muted); margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--border); line-height: 1.5; }

.quick-links { display: flex; flex-direction: column; }
.quick-link { display: flex; align-items: center; gap: 9px; padding: 9px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: padding-left .15s; }
.quick-link:last-child { border-bottom: none; }
.quick-link:hover { padding-left: 3px; text-decoration: none; }
.quick-link-icon { font-size: 15px; flex-shrink: 0; color: var(--red); }
.quick-link-text { font-size: 12px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.quick-link-sub  { font-size: 10px; color: var(--muted); display: block; }

.stat-list { display: flex; flex-direction: column; gap: 11px; }
.stat-row-side { display: flex; align-items: center; gap: 11px; }
.stat-num { font-style: italic; font-weight: 900; font-size: 20px; color: var(--red); line-height: 1; min-width: 52px; }
.stat-text { font-size: 11px; color: var(--mid); line-height: 1.4; }
.stat-src  { font-size: 10px; color: var(--muted); margin-top: 1px; }

.contact-block { text-align: center; padding: 2px 0; }
.contact-block p { font-size: 12px; color: var(--mid); line-height: 1.6; margin-bottom: 13px; }
.contact-email { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; padding: 8px 16px; border-radius: var(--r); font-weight: 700; font-size: 12px; text-decoration: none; transition: background .15s; }
.contact-email:hover { background: var(--red-dk); text-decoration: none; }
.contact-site { display: block; margin-top: 9px; font-size: 11px; color: var(--muted); }
.contact-site a { color: var(--mid); }

/* ── ARTICLE ─────────────────────────────────────────────────── */
.article-layout { max-width: 740px; margin: 0 auto; padding: 36px 20px 64px; }
.article-back { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--mid); text-decoration: none; margin-bottom: 22px; }
.article-back:hover { color: var(--red); text-decoration: none; }
.article-header { margin-bottom: 26px; }
.article-meta { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; flex-wrap: wrap; }
.article-title { font-style: italic; font-weight: 900; font-size: clamp(20px, 3.5vw, 32px); color: var(--dark); text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.article-deck { font-size: 15px; color: var(--mid); line-height: 1.65; border-left: 4px solid var(--red); padding-left: 14px; }
.article-divider { border: none; border-top: 2px solid var(--border); margin: 24px 0; }
.article-body h2 { font-style: italic; font-weight: 900; font-size: 18px; text-transform: uppercase; color: var(--dark); margin: 26px 0 10px; }
.article-body p { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 13px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 13px; }
.article-body li { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 4px; }
.highlight-box { background: var(--red-lt); border-left: 4px solid var(--red); padding: 13px 15px; border-radius: 0 var(--r) var(--r) 0; margin: 18px 0; }
.highlight-box strong { color: var(--red); }
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.do-box { background: var(--green-bg); border: 1px solid #bbf7d0; border-radius: var(--r); padding: 13px; }
.dont-box { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--r); padding: 13px; }
.box-label { font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 7px; }
.do-box .box-label { color: var(--green); }
.dont-box .box-label { color: var(--red); }
.source-row { font-size: 11px; color: var(--muted); margin-top: 4px; padding-top: 4px; border-top: 1px solid var(--border); }
.source-row a { color: var(--mid); }

/* Checklist page */
.step-card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh); padding: 20px 24px; margin-bottom: 14px; display: flex; gap: 18px; align-items: flex-start; }
.step-num { font-style: italic; font-weight: 900; font-size: 38px; color: var(--red); line-height: 1; min-width: 46px; }
.step-body h3 { font-style: italic; font-weight: 900; font-size: 16px; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; }
.step-body p { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 7px; }
.step-body ul { padding-left: 17px; }
.step-body li { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 3px; }
.step-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 2px 8px; border-radius: 20px; background: var(--red-lt); color: var(--red); margin-bottom: 7px; }
.rule-box { background: #111; border-radius: var(--r-lg); padding: 22px 26px; text-align: center; margin: 28px 0; }
.rule-text { font-style: italic; font-weight: 900; font-size: 19px; text-transform: uppercase; color: #fff; line-height: 1.2; }
.rule-text em { color: var(--red); font-style: inherit; }
.rule-box p { font-size: 13px; color: rgba(255,255,255,.48); margin-top: 7px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 20px 0 14px; }

/* Top row: logo + description left, all link cols right */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1.8fr) repeat(2, minmax(0,1fr));
  gap: 20px 28px;
  margin-bottom: 14px;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 20px; flex-shrink: 0; }
.footer-brand p { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.55; margin: 0; }
.footer-col-title { font-weight: 700; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 7px; }
.footer-col ul { list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; gap: 4px 14px; }
.footer-col a { font-size: 11px; color: rgba(255,255,255,.48); text-decoration: none; transition: color .15s; white-space: nowrap; }
.footer-col a:hover { color: #fff; text-decoration: none; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 10px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
}
.footer-bottom p { font-size: 10px; color: rgba(255,255,255,.24); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-disclaimer { font-size: 10px; color: rgba(255,255,255,.18); line-height: 1.5; margin-top: 3px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  /* tablet: brand full width on top, 2 cols below */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --nav-h: 54px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .card-featured { grid-template-columns: 1fr; }
  .card-visual { min-height: 170px; }
  .news-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .hero { padding: 34px 0 30px; }
  .hero-stats { gap: 16px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  /* mobile: brand + 3 cols in 2 columns */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-col ul { flex-direction: column; gap: 4px; }
  .do-dont { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; gap: 8px; }
  .step-num { font-size: 30px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .article-layout { padding: 24px 16px 48px; }
}
