/* =========================================================================
   SMART COMMUNITIES SOLUTIONS FORUM 2026 — Landing Page
   Powered by Framinor · Organizat de ARSC
   Brand ARSC valabil din 07-08-2026: Sora, Signal Orange, suprafețe Graphite.
   ========================================================================= */

/* Sora self-hosted — fără Google Fonts. */
@font-face { font-family:'Sora'; font-weight:400; font-display:swap; src:url('/fonts/Sora-Regular.ttf') format('truetype'); }
@font-face { font-family:'Sora'; font-weight:500; font-display:swap; src:url('/fonts/Sora-Medium.ttf') format('truetype'); }
@font-face { font-family:'Sora'; font-weight:600; font-display:swap; src:url('/fonts/Sora-SemiBold.ttf') format('truetype'); }
@font-face { font-family:'Sora'; font-weight:700; font-display:swap; src:url('/fonts/Sora-Bold.ttf') format('truetype'); }
@font-face { font-family:'Sora'; font-weight:800; font-display:swap; src:url('/fonts/Sora-ExtraBold.ttf') format('truetype'); }

:root {
  /* Suprafețe — Graphite */
  --black:      #0D0E10;
  --black-2:    #131417;
  --surface:    #17181C;
  --surface-2:  #1F2025;
  --pure-black: #000000;

  /* Semnal — Signal Orange. Numele --amber-* rămân, rolul e același. */
  --amber:        #FF6A00;
  --amber-bright: #FF7D1F;
  --amber-deep:   #E05C00;
  --amber-soft:   rgba(255, 106, 0, 0.12);
  --amber-glow:   rgba(255, 106, 0, 0.35);

  /* Ink / text */
  --white:   #FFFFFF;
  --ink-100: #F4F5F7;
  --ink-300: #B2B5BC;
  --ink-500: #7C7F87;
  --ink-700: #4A4C52;

  /* Lines */
  --line:   rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);

  /* Radius */
  --r-sm:   12px;
  --r:      18px;
  --r-lg:   24px;
  --r-pill: 999px;

  /* Type */
  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Sora", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ink-100);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--amber); color: #000; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--ink-700); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-deep); }

/* Film grain — textura editorială */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- Layout */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 130px);
  position: relative;
}
.section--alt   { background: var(--black-2); }
.section--black { background: var(--pure-black); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }

h1, h2, h3 { font-weight: 700; line-height: 1.05; }

.h-display {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.08;
}
.h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); }

.lede {
  color: var(--ink-300);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.7;
  margin-top: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber-glow);
}

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  padding: 8px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-100);
}
.chip--amber {
  border-color: rgba(255, 106, 0, 0.4);
  background: var(--amber-soft);
  color: var(--amber-bright);
}
.chip svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.9; }

/* -------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: #0D0E10;
  box-shadow: 0 8px 30px -8px var(--amber-glow);
}
.btn--primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px var(--amber-glow);
}
.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--ink-100);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* --------------------------------------------------------------- Header */
/* Bandă neutră cu un singur nod portocaliu. Portocaliul e semnal, nu fundal. */
.announce {
  background: var(--black-2);
  color: var(--ink-300);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 11px var(--gutter);
  line-height: 1.45;
}
.announce strong { font-weight: 600; color: var(--white); }
.announce::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-right: 9px;
  vertical-align: 1px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 14, 16, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.header.is-stuck {
  background: rgba(13, 14, 16, 0.94);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.header__left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.header__arsc { flex-shrink: 0; display: block; }
.header__arsc img { height: 30px; width: auto; max-width: none; }
.header__divider { width: 1px; height: 34px; background: var(--line-2); flex-shrink: 0; }

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand__mark {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--amber);
  color: #0D0E10;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 22px -8px var(--amber-glow);
}
.brand__name {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.16;
  white-space: nowrap;
}
.brand__name span {
  display: block;
  color: var(--ink-500);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  white-space: nowrap;
}
.brand__powered {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
  white-space: nowrap;
}
.brand__powered b { color: var(--amber); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-300);
  transition: color 0.2s;
}
.nav a:hover { color: var(--amber); }
/* CTA-ul din nav trebuie să bată regula generică `.nav a` de mai sus */
.nav a.btn--primary { color: #0D0E10; }
.nav a.btn--primary:hover { color: #0D0E10; }

.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line-2); }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink-100); margin: 4px auto; border-radius: 2px; }

