/* =============================================
   CSS RESET & BASELINE NORMALIZATION
   ============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #F1F6FB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #38506B;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  --nature-green: #5C8557;
  --nature-earth: #D9CBB2;
  --nature-brown: #8C6A51;
  --brand-primary: #38506B;
  --brand-accent: #EDC84E;
  --brand-bg: #F1F6FB;
  --brand-secondary: #FFFFFF;
  --text-dark: #263237;
  --card-bg: #FFFFFF;
  --border-radius: 18px;
  --shadow: 0 4px 24px 0 rgba(80, 86, 58, 0.08);
  --shadow-card: 0 2px 8px 0 rgba(100, 110, 80, 0.10);
  background-attachment: fixed;
}

*, *:before, *:after { box-sizing: inherit; }
img {max-width: 100%; height: auto; display: block;}
a {color: var(--brand-primary); text-decoration: none; transition: color .2s;}
a:hover, a:focus { color: var(--nature-green); text-decoration: underline; }
ul, ol { list-style-position: inside; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea {font-family: inherit;}

/* =============================================
   BRAND TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 14px; }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
p, li {font-size: 1rem; color: var(--text-dark);}
p { margin-bottom: 14px; }
strong {font-weight: 600; color: var(--brand-primary);}
blockquote {
  border-left: 5px solid var(--nature-green);
  background: #fffef7;
  color: var(--brand-primary);
  font-style: italic;
  margin: 18px 0;
  padding: 14px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* =============================================
   GENERAL LAYOUT CONTAINERS
   ============================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 38px 20px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  align-items: flex-start;
}
.cta-banner {
  background: var(--nature-green);
  color: #fff;
  border-radius: calc(var(--border-radius) + 6px);
  box-shadow: 0 6px 32px 0 rgba(80,120,60,.12);
  align-items: center;
  text-align: center;
}

/* Section Pattern (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* Card Container patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  transition: box-shadow .2s;
}
.testimonial-card p {
  color: #263237;
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--nature-green);
}
.testimonial-card:hover { box-shadow: 0 4px 24px 0 rgba(92,133,87,0.13); }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid (custom) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  flex: 1 1 264px;
  min-width: 220px;
  max-width: 310px;
  padding: 28px 21px 18px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 30px 0 rgba(92,133,87,0.14);
}
.feature-grid img {
  width: 38px;
  margin-bottom: 6px;
}
.feature-grid h3 {
  margin-bottom: 6px;
  color: var(--nature-green);
}

/* Tips grid (for haushaltstipps) */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0 20px 0;
  justify-content: flex-start;
}
.tips-grid li {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  flex: 1 1 260px;
  min-width: 180px;
  max-width: 280px;
  padding: 20px 18px 15px 18px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--brand-primary);
  transition: box-shadow 0.2s;
}
.tips-grid li:hover { box-shadow: 0 6px 30px 0 rgba(140,106,81,0.10); }

/* Blog Post Preview Grid */
.featured-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.post-preview {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 200px;
  padding: 22px 18px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  transition: box-shadow .2s;
}
.post-preview:hover { box-shadow: 0 8px 32px 0 rgba(92,133,87,0.10); }
.post-preview h3 {color: var(--nature-green);}

/* Categories List */
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 22px 0;
}
.categories-list li {
  background: var(--nature-earth);
  border-radius: 22px;
  color: var(--brand-primary);
  padding: 5px 14px;
  font-size: .98rem;
}

/* Search Bar */
.search-bar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-bar input {
  border: 1px solid #D9CBB2;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 1rem;
  width: 100%;
  max-width: 340px;
  outline: none;
  transition: border-color .2s;
  background: #fff;
  color: #263237;
}
.search-bar input:focus {
  border-color: var(--brand-accent);
  background: #fcfaf2;
}

/* Quick Tips Banner */
.quick-tips-banner {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 14px;
  padding: 18px 24px;
  margin: 18px 0 0 0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-tips-banner h3 {
  color: var(--nature-green);
}

/* FAQ Accordion (minimal) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-left: 4px solid var(--nature-green);
  padding: 15px 20px 12px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 8px;
  box-shadow: var(--shadow-card);
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--brand-primary);
}

/* Contact Information */
.contact-information {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  margin-top: 7px;
}
.contact-information div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--nature-earth);
  border-radius: 14px;
  padding: 8px 14px;
  color: var(--brand-primary);
}
.contact-information img {
  width: 22px;
  height: 22px;
}

