/* =========================================================================
   Concrete Rockhampton — Bold Component Library
   Industry: Concrete contractor / driveways / paving / exposed aggregate
   Location: Rockhampton, Queensland, Australia
   Visual language: industrial, poured-concrete, tradesman-trustworthy.
   No tech-startup blue/purple gradients — grounded, load-bearing palette.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700;800&display=swap');

:root {
  /* ---- Brand palette --------------------------------------------------
     Primary: wet-concrete slate-blue (steel trowel, structural steel)
     Accent:  safety-orange (site signage, tradesman hi-vis)
     Paper:   warm aggregate off-white
     Ink:     near-black charcoal (poured basalt concrete)
  ------------------------------------------------------------------------ */
  --bc-primary: #3E4C56;
  --bc-primary-dark: #252F36;
  --bc-primary-light: #5C6F7C;
  --bc-accent: #D9600C;
  --bc-accent-dark: #B44B08;
  --bc-accent-deep: #8F3906;
  --bc-accent-light: #F2954C;
  --bc-ink: #201E1B;
  --bc-ink-soft: #4A4640;
  --bc-paper: #F5F2EA;
  --bc-paper-alt: #E9E4D8;
  --bc-paper-deep: #DCD5C4;
  --bc-line: #CFC7B4;
  --bc-white: #FFFFFF;
  --bc-success: #2F6E44;
  --bc-focus: #1E6FB8;

  /* ---- Type scale -------------------------------------------------- */
  --bc-font-head: "Archivo Black", "Archivo", "Arial Black", sans-serif;
  --bc-font-body: "Archivo", "Segoe UI", Arial, sans-serif;

  --bc-fs-xs: 0.8125rem;
  --bc-fs-sm: 0.9375rem;
  --bc-fs-base: 1.0625rem;
  --bc-fs-md: 1.25rem;
  --bc-fs-lg: 1.625rem;
  --bc-fs-xl: 2.125rem;
  --bc-fs-2xl: 2.75rem;
  --bc-fs-3xl: 3.5rem;

  --bc-lh-tight: 1.1;
  --bc-lh-snug: 1.3;
  --bc-lh-body: 1.65;

  /* ---- Space scale --------------------------------------------------- */
  --bc-sp-1: 0.25rem;
  --bc-sp-2: 0.5rem;
  --bc-sp-3: 0.875rem;
  --bc-sp-4: 1.25rem;
  --bc-sp-5: 2rem;
  --bc-sp-6: 3rem;
  --bc-sp-7: 4.5rem;
  --bc-sp-8: 6.5rem;

  --bc-radius-sm: 3px;
  --bc-radius-md: 6px;
  --bc-radius-lg: 10px;

  --bc-shadow-sm: 0 1px 3px rgba(32, 30, 27, 0.16);
  --bc-shadow-md: 0 6px 20px rgba(32, 30, 27, 0.18);
  --bc-shadow-lg: 0 16px 40px rgba(32, 30, 27, 0.24);

  --bc-container-w: 1180px;

  color-scheme: light;
}

/* =========================================================================
   Reset / base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--bc-font-body);
  font-size: var(--bc-fs-base);
  line-height: var(--bc-lh-body);
  color: var(--bc-ink);
  background: var(--bc-paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--bc-font-head);
  line-height: var(--bc-lh-tight);
  margin: 0 0 var(--bc-sp-3);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
p { margin: 0 0 var(--bc-sp-4); }
:focus-visible { outline: 3px solid var(--bc-focus); outline-offset: 2px; }

/* =========================================================================
   Container / layout primitives
   ========================================================================= */
.bc-container {
  width: 100%;
  max-width: var(--bc-container-w);
  margin-inline: auto;
  padding-inline: var(--bc-sp-4);
}

.bc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--bc-sp-2);
  font-family: var(--bc-font-body);
  font-weight: 800;
  font-size: var(--bc-fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-accent-dark);
  margin-bottom: var(--bc-sp-3);
}
.bc-eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--bc-accent);
  border-radius: 2px;
  display: inline-block;
}
.bc-eyebrow--on-dark { color: var(--bc-accent-light); }

/* =========================================================================
   Buttons
   ========================================================================= */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--bc-sp-2);
  font-family: var(--bc-font-body);
  font-weight: 800;
  font-size: var(--bc-fs-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.7em;
  border-radius: var(--bc-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  line-height: 1.1;
}
.bc-btn:hover { transform: translateY(-2px); }
.bc-btn:active { transform: translateY(0); }

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

.bc-btn--accent {
  background: var(--bc-primary);
  border-color: var(--bc-primary);
  color: var(--bc-white);
}
.bc-btn--accent:hover { background: var(--bc-primary-dark); border-color: var(--bc-primary-dark); }

.bc-btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--bc-white);
}
.bc-btn--ghost:hover { background: rgba(255,255,255,0.14); }

