/* themacXs.com
 *
 * Handgeschrieben, kein Framework, kein Build-Schritt - dieselbe Linie wie
 * der Rest des Projekts. Ersetzt Bootstrap plus Mobirise-Theme (zusammen
 * ueber 300 KB) durch diese eine Datei.
 *
 * Die Farben stammen aus der bisherigen Seite: Schwarz als Grund, Rot als
 * Akzent. #ae0009 war dort die Farbe der Schaltflaechen, #ff014e die der
 * Balken - beide werden hier weiterverwendet, damit die Seite dieselbe
 * Handschrift behaelt.
 */

/* --------------------------------------------------------------------- */
/* Schrift                                                                */
/* --------------------------------------------------------------------- */
/* Selbst gehostet statt von Google geladen: ein Aufruf an fonts.gstatic.com
   uebertraegt die IP-Adresse jedes Besuchers an Google, was in AT/DE ohne
   Einwilligung abgemahnt wurde. Die Dateien liegen jetzt auf dem eigenen
   Server - deshalb kommt die Datenschutzerklaerung ohne Google-Absatz aus.

   Variable Schrift: eine Datei deckt alle Staerken von 400 bis 700 ab.

   Finlandica steht unter der SIL Open Font License. Wer die Schrift
   weitergibt - und das tut jeder Server, der sie ausliefert - muss den
   Lizenztext mitliefern: er liegt daneben unter assets/fonts/OFL.txt und
   darf beim Aufraeumen nicht verschwinden. */

@font-face {
  font-family: 'Finlandica';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/finlandica-latin-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Finlandica';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/finlandica-latin-ext-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Finlandica';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/finlandica-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Finlandica';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/finlandica-latin-ext-italic.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}


/* --------------------------------------------------------------------- */
/* Grundlagen                                                             */
/* --------------------------------------------------------------------- */

:root {
  color-scheme: dark;

  --bg:          #000000;
  --surface:     #16181c;
  --surface-alt: #212428;
  --border:      #2b2f36;
  --text:        #ffffff;
  --text-muted:  #c4cfde;
  --text-dim:    #878e99;
  --red:         #ae0009;   /* Schaltflaechen */
  --red-hover:   #d0000c;
  --accent:      #ff014e;   /* Balken, Hervorhebungen */

  --head-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Finlandica', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--text); text-decoration-color: var(--accent); text-underline-offset: .18em; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* Sprungmarke fuer Tastatur- und Screenreader-Bedienung. Nur sichtbar,
   wenn sie den Fokus bekommt. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: .8em 1.2em;
  background: var(--red);
  color: #fff;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}


/* --------------------------------------------------------------------- */
/* Kopfbereich                                                            */
/* --------------------------------------------------------------------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.head-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--head-h);
}

.brand { display: flex; flex-shrink: 0; }
.brand img { width: 160px; height: auto; }

.nav-panel {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}

.nav-panel a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .35em 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-panel a:hover { border-bottom-color: var(--accent); }
.nav-panel a[aria-current="page"] { border-bottom-color: var(--red); color: var(--text-muted); }

/* Hamburger - nur auf schmalen Bildschirmen sichtbar (siehe Media Query). */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* --------------------------------------------------------------------- */
/* Abschnitte                                                             */
/* --------------------------------------------------------------------- */

section { padding: clamp(3rem, 8vw, 6rem) 0; }

/* Abschnitt mit Hintergrundbild. Der dunkle Verlauf darueber ist kein
   Dekor, sondern noetig: ohne ihn ist weisser Text auf hellen Bildstellen
   nicht mehr lesbar. */
.has-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .88));
}
.has-bg > .wrap { position: relative; }

.section-head { max-width: 46rem; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; margin: 0; }

