:root {
  --green: #004c2f;
  --green-2: #087a59;
  --ink: #112126;
  --muted: #637276;
  --line: #dbe7e1;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --yellow: #f7b912;
  --shadow: 0 20px 60px rgba(4, 36, 29, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-top {
  background: #062a20;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
}

.contact-row {
  min-height: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.contact-row a:hover { color: var(--yellow); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
}

.logo {
  width: 120px;
  height: 62px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 120px;
  height: 62px;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-size: 23px;
  line-height: 1;
  letter-spacing: .01em;
}

.brand-copy span {
  display: block;
  margin-top: 5px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  color: #304348;
}

.nav-links > a,
.nav-trigger {
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links .active { color: var(--green-2); }

.nav-product {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.product-mega {
  position: fixed;
  top: 80px;
  left: max(20px, calc((100vw - 1180px) / 2));
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: 80;
  padding: 26px 28px 30px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.product-mega::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  height: 30px;
}

.nav-product:hover .product-mega,
.nav-product:focus-within .product-mega,
.nav-product.is-open .product-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mega-head strong { font-size: 26px; }
.mega-head a { color: var(--green); font-size: 14px; }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mega-group {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green-2);
  border-radius: 8px;
  background: #fbfdfc;
}

.mega-group strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.mega-group a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #e6efeb;
  color: #304348;
  font-weight: 750;
}

.mega-group a:last-child { border-bottom: 0; }

.hero-blog,
.hero-article {
  padding: 72px 0;
  background: linear-gradient(135deg, #062a20 0%, #0b3a2c 44%, #f6f1df 44%, #fff 100%);
}

.hero-blog-grid,
.hero-article-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.hero-card,
.article-cover {
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-cover img,
.blog-card img,
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cover {
  aspect-ratio: 16 / 10;
  border: 8px solid #fff;
}

.long-article-hero {
  padding: 70px 0 36px;
  background:
    linear-gradient(180deg, #f5faf7 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.long-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: end;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.long-article-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 74px);
  line-height: .97;
}

.article-deck {
  max-width: 760px;
  margin-bottom: 22px;
  color: #52666a;
  font-size: 20px;
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #607277;
  font-size: 14px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.short-answer-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #062a20;
  color: #fff;
  box-shadow: var(--shadow);
}

.short-answer-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.short-answer-card p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.long-cover {
  margin: 0 auto;
  padding-top: 28px;
}

.long-cover figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(6, 42, 32, .11);
}

.long-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.long-cover figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
}

.article-main-section {
  padding: 58px 0 72px;
}

.article-long-layout {
  grid-template-columns: minmax(0, 760px) 340px;
  justify-content: space-between;
}

.article-post {
  min-width: 0;
}

.answer-block,
.toc-card,
.article-callout,
.rfq-template,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.answer-block {
  margin-bottom: 28px;
  padding: 24px;
  border-left: 5px solid var(--green-2);
  background: #f5fbf8;
}

.answer-block strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.answer-block p {
  margin: 0;
  color: #304348;
  font-size: 18px;
}

.toc-card {
  margin-bottom: 38px;
  padding: 22px;
  background: #fbfdfc;
}

.toc-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.toc-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.toc-card a {
  color: var(--green);
  font-weight: 800;
}

.article-post h2 {
  margin: 48px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.article-post h3 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.article-post p,
.article-post li {
  color: #4f6267;
  font-size: 18px;
  line-height: 1.75;
}

.article-post ul,
.article-post ol {
  padding-left: 23px;
}

.article-post li {
  margin-bottom: 9px;
}

.comparison-table {
  width: 100%;
  margin: 20px 0 34px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #f1f8f5;
  color: var(--green);
  font-weight: 900;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.layer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 34px;
}

.layer-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.layer-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #ecf7f3;
  color: var(--green);
  font-weight: 950;
}

.layer-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.layer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.article-callout {
  margin: 34px 0;
  padding: 26px;
  background: #062a20;
  color: #fff;
}

.article-callout h3 {
  margin-top: 0;
  color: #fff;
}

.article-callout p {
  color: rgba(255, 255, 255, .78);
}

.rfq-template {
  margin: 22px 0 34px;
  padding: 22px;
  background: #fbfdfc;
}

.rfq-template strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-card {
  padding: 20px;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.article-side {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
  align-self: start;
}

.side-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(7, 38, 31, .07);
}

.side-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.side-card p {
  color: var(--muted);
  font-size: 15px;
}

.side-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 850;
}

.side-list li:last-child a {
  border-bottom: 0;
}

.side-card.dark {
  background: #062a20;
  color: #fff;
}

.side-card.dark p {
  color: rgba(255, 255, 255, .78);
}

.side-card .btn {
  width: 100%;
  margin-top: 10px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-blog p,
.hero-article p {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
}

.btn-primary {
  background: var(--yellow);
  color: #142226;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .48);
  color: #fff;
}

.section {
  padding: 72px 0;
}

.section.alt { background: var(--soft); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-directory {
  display: grid;
  gap: 18px;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.blog-list-item:hover {
  border-color: rgba(8, 122, 89, .38);
  box-shadow: 0 18px 48px rgba(6, 42, 32, .1);
  transform: translateY(-2px);
}

.blog-list-item.featured {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr);
  padding: 22px;
  background: linear-gradient(135deg, #fff 0%, #f4fbf8 100%);
}

.blog-list-item figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f0ed;
}

.blog-list-item figure img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.blog-list-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}

.blog-list-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.blog-list-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.blog-list-copy strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--green);
  font-size: 16px;
  font-weight: 950;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7d82;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf7f3;
  color: var(--green);
}

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.blog-topic-grid a {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.blog-topic-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #ebf7f2;
  color: var(--green);
  font-weight: 950;
}

.blog-topic-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}

.blog-topic-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.blog-card,
.related-card,
.info-card,
.spec-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.blog-card figure,
.related-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #e9f0ed;
}