.bc-btn--outline {
  background: transparent;
  border-color: var(--bc-primary);
  color: var(--bc-primary);
}
.bc-btn--outline:hover { background: var(--bc-primary); color: var(--bc-white); }

/* =========================================================================
   Site shell — header / nav / footer
   ========================================================================= */
.site-header {
  background: var(--bc-primary-dark);
  color: var(--bc-white);
  position: relative;
  z-index: 40;
  border-bottom: 4px solid var(--bc-accent);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bc-sp-4);
  padding-block: var(--bc-sp-3);
  flex-wrap: wrap;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--bc-sp-2);
  font-family: var(--bc-font-head);
  font-size: var(--bc-fs-md);
  color: var(--bc-white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.site-header__logo span { color: var(--bc-accent-light); }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--bc-sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.site-nav__list a {
  text-decoration: none;
  font-weight: 700;
  font-size: var(--bc-fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bc-white);
  padding-block: var(--bc-sp-1);
  border-bottom: 2px solid transparent;
}
.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  border-bottom-color: var(--bc-accent);
  color: var(--bc-accent-light);
}

.site-footer {
  background: var(--bc-ink);
  color: var(--bc-paper);
  padding-block: var(--bc-sp-7) var(--bc-sp-6);
}
.site-footer a { color: var(--bc-paper); text-decoration: underline; text-decoration-color: var(--bc-accent); }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--bc-sp-6);
  margin-bottom: var(--bc-sp-6);
}
.site-footer__heading {
  font-family: var(--bc-font-head);
  font-size: var(--bc-fs-sm);
  color: var(--bc-accent-light);
  margin-bottom: var(--bc-sp-3);
}
.site-footer__bottom {
  border-top: 1px solid rgba(245,242,234,0.18);
  padding-top: var(--bc-sp-4);
  font-size: var(--bc-fs-xs);
  color: var(--bc-paper-deep);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--bc-sp-2);
}

/* =========================================================================
   Hero
   ========================================================================= */
.bc-hero {
  position: relative;
  background: linear-gradient(150deg, var(--bc-primary-dark) 0%, var(--bc-primary) 65%, var(--bc-primary-light) 100%);
  color: var(--bc-white);
  overflow: hidden;
}
.bc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.bc-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--bc-sp-6);
  align-items: center;
  padding-block: var(--bc-sp-8) var(--bc-sp-7);
}
.bc-hero__title {
  font-size: var(--bc-fs-3xl);
  margin-bottom: var(--bc-sp-4);
}
.bc-hero__title em {
  font-style: normal;
  color: var(--bc-accent-light);
}
.bc-hero__lede {
  font-size: var(--bc-fs-md);
  line-height: var(--bc-lh-snug);
  color: var(--bc-paper);
  max-width: 46ch;
  margin-bottom: var(--bc-sp-5);
}
.bc-hero__actions { display: flex; gap: var(--bc-sp-3); flex-wrap: wrap; }
.bc-hero__media {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
  border: 4px solid rgba(255,255,255,0.18);
}
.bc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.bc-hero__stats {
  position: relative;
  display: flex;
  gap: var(--bc-sp-6);
  padding-block: var(--bc-sp-4);
  border-top: 1px solid rgba(255,255,255,0.16);
  flex-wrap: wrap;
}
.bc-hero__stat b {
  display: block;
  font-family: var(--bc-font-head);
  font-size: var(--bc-fs-lg);
  color: var(--bc-accent-light);
}
.bc-hero__stat span {
  font-size: var(--bc-fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-paper-deep);
}

@media (max-width: 860px) {
  .bc-hero__inner { grid-template-columns: 1fr; padding-block: var(--bc-sp-7) var(--bc-sp-5); }
  .bc-hero__title { font-size: var(--bc-fs-2xl); }
}

/* =========================================================================
   Prose
   ========================================================================= */
.bc-prose {
  padding-block: var(--bc-sp-7);
  background: var(--bc-paper);
  color: var(--bc-ink);
}
.bc-prose__inner { max-width: 74ch; }
.bc-prose__inner.bc-prose__inner--wide { max-width: none; }
.bc-prose h2 { font-size: var(--bc-fs-xl); }
.bc-prose h3 { font-size: var(--bc-fs-md); color: var(--bc-primary); }
.bc-prose p { color: var(--bc-ink-soft); }
.bc-prose ul { padding-left: 1.2em; color: var(--bc-ink-soft); }
.bc-prose li { margin-bottom: var(--bc-sp-2); }