.eyebrow {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.source {
  margin-top: 2rem;
  color: var(--text-dim);
  font-size: .87rem;
}


/* --------------------------------------------------------------------- */
/* Aufmacher der Startseite                                               */
/* --------------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-text p { color: var(--text-muted); }
.hero-text p:first-of-type { color: var(--text); font-size: 1.12rem; }
.hero-img img { width: 100%; border-radius: 4px; }


/* --------------------------------------------------------------------- */
/* Karten                                                                 */
/* --------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

.card {
  padding: 1.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 3px;
}
.card h3 { color: var(--text); }
.card p { color: var(--text-muted); margin-bottom: 0; }

/* Karte mit Bild oben ("Mein Ziel") */
.card-img { padding: 0; overflow: hidden; }
.card-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-img .card-body { padding: 1.5rem 1.7rem 1.9rem; }


/* --------------------------------------------------------------------- */
/* Vermoegensverteilung                                                   */
/* --------------------------------------------------------------------- */

.bar-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
}

.bar-group h3 {
  padding-bottom: .7rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}

.bar + .bar { margin-top: 1.4rem; }
.bar-label {
  display: block;
  margin-bottom: .45rem;
  color: var(--text-muted);
  font-size: .95rem;
}

.bar-track {
  position: relative;
  height: 26px;
  background: var(--surface-alt);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--accent));
  border-radius: 3px;
}
.bar-value {
  position: absolute;
  top: 0;
  right: .6rem;
  line-height: 26px;
  font-size: .88rem;
  font-weight: 700;
}


/* --------------------------------------------------------------------- */
/* Grosse Zahlen                                                          */
/* --------------------------------------------------------------------- */

