/* ============================================================
   conterra Bauträger GmbH – Stylesheet
   Logo-Farbe: #4a6e82 (Stahl-Blau)
   Akzent:     #73706e (Warm-Grau) / #4a6e82
   Fonts: Cormorant Garamond (Headings), Inter (Body)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --blue:      #3d6478;   /* Logo-Blau (conterra Blaugrau) */
  --blue-dark: #2e4d5e;
  --blue-light:#eef3f6;
  --warm-gray: #73706e;   /* Original Akzentfarbe */
  --dark:      #2b2b2b;
  --mid:       #555;
  --muted:     #888;
  --border:    #e2e2e2;
  --bg-alt:    #f7f7f5;
  --white:     #ffffff;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:     88px;
  --container: 1200px;
  --radius:    3px;
  --radius-lg: 8px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.11);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .3s;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--blue-dark); }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

address { font-style: normal; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: .5rem; }
h4 { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; font-family: var(--font-body); }

p { margin-bottom: 1rem; color: var(--mid); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.8;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: .95rem; }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-label--large {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: .2em;
  display: block;
  margin-bottom: 2rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid rgba(61,100,120,.3);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  display: inline-block;
}
.btn-link:hover { border-color: var(--blue); color: var(--blue-dark); }

/* ── Navigation ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  width: 100%;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

/* Logo – PNG, right side */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: auto;
}
.logo-img {
  height: 48px;
  width: auto;
}

/* Hamburger – always visible */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--warm-gray);
  border-radius: 2px;
}

/* Slide-in drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  padding: 2rem 2.5rem;
  box-shadow: -4px 0 32px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--muted);
  align-self: flex-end;
  margin-bottom: 2.5rem;
  padding: .25rem;
  line-height: 1;
}
.nav-drawer-close:hover { color: var(--dark); }

.nav-drawer-menu { list-style: none; }
.nav-drawer-link {
  display: block;
  padding: 1rem 0;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) var(--ease);
}
.nav-drawer-link:hover { color: var(--blue); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1050;
}
.nav-overlay.open { display: block; }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.08);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) 2rem 4rem;
  text-align: center;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: 6vw;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.18);
  max-width: 700px;
  letter-spacing: .04em;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.slider-btn {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  transition: background var(--dur) var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,.28); }

.slider-dots { display: flex; gap: .4rem; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.55);
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  padding: 0;
}
.dot.active { background: var(--white); transform: scale(1.3); }

/* ── Unternehmen Dark Block ──────────────────────────────────── */
.unternehmen-dark {
  background: #737070;
  padding: 4rem 2rem;
}
.unternehmen-inner {
  max-width: 640px;
  margin: 0 auto;
}
.unternehmen-dark p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.2rem;
}
.unternehmen-mehr p { margin-top: 0; }
.mehr-lesen-btn {
  background: none;
  border: none;
  padding: 0;
  margin-top: .5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { font-family: var(--font-body); font-size: 1rem; line-height: 1.8; color: var(--dark); }
.split-content p + p { margin-top: .5rem; }

/* ── Aktuelle Objekte (2-Spalten, volle Breite) ─────────────── */
.aktuell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 2.5rem;
}

.aktuell-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.aktuell-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.aktuell-image {
  position: relative;
  overflow: hidden;
  height: 420px;
  display: block;
}
.aktuell-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.aktuell-card:hover .aktuell-image img { transform: scale(1.04); }

.aktuell-image-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(30,40,50,.25);
}

.aktuell-body {
  padding: 1.75rem 2rem 2rem;
}
.aktuell-body h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
}
.aktuell-dash {
  display: block;
  color: var(--muted);
  margin-bottom: .6rem;
  font-size: 1rem;
}
.aktuell-body p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.aktuell-body p a { color: var(--blue); }
.aktuell-body p a:hover { color: var(--blue-dark); }

@media (max-width: 700px) {
  .aktuell-grid { grid-template-columns: 1fr; }
}