.bc-prose--has-color { background: var(--bc-paper-alt); }
.bc-prose--dark { background: var(--bc-primary-dark); color: var(--bc-white); }
.bc-prose--dark p, .bc-prose--dark ul, .bc-prose--dark li { color: var(--bc-paper-deep); }
.bc-prose--dark h2, .bc-prose--dark h3 { color: var(--bc-white); }
.bc-prose--dark h3 { color: var(--bc-accent-light); }

.bc-prose--with-image .bc-prose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-sp-6);
  align-items: center;
  max-width: none;
}
.bc-prose--with-image img {
  border-radius: var(--bc-radius-md);
  box-shadow: var(--bc-shadow-md);
}
@media (max-width: 760px) {
  .bc-prose--with-image .bc-prose__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Grid (services / features)
   ========================================================================= */
.bc-grid {
  padding-block: var(--bc-sp-7);
  background: var(--bc-paper-alt);
}
.bc-grid__head { max-width: 60ch; margin-bottom: var(--bc-sp-6); }
.bc-grid__head h2 { font-size: var(--bc-fs-xl); }
.bc-grid__head p { color: var(--bc-ink-soft); }

.bc-grid__list {
  display: grid;
  gap: var(--bc-sp-5);
  grid-template-columns: repeat(2, 1fr);
}
.bc-grid--2col .bc-grid__list { grid-template-columns: repeat(2, 1fr); }
.bc-grid--3col .bc-grid__list { grid-template-columns: repeat(3, 1fr); }
.bc-grid--4col .bc-grid__list { grid-template-columns: repeat(4, 1fr); }

.bc-grid__card {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-md);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.bc-grid__card:hover { box-shadow: var(--bc-shadow-md); transform: translateY(-3px); }
.bc-grid__card h3 {
  font-size: var(--bc-fs-md);
  color: var(--bc-primary);
  margin-bottom: var(--bc-sp-2);
}
.bc-grid__card p { color: var(--bc-ink-soft); margin-bottom: 0; font-size: var(--bc-fs-sm); }
.bc-grid__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--bc-radius-sm);
  background: var(--bc-primary-dark);
  color: var(--bc-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bc-font-head);
  font-size: var(--bc-fs-md);
  margin-bottom: var(--bc-sp-3);
}

.bc-grid--imaged .bc-grid__card { padding: 0; overflow: hidden; }
.bc-grid__card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.bc-grid--imaged .bc-grid__card-body { padding: var(--bc-sp-4); }

.bc-grid--text-only .bc-grid__card { background: transparent; border: none; box-shadow: none; padding: 0; }
.bc-grid--text-only .bc-grid__card:hover { transform: none; }

@media (max-width: 900px) {
  .bc-grid--3col .bc-grid__list,
  .bc-grid--4col .bc-grid__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bc-grid__list,
  .bc-grid--2col .bc-grid__list,
  .bc-grid--3col .bc-grid__list,
  .bc-grid--4col .bc-grid__list { grid-template-columns: 1fr; }
}

/* =========================================================================
   FAQ
   ========================================================================= */
.bc-faq { padding-block: var(--bc-sp-7); background: var(--bc-paper); }
.bc-faq__head { max-width: 60ch; margin-bottom: var(--bc-sp-5); }
.bc-faq__list { list-style: none; margin: 0; padding: 0; max-width: 78ch; }
.bc-faq__item {
  border-bottom: 1px solid var(--bc-line);
}
.bc-faq__item:first-child { border-top: 1px solid var(--bc-line); }
.bc-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bc-sp-3);
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--bc-font-body);
  font-weight: 700;
  font-size: var(--bc-fs-base);
  color: var(--bc-ink);
  padding: var(--bc-sp-4) var(--bc-sp-1);
  cursor: pointer;
}
.bc-faq__q::after {
  content: "+";
  flex: none;
  font-family: var(--bc-font-head);
  font-size: 1.3em;
  color: var(--bc-accent-dark);
}
.bc-faq__item[open] .bc-faq__q::after { content: "\2212"; }
.bc-faq__a {
  padding: 0 var(--bc-sp-1) var(--bc-sp-4);
  color: var(--bc-ink-soft);
  margin: 0;
}

/* =========================================================================
   Gallery
   ========================================================================= */