/* ----------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(56px, 8vw, 90px);
  overflow: hidden;
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 75%);
}
.hero__glow {
  position: absolute; z-index: 0;
  width: 620px; height: 620px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 65%);
  opacity: 0.28;
  pointer-events: none;
  filter: blur(30px);
}
.hero .wrap { position: relative; z-index: 1; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(34px, 5vw, 58px); }

.hero__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 9.4vw, 7.4rem);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin-bottom: 10px;
}
.hero__title .line { display: block; }
.hero__title .accent { color: var(--amber); }

.hero__edition {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 2.1rem);
  color: var(--ink-500);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.hero__lede { max-width: 640px; color: var(--ink-300); font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.7; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* ----------------------------------------------------------------- Orgs */
.orgs { border-block: 1px solid var(--line); background: var(--black-2); }
.orgs__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  padding-block: 26px;
  text-align: center;
}
.org { display: flex; flex-direction: column; gap: 5px; }
.org__k { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-500); font-weight: 700; }
.org__v { font-size: 0.98rem; font-weight: 600; color: var(--ink-100); }
.org__v b { color: var(--amber); }

/* ---------------------------------------------------------------- About */
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.about__body p { color: var(--ink-300); font-size: 1.02rem; line-height: 1.75; margin-bottom: 18px; }
.about__body p strong { color: var(--white); font-weight: 600; }

.facts { display: grid; gap: 14px; }
.fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.fact:hover { border-color: rgba(255, 106, 0, 0.35); transform: translateY(-3px); }
.fact__k {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--amber); font-weight: 700; margin-bottom: 9px;
}
.fact__v { color: var(--ink-100); font-size: 0.96rem; line-height: 1.5; }

/* ----------------------------------------------------------- Componente */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.comp {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  /* padding-top rezervă banda numărului, ca titlurile pe 2 rânduri să nu urce peste el */
  padding: 88px 32px 32px;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.comp:hover { transform: translateY(-6px); border-color: rgba(255, 106, 0, 0.35); }
.comp__num {
  position: absolute; top: 26px; left: 32px;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: 2.6rem;
  color: var(--ink-700);
  line-height: 1;
}
.comp__tag {
  align-self: flex-start;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
  margin-bottom: 14px;
  background: var(--amber-soft); color: var(--amber-bright);
  border: 1px solid rgba(255, 106, 0, 0.28);
}
.comp__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; font-size: 1.42rem; margin-bottom: 10px; line-height: 1.15; }
.comp__desc { color: var(--ink-300); font-size: 0.93rem; line-height: 1.6; }

/* --------------------------------------------------------------- Agenda */
.agenda-list { border-top: 1px solid var(--line); }
.agenda-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.agenda-row:hover { background: rgba(255, 255, 255, 0.015); }
.agenda-row--key { background: rgba(255, 106, 0, 0.045); }
.agenda-row--key:hover { background: rgba(255, 106, 0, 0.07); }
.agenda__time {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: 1.16rem;
  color: var(--amber);
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.agenda__title { font-size: 1.08rem; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.agenda__desc { color: var(--ink-300); font-size: 0.94rem; line-height: 1.65; }
.agenda__bullets { margin-top: 12px; display: grid; gap: 7px; }
.agenda__bullets li {
  color: var(--ink-300); font-size: 0.92rem;
  padding-left: 18px; position: relative;
}
.agenda__bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
}

/* ------------------------------------------------------------- Speakeri */
.spk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spk {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.spk:hover { border-color: rgba(255, 106, 0, 0.35); transform: translateY(-3px); }
.spk__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--amber-soft);
  border: 1px solid rgba(255, 106, 0, 0.28);
  display: grid; place-items: center;
}
.spk__icon svg { width: 21px; height: 21px; stroke: var(--amber); fill: none; stroke-width: 1.8; }
.spk__title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.spk__desc { color: var(--ink-300); font-size: 0.9rem; line-height: 1.6; }