.blog-card-body,
.related-card-body,
.info-card,
.spec-panel {
  padding: 24px;
}

.blog-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
}

.blog-card p,
.related-card p,
.info-card p,
.spec-panel p,
.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e9f4ef;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.read-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.article-body {
  font-size: 17px;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-size: 34px;
  line-height: 1.12;
}

.article-body h3 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.article-body ul {
  padding-left: 22px;
}

.article-body li { margin-bottom: 8px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  background: #f2f7f5;
  color: var(--green);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }

.sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}

.spec-panel h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.quick-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #304348;
  font-weight: 750;
}

.quick-list li:last-child { border-bottom: 0; }

.cta-panel {
  padding: 26px;
  border-radius: 8px;
  background: #062a20;
  color: #fff;
}

.cta-panel p { color: rgba(255, 255, 255, .78); }
.cta-panel .btn { width: 100%; margin-top: 12px; }

.brand-proof {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-proof img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.related-card-body h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.footer {
  padding: 46px 0;
  background: #05291f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr .9fr 1fr;
  gap: 28px;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
}

.footer a,
.footer p {
  display: block;
  margin: 6px 0;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.social-link img {
  width: 26px;
  height: 26px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20b26b;
  border: 4px solid #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .22);
}

.floating-whatsapp img {
  width: 45px;
  height: 45px;
}

.quote-response-box {
  margin: 20px 0 28px;
  padding: 20px;
  border: 1px solid #cfe2db;
  border-left: 4px solid #078362;
  background: #f2f8f6;
}

.quote-response-box strong {
  display: block;
  margin-bottom: 12px;
  color: #073e30;
  font-size: 18px;
}

.quote-response-box div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.quote-response-box span::before {
  content: "✓";
  margin-right: 7px;
  color: #078362;
  font-weight: 900;
}

.mobile-rfq-bar { display: none; }

@media (max-width: 980px) {
  .nav { height: auto; padding: 14px 0; }
  .brand { min-width: 0; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy span { font-size: 11px; }
  .nav-links { display: none; }
  .long-article-grid,
  .hero-blog-grid,
  .hero-article-grid,
  .article-layout,
  .article-long-layout,
  .brand-proof,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .long-article-hero { padding: 48px 0 26px; }
  .hero-blog,
  .hero-article {
    padding: 48px 0;
    background: #062a20;
  }
  .article-side { position: static; }
  .layer-grid { grid-template-columns: 1fr; }
  .blog-grid,
  .blog-topic-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .blog-list-item,
  .blog-list-item.featured {
    grid-template-columns: 1fr;
  }
  .blog-list-item figure img {
    min-height: 230px;
  }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .sidebar { position: static; }
  .contact-row { justify-content: center; flex-wrap: wrap; gap: 10px; padding: 7px 0; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .brand { gap: 10px; }
  .logo,
  .logo img { width: 94px; height: 52px; }
  .brand-copy strong { font-size: 16px; }
  h1 { font-size: 36px; }
  .article-body h2 { font-size: 28px; }
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 12px;
  }
  .floating-whatsapp img { width: 38px; height: 38px; }
  .quote-response-box div { grid-template-columns: 1fr; }
  body:has(.mobile-rfq-bar) { padding-bottom: 74px; }
  body:has(.mobile-rfq-bar) .floating-whatsapp { display: none; }
  .mobile-rfq-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: #05291f;
    color: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
  }
  .mobile-rfq-bar span { max-width: 46%; font-size: 12px; font-weight: 750; line-height: 1.25; }
  .mobile-rfq-bar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 6px;
    background: #20b26b;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
  }
  .mobile-rfq-bar img { width: 28px; height: 28px; }
}