.bc-gallery { padding-block: var(--bc-sp-7); background: var(--bc-paper-alt); }
.bc-gallery__head { max-width: 60ch; margin-bottom: var(--bc-sp-5); }
.bc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-sp-3);
}
.bc-gallery__cell {
  position: relative;
  border-radius: var(--bc-radius-md);
  overflow: hidden;
  box-shadow: var(--bc-shadow-sm);
}
.bc-gallery__cell img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.bc-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(32,30,27,0.85), rgba(32,30,27,0));
  color: var(--bc-white);
  font-size: var(--bc-fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: var(--bc-sp-4) var(--bc-sp-3) var(--bc-sp-2);
}
@media (max-width: 760px) {
  .bc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .bc-gallery__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Video
   ========================================================================= */
.bc-video { padding-block: var(--bc-sp-7); background: var(--bc-primary-dark); color: var(--bc-white); }
.bc-video__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--bc-sp-6);
  align-items: center;
}
.bc-video__copy h2 { font-size: var(--bc-fs-xl); color: var(--bc-white); }
.bc-video__copy p { color: var(--bc-paper-deep); }
.bc-video__player { position: relative; }
.bc-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
  border: 4px solid rgba(255,255,255,0.15);
}
.bc-video__frame iframe,
.bc-video__frame img { width: 100%; height: 100%; object-fit: cover; border: 0; }
@media (max-width: 800px) {
  .bc-video__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Map
   ========================================================================= */
.bc-map { padding-block: var(--bc-sp-7); background: var(--bc-paper); }
.bc-map__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: var(--bc-sp-6);
  align-items: stretch;
}
.bc-map__info {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-md);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow-sm);
}
.bc-map__info h2 { font-size: var(--bc-fs-lg); }
.bc-map__addr {
  font-style: normal;
  color: var(--bc-ink-soft);
  margin-bottom: var(--bc-sp-4);
  line-height: var(--bc-lh-snug);
}
.bc-map__addr strong { display: block; color: var(--bc-ink); font-size: var(--bc-fs-base); }
.bc-map__frame {
  border-radius: var(--bc-radius-md);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--bc-shadow-sm);
  border: 1px solid var(--bc-line);
}
.bc-map__frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
@media (max-width: 800px) {
  .bc-map__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Testimonial
   ========================================================================= */
.bc-testimonial { padding-block: var(--bc-sp-7); background: var(--bc-paper-alt); }
.bc-testimonial__head { max-width: 60ch; margin-bottom: var(--bc-sp-5); }
.bc-testimonial__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-sp-5);
}
.bc-testimonial__card {
  background: var(--bc-white);
  border-radius: var(--bc-radius-md);
  border-top: 4px solid var(--bc-accent);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow-sm);
}
.bc-testimonial__stars { color: var(--bc-accent-dark); letter-spacing: 0.1em; margin-bottom: var(--bc-sp-3); font-size: var(--bc-fs-base); }
.bc-testimonial__quote { color: var(--bc-ink-soft); margin-bottom: var(--bc-sp-4); font-style: italic; }
.bc-testimonial__author { display: flex; align-items: center; gap: var(--bc-sp-3); }
.bc-testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bc-primary);
  color: var(--bc-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bc-font-head);
  font-size: var(--bc-fs-sm);
  flex: none;
}
.bc-testimonial__author b { display: block; font-size: var(--bc-fs-sm); }
.bc-testimonial__author span { font-size: var(--bc-fs-xs); color: var(--bc-ink-soft); }
@media (max-width: 900px) {
  .bc-testimonial__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bc-testimonial__list { grid-template-columns: 1fr; }
}

/* =========================================================================
   Form band + fields
   ========================================================================= */
.bc-formband { padding-block: var(--bc-sp-7); background: var(--bc-primary); color: var(--bc-white); }
.bc-formband__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-sp-6);
  align-items: start;
}
.bc-formband__title { font-size: var(--bc-fs-xl); color: var(--bc-white); }
.bc-formband__lede { color: var(--bc-paper-deep); max-width: 42ch; }
.bc-formband__form {
  background: var(--bc-white);
  color: var(--bc-ink);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow-lg);
  display: grid;
  gap: var(--bc-sp-4);
}

.bc-formband--intro { background: var(--bc-primary-dark); }
.bc-formband--final {
  background: linear-gradient(135deg, var(--bc-accent-deep), var(--bc-accent-dark));
}
.bc-formband--final .bc-formband__lede { color: var(--bc-paper); }

.bc-form-field { display: flex; flex-direction: column; gap: var(--bc-sp-2); }
.bc-form-field label {
  font-size: var(--bc-fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bc-ink-soft);
}
.bc-form-field input,
.bc-form-field textarea,
.bc-form-field select {
  font: inherit;
  font-size: var(--bc-fs-sm);
  padding: 0.75em 0.9em;
  border: 1.5px solid var(--bc-line);
  border-radius: var(--bc-radius-sm);
  background: var(--bc-paper);
  color: var(--bc-ink);
}
.bc-form-field input:focus,
.bc-form-field textarea:focus,
.bc-form-field select:focus {
  border-color: var(--bc-primary);
  outline: 3px solid rgba(62,76,86,0.25);
}
.bc-form-field--required label::after {
  content: " *";
  color: var(--bc-accent-dark);
}
.bc-formband__form .bc-btn { justify-self: start; margin-top: var(--bc-sp-1); }

@media (max-width: 800px) {
  .bc-formband__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Utility
   ========================================================================= */
.bc-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