.note {
  margin-top: 26px;
  padding: 20px 24px;
  border-radius: var(--r);
  border: 1px dashed var(--line-2);
  background: rgba(255, 255, 255, 0.015);
  color: var(--ink-300);
  font-size: 0.92rem;
  line-height: 1.65;
}
.note a { color: var(--amber); font-weight: 600; }
.note a:hover { text-decoration: underline; }

/* --------------------------------------------------------- Public țintă */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.aud-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.aud-item:hover { border-color: rgba(255, 106, 0, 0.35); transform: translateY(-3px); }
.aud-item h4 { font-size: 0.98rem; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.aud-item p { color: var(--ink-300); font-size: 0.89rem; line-height: 1.55; }

/* -------------------------------------------------------------- Locație */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.venue-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
}
.venue-card dl { display: grid; gap: 20px; }
.venue-card dt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--amber); font-weight: 700; margin-bottom: 6px; }
.venue-card dd { color: var(--ink-100); font-size: 1rem; line-height: 1.6; }
.venue-visual {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 106, 0, 0.14), transparent 55%),
    linear-gradient(150deg, var(--surface-2), var(--pure-black));
  min-height: 320px;
  display: grid; place-items: center;
  text-align: center;
  padding: 40px;
}
.venue-visual__city {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
  color: var(--white);
}
.venue-visual__sub { color: var(--ink-500); font-size: 0.86rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 12px; font-weight: 600; }

/* ---------------------------------------------------------------- CTA */
.cta-band {
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 106, 0, 0.28);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 106, 0, 0.12), transparent 55%),
    var(--surface);
  padding: clamp(34px, 5vw, 62px);
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--ink-300); max-width: 560px; margin: 0 auto 30px; line-height: 1.7; }
.cta-band .hero__cta { justify-content: center; margin-top: 0; }

/* -------------------------------------------------------------- Footer */
.footer { background: var(--pure-black); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 76px) 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 40px; margin-bottom: 16px; }
.footer__brand p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.65; max-width: 320px; }
.footer__col h4 {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--amber); font-weight: 700; margin-bottom: 16px;
}
.footer__col p, .footer__col a { color: var(--ink-300); font-size: 0.9rem; line-height: 1.9; display: block; }
.footer__col a:hover { color: var(--amber); }
.footer__bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  color: var(--ink-500); font-size: 0.82rem;
}

/* ------------------------------------------------------- Scroll & anim */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber-bright));
  box-shadow: 0 0 14px var(--amber-glow);
  z-index: 10000; will-change: transform;
}

/* Starea ascunsă se aplică DOAR dacă JS-ul rulează (clasa .js e pusă în <head>).
   Fără JS, conținutul rămâne vizibil în loc să dispară complet. */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------------- Responsive */
/* Meniul orizontal + brandul complet nu încap simultan sub ~1080px:
   trecem la burger devreme, ca să nu se suprapună peste logo. */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
}

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header__arsc, .header__divider { display: none; }
  .comp-grid { grid-template-columns: 1fr; }
  .spk-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .agenda-row { grid-template-columns: 1fr; gap: 10px; }
  .agenda__time { font-size: 1rem; }
  .brand__powered { display: none; }
  .brand__mark { width: 40px; height: 40px; font-size: 0.78rem; }
  .announce { font-size: 0.74rem; }
}