/* Map Embed */
.map-embed {
  background: var(--nature-green);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 16px 0;
  font-size: 1rem;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #fff;
  box-shadow: 0 2px 7px 0 rgba(60, 80, 40, .02);
  padding: 0;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px 12px 18px;
}
header img {
  height: 40px;
  width: auto;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 0;
  color: var(--brand-primary);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-bottom .2s;
}
header nav a:hover, header nav a.active {
  color: var(--nature-green);
  border-bottom: 2px solid var(--brand-accent);
}
.primary-cta {
  background: var(--nature-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  border-radius: 22px;
  padding: 12px 32px;
  margin-left: 16px;
  margin-right: 4px;
  box-shadow: 0 4px 22px 0 rgba(140,106,81,0.04);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .18s, box-shadow .18s, transform .18s;
  display: inline-block;
  position: relative;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: 0 5px 24px 0 rgba(92,133,87,0.09);
  transform: translateY(-2px) scale(1.025);
}
.secondary-cta {
  background: transparent;
  color: var(--nature-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  border: 2px solid var(--nature-green);
  border-radius: 22px;
  padding: 10px 28px;
  box-shadow: none;
  transition: background .18s, color .18s, border-color .18s;
  display: inline-block;
  position: relative;
  margin-top: 10px;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: var(--nature-green);
  color: #fff;
  border-color: var(--nature-green);
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 1.56rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  border: none;
  outline: none;
  margin-left: 12px;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .12s;
  z-index: 1111;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--nature-green);
  color: #fff;
}

/* Hide burger button & mobile menu by default on desktop */
.mobile-menu-toggle { display: none; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(56,80,107,0.92);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 1110;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
/* Slide in/out via translateX for animation */
.mobile-menu {
  transform: translateX(-110%);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  position: absolute;
  top: 17px; right: 20px;
  box-shadow: var(--shadow-card);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--nature-green);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 90px;
  margin-left: 38px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 500;
  padding: 12px 8px;
  border-radius: 12px;
  transition: background .2s, color .2s;
  width: max-content;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--nature-green);
  color: #fff;
  padding: 34px 0 28px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 174px;
  flex: 1 1 200px;
}
.footer-column img {
  width: 38px;
  margin-bottom: 9px;
  filter: brightness(93%);
}
.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column nav a {
  color: #fff;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .2s;
  text-decoration: underline;
}
.footer-column nav a:hover { color: var(--brand-accent); }
.footer-column h4 {
  color: var(--brand-accent);
  font-size: 1.03rem;
  margin-bottom: 5px;
}
.footer-column p, .footer-column a {
  color: #fff;
  font-size: .99rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
  transition: color .18s;
}
footer a:hover, footer a:focus {
  color: var(--brand-accent);
}
footer .footer-column div {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-column div img { width: 18px; }

/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2001;
  background: linear-gradient(90deg,#f3ecd6 82%,#f8f6ef 100%);
  box-shadow: 0 -2px 16px 0 rgba(136,111,70,0.13);
  padding: 22px 28px 24px 28px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  animation: slideInBottom 0.5s cubic-bezier(.7,-0.5,.4,1.5);
}
@keyframes slideInBottom {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #25311a;
  margin: 0;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  outline: none;
  font-weight: 600;
  transition: background .18s, color .18s, box-shadow .17s;
  margin: 0 2px;
  box-shadow: 0 1px 7px 0 rgba(200,175,80,0.08);
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--nature-green);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-btn.reject {
  background: #fff7e3;
  color: var(--nature-brown);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffeabb;
  color: var(--brand-primary);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--nature-green);
  border: 1px solid var(--nature-green);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--nature-green);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  background: rgba(56,80,107,.49);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBackdrop .33s;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdf7;
  border-radius: 18px;
  box-shadow: 0 8px 50px 0 rgba(60,60,24,.19);
  max-width: 420px;
  width: 95vw;
  padding: 36px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2200;
  animation: fadeModalIn .33s;
}
@keyframes fadeModalIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.35rem;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(200,185,109,0.07);
  padding: 10px 15px;
}
.cookie-category label {
  flex: 1;
  color: var(--nature-brown);
  font-size: .98rem;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--nature-green);
  width: 22px; height: 22px;
}
.cookie-category input[disabled] {
  accent-color: var(--nature-earth);
  cursor: not-allowed;
}
.cookie-modal-footer {
  display: flex;
  gap: 18px;
  margin-top: 15px;
  align-items: center;
}
.cookie-modal-footer .cookie-btn {
  min-width: 90px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  color: var(--nature-brown);
  font-size: 1.6rem;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center; justify-content: center;
  transition: background .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--nature-earth);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1100px) {
  .container { max-width: 95vw; }
  .footer-column { min-width: 120px; }
  .feature-grid li, .tips-grid li, .post-preview { min-width: 160px; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  footer .container { gap: 18px; }
  .footer-column { min-width: 96px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 8px; }

  header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .primary-cta {
    padding: 10px 22px;
    margin-left: 5px;
    font-size: .97rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    width: 100vw;
    min-height: 100vh;
    padding-left: 0;
    z-index: 2000;
  }
  .mobile-menu.open { display: flex; }

  /* Section pattern */
  section { padding: 30px 0; }
  .content-wrapper { padding: 24px 8px; }
  .card, .quick-tips-banner, .tips-grid li, .feature-grid li, .post-preview {
    padding-left: 12px;
    padding-right: 12px;
    min-width: unset;
    max-width: 99vw;
  }
  /* Blog posts and grids stack */
  .featured-posts-grid, .feature-grid, .tips-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .map-embed { padding: 12px 9px; }
  .contact-information {
    flex-direction: column;
    gap: 14px;
  }
  .faq-accordion .faq-item {padding: 12px 10px;}
  .quick-tips-banner, .cta-banner {
    text-align: left;
    align-items: flex-start;
  }
  .cta-banner a.primary-cta { margin-left: 0; margin-top: 12px; }
  /* Section spacing */
  .content-wrapper { margin-bottom: 38px; }
  section { margin-bottom: 37px; }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  section {padding: 15px 0;}
  .content-wrapper, .quick-tips-banner, .cta-banner {padding: 12px 4px;}
  .cookie-banner { flex-direction: column; gap: 12px; text-align: left; padding: 13px 6px 9px 6px; }
  .cookie-actions { gap: 10px; justify-content: flex-start; }
  .cookie-modal { padding: 22px 5vw 15px 5vw; max-width: 97vw; }
}

/* ================================
   ORGANIC/NATURE STYLE DECORATIVE ELEMENTS
   ================================ */
.container, .content-wrapper, .cta-banner, .feature-grid li, .tips-grid li, .post-preview, .testimonial-card, .quick-tips-banner, .faq-item, .card {
  /* Non-geometric, organic effect via border radius */
  border-radius: 18px 32px 20px 14px / 16px 21px 28px 13px;
}
.feature-grid li, .tips-grid li, .post-preview, .card {
  /* Subtle organic shadow */
  box-shadow: 0 4px 18px 0 rgba(68, 115, 64, 0.076);
}
.cta-banner {
  /* Discrete natural shadow */
  box-shadow: 0 6px 32px 0 rgba(74,110,68,0.12);
  background: linear-gradient(99deg, var(--nature-green) 87%, #b9cdb5 100%);
}
.quick-tips-banner {
  /* Light highlight */
  background: linear-gradient(92deg, #f9ebb9 65%, #fcfacd 100%);
}

/* 
   ACCESSIBILITY & FINE TUNING
*/
:focus {
  outline: 2px dashed var(--brand-accent);
  outline-offset: 2px;
}
[tabindex]:focus-visible {
  outline: 2px solid var(--nature-green);
}

::-webkit-scrollbar { width: 10px; background: #e7eae3; }
::-webkit-scrollbar-thumb { background: #bfc4b6; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #aeb2a0; }

/*
  Hide visually, remain accessible
*/
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}
   