/* ── Aktuelle Projekte (news cards – fallback kept) ─────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.news-card-large { grid-column: span 2; }

.news-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 240px;
}
.news-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.news-card:hover .news-image img { transform: scale(1.04); }

.news-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--blue);
  color: var(--white);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 2px;
}
.news-tag-planned { background: var(--warm-gray); }

.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-content h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: .2rem; }
.news-location {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.news-content p { font-size: .9rem; color: var(--muted); flex: 1; margin-bottom: 1.25rem; }

/* Info cards */
.aktuell-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  color: var(--blue);
  margin-bottom: 1rem;
}
.info-icon svg { width: 100%; height: 100%; }
.aktuell-info-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: .5rem; }
.aktuell-info-card p { font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; flex: 1; }

/* ── Zitat-Banner ───────────────────────────────────────────── */
.quote-banner {
  background: #6e7f8d;
  padding: 5rem 2rem;
  text-align: center;
}
.quote-banner p {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .18em;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Referenzen Slider ──────────────────────────────────────── */
.ref-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2.5rem;
}

.ref-track {
  flex: 1;
  overflow: hidden;
  background: var(--bg-alt);
}

.ref-slide {
  display: none;
}
.ref-slide.active { display: block; }

.ref-slide img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.ref-arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: none;
  border: none;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--warm-gray);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--dur) var(--ease);
  padding: 0;
}
.ref-arrow:hover { color: var(--blue); }

.ref-info { text-align: center; padding: 2rem 0 .5rem; }

.ref-info-slide { display: none; }
.ref-info-slide.active { display: block; }

.ref-info h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .6rem;
}

.ref-meta {
  font-size: .88rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.ref-meta em { font-style: italic; }

.ref-desc {
  font-size: .97rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Kontakt ────────────────────────────────────────────────── */
.contact-solo {
  max-width: 640px;
}
.contact-solo h2 { margin-bottom: 1rem; }
.contact-solo > p { margin-bottom: 2rem; color: var(--muted); }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item strong { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; font-family: var(--font-body); }
.contact-item p, .contact-item address { font-size: .95rem; color: var(--mid); line-height: 1.6; }
.contact-item a { color: var(--blue); }
.contact-item a:hover { color: var(--blue-dark); }

/* ── Modals ─────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal.open { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,40,48,.6);
  backdrop-filter: blur(3px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: min(720px, calc(100vw - 2rem));
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  padding: 3rem;
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: .25rem .5rem;
  border-radius: var(--radius);
  transition: color var(--dur) var(--ease);
}
.modal-close:hover { color: var(--dark); }

.modal-content h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.modal-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.modal-content h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.25rem;
  margin-bottom: .4rem;
}
.modal-content p { font-size: .93rem; line-height: 1.75; color: var(--mid); margin-bottom: .75rem; }
.modal-content a { color: var(--blue); }
.modal-content a:hover { color: var(--blue-dark); }

/* ── Footer ─────────────────────────────────────────────────── */
#footer { background: #1e2830; }

.footer-main { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand { }
.footer-logo {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.4); line-height: 1.7; }

.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-links a:hover { color: var(--white); }

.footer-contact address, .footer-contact p { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: .4rem; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Back to top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 42px; height: 42px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--blue-dark); }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ref-slide img { height: 420px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .split-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .split-image img { height: 380px; }
  .image-badge  { right: 1rem; bottom: 1rem; }
  .news-grid    { grid-template-columns: 1fr 1fr; }
  .news-card-large { grid-column: span 1; }
  .news-image   { height: 200px; }
  .ref-slide img { height: 320px; }
  .ref-arrow { width: 36px; font-size: 2rem; }
  /* contact is already single-column */
}

@media (max-width: 989px) {
  :root { --nav-h: 66px; }
  .section { padding: 4rem 0; }

  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-content h1 { font-size: max(2.2rem, 6vw); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .slider-controls { right: 1rem; bottom: 1rem; }

  .news-grid    { grid-template-columns: 1fr; }
  .news-card-large { grid-column: span 1; }
  .ref-slide img { height: 320px; }
  .ref-arrow { width: 36px; font-size: 2rem; }

  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .ref-slide img { height: 240px; }
  .modal-box { padding: 1.75rem; }
  .image-badge { width: 90px; height: 90px; }
  .badge-number { font-size: 1.7rem; }
}