.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem;
  text-align: center;
}
.figure {
  padding: 1.8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.figure b {
  display: block;
  color: var(--accent);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.2;
}
.figure span {
  display: block;
  margin-top: .3rem;
  color: var(--text-muted);
  font-size: .95rem;
}


/* --------------------------------------------------------------------- */
/* Beitragslisten                                                         */
/* --------------------------------------------------------------------- */

/* Kopf einer Rubrik: Bild mit Titel darauf. */
.page-head {
  padding: clamp(3.5rem, 10vw, 7rem) 0;
  text-align: center;
}
.page-head .lead {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.post-list { display: grid; gap: 1.6rem; }

.post-card {
  display: block;
  padding: 1.9rem 2.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.post-card:hover {
  background: var(--surface-alt);
  border-left-color: var(--accent);
  color: var(--text);
  transform: translateX(3px);
}
.post-card h2 { font-size: clamp(1.3rem, 2.8vw, 1.75rem); margin-bottom: .5rem; }
.post-card p { color: var(--text-muted); margin-bottom: 1rem; }
.post-card .more { color: var(--accent); font-weight: 600; font-size: .95rem; }

.empty {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 3px;
  color: var(--text-muted);
  text-align: center;
}


/* --------------------------------------------------------------------- */
/* Einzelner Beitrag / Textseiten                                         */
/* --------------------------------------------------------------------- */

.article { max-width: 46rem; margin: 0 auto; }

.article .lead {
  margin: 0 0 2rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--red);
  color: var(--text);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  line-height: 1.4;
  font-weight: 500;
}

.article-body p { color: var(--text-muted); }
.article-body strong { color: var(--text); }

.crumb {
  margin-bottom: .9rem;
  color: var(--text-dim);
  font-size: .9rem;
}
.crumb a { color: var(--text-dim); text-decoration: none; }
.crumb a:hover { color: var(--accent); }

.post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  font-size: .95rem;
}
.post-nav a { text-decoration: none; color: var(--text-muted); }
.post-nav a:hover { color: var(--accent); }


/* --------------------------------------------------------------------- */
/* Formular                                                               */
/* --------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-side img { width: 90px; margin-bottom: 1.4rem; }
.contact-side p { color: var(--text-muted); }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  margin-bottom: .35rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea, select {
  width: 100%;
  padding: .75em .9em;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
}
textarea { min-height: 9em; resize: vertical; }

.btn {
  display: inline-block;
  padding: .72em 1.7em;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn:hover { background: var(--red-hover); border-color: var(--red-hover); color: #fff; }

.btn-quiet {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-quiet:hover { background: var(--surface-alt); border-color: var(--accent); color: var(--text); }

/* Rueckmeldung nach dem Absenden */
.note {
  padding: .9em 1.2em;
  margin-bottom: 1.4rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.note-ok  { border-left: 3px solid #2f9e44; }
.note-err { border-left: 3px solid var(--red); }

/* Falle fuer automatische Ausfuellprogramme: fuer Menschen unsichtbar,
   Software fuellt das Feld trotzdem aus (siehe kontakt.php). Absichtlich
   nicht display:none - manche Programme ueberspringen versteckte Felder. */
.hp {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* --------------------------------------------------------------------- */
/* Fusszeile                                                              */
/* --------------------------------------------------------------------- */

.site-foot {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dim);
  font-size: .92rem;
}
.site-foot .social { display: flex; justify-content: center; gap: 1rem; margin: 0 0 1.2rem; }
.site-foot .social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color .2s, border-color .2s;
}
.site-foot .social a:hover { color: var(--accent); border-color: var(--accent); }
.foot-links { margin: 0 0 .5rem; }
.foot-links a { color: var(--text-muted); text-decoration: none; }
.foot-links a:hover { color: var(--accent); }
.foot-links span { margin: 0 .5rem; }
.foot-copy { margin: 0; }


/* --------------------------------------------------------------------- */
/* Schmale Bildschirme                                                    */
/* --------------------------------------------------------------------- */

@media (max-width: 860px) {
  .hero, .contact-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; max-width: 320px; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }

  /* Menue klappt unter die Kopfzeile. Nicht als Overlay ueber die ganze
     Seite - bei vier Eintraegen waere das uebertrieben. */
  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    padding: .5rem 1.4rem 1.2rem;
    background: rgba(0, 0, 0, .97);
    border-bottom: 1px solid var(--border);
  }
  .nav-panel.open { display: flex; }
  .nav-panel a { padding: .75em 0; border-bottom: 1px solid var(--border); }
  .nav-panel a:last-child { border-bottom: 0; }

  .head-row { position: relative; }
  .brand img { width: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ==========================================================================
 * Klassen statt style-Attribute (404, Impressum, Beitrag)
 * ==========================================================================
 * Die Content-Security-Policy erlaubt kein 'unsafe-inline' mehr fuer Stile -
 * style-Attribute im HTML wuerden verworfen. Siehe admin.css fuer die
 * ausfuehrliche Begruendung.
 */
.zentriert { text-align: center; }
.mt-2      { margin-top: 2rem; }
.mt-28     { margin-top: 2.8rem; }
.mb-2      { margin-bottom: 2rem; }

/* Breite des Fortschrittsbalkens. Stand als style-Attribut im HTML und
   waere seit der Verschaerfung der CSP wirkungslos - der Balken saehe
   dann bei jedem Wert gleich aus. Grundwert 0: lieber sichtbar leer
   als faelschlich voll. */
.bar-fill { width: 0; }
.bar-fill.w-0 { width: 0%; }
.bar-fill.w-1 { width: 1%; }
.bar-fill.w-2 { width: 2%; }
.bar-fill.w-3 { width: 3%; }
.bar-fill.w-4 { width: 4%; }
.bar-fill.w-5 { width: 5%; }
.bar-fill.w-6 { width: 6%; }
.bar-fill.w-7 { width: 7%; }
.bar-fill.w-8 { width: 8%; }
.bar-fill.w-9 { width: 9%; }
.bar-fill.w-10 { width: 10%; }
.bar-fill.w-11 { width: 11%; }
.bar-fill.w-12 { width: 12%; }
.bar-fill.w-13 { width: 13%; }
.bar-fill.w-14 { width: 14%; }
.bar-fill.w-15 { width: 15%; }
.bar-fill.w-16 { width: 16%; }
.bar-fill.w-17 { width: 17%; }
.bar-fill.w-18 { width: 18%; }
.bar-fill.w-19 { width: 19%; }
.bar-fill.w-20 { width: 20%; }
.bar-fill.w-21 { width: 21%; }
.bar-fill.w-22 { width: 22%; }
.bar-fill.w-23 { width: 23%; }
.bar-fill.w-24 { width: 24%; }
.bar-fill.w-25 { width: 25%; }
.bar-fill.w-26 { width: 26%; }
.bar-fill.w-27 { width: 27%; }
.bar-fill.w-28 { width: 28%; }
.bar-fill.w-29 { width: 29%; }
.bar-fill.w-30 { width: 30%; }
.bar-fill.w-31 { width: 31%; }
.bar-fill.w-32 { width: 32%; }
.bar-fill.w-33 { width: 33%; }
.bar-fill.w-34 { width: 34%; }
.bar-fill.w-35 { width: 35%; }
.bar-fill.w-36 { width: 36%; }
.bar-fill.w-37 { width: 37%; }
.bar-fill.w-38 { width: 38%; }
.bar-fill.w-39 { width: 39%; }
.bar-fill.w-40 { width: 40%; }
.bar-fill.w-41 { width: 41%; }
.bar-fill.w-42 { width: 42%; }
.bar-fill.w-43 { width: 43%; }
.bar-fill.w-44 { width: 44%; }
.bar-fill.w-45 { width: 45%; }
.bar-fill.w-46 { width: 46%; }
.bar-fill.w-47 { width: 47%; }
.bar-fill.w-48 { width: 48%; }
.bar-fill.w-49 { width: 49%; }
.bar-fill.w-50 { width: 50%; }
.bar-fill.w-51 { width: 51%; }
.bar-fill.w-52 { width: 52%; }
.bar-fill.w-53 { width: 53%; }
.bar-fill.w-54 { width: 54%; }
.bar-fill.w-55 { width: 55%; }
.bar-fill.w-56 { width: 56%; }
.bar-fill.w-57 { width: 57%; }
.bar-fill.w-58 { width: 58%; }
.bar-fill.w-59 { width: 59%; }
.bar-fill.w-60 { width: 60%; }
.bar-fill.w-61 { width: 61%; }
.bar-fill.w-62 { width: 62%; }
.bar-fill.w-63 { width: 63%; }
.bar-fill.w-64 { width: 64%; }
.bar-fill.w-65 { width: 65%; }
.bar-fill.w-66 { width: 66%; }
.bar-fill.w-67 { width: 67%; }
.bar-fill.w-68 { width: 68%; }
.bar-fill.w-69 { width: 69%; }
.bar-fill.w-70 { width: 70%; }
.bar-fill.w-71 { width: 71%; }
.bar-fill.w-72 { width: 72%; }
.bar-fill.w-73 { width: 73%; }
.bar-fill.w-74 { width: 74%; }
.bar-fill.w-75 { width: 75%; }
.bar-fill.w-76 { width: 76%; }
.bar-fill.w-77 { width: 77%; }
.bar-fill.w-78 { width: 78%; }
.bar-fill.w-79 { width: 79%; }
.bar-fill.w-80 { width: 80%; }
.bar-fill.w-81 { width: 81%; }
.bar-fill.w-82 { width: 82%; }
.bar-fill.w-83 { width: 83%; }
.bar-fill.w-84 { width: 84%; }
.bar-fill.w-85 { width: 85%; }
.bar-fill.w-86 { width: 86%; }
.bar-fill.w-87 { width: 87%; }
.bar-fill.w-88 { width: 88%; }
.bar-fill.w-89 { width: 89%; }
.bar-fill.w-90 { width: 90%; }
.bar-fill.w-91 { width: 91%; }
.bar-fill.w-92 { width: 92%; }
.bar-fill.w-93 { width: 93%; }
.bar-fill.w-94 { width: 94%; }
.bar-fill.w-95 { width: 95%; }
.bar-fill.w-96 { width: 96%; }
.bar-fill.w-97 { width: 97%; }
.bar-fill.w-98 { width: 98%; }
.bar-fill.w-99 { width: 99%; }
.bar-fill.w-100 { width: 100%; }
