/* ------------------------------------------------------------------
   News article (magazine-style) — Light + Building 2026 etc.
   Loaded site-wide; styles scoped under .lb-news.
   ------------------------------------------------------------------ */

.lb-news {
  font-family: inherit;
  color: #1a2733;
  line-height: 1.65;
  font-size: 1.02em;
  max-width: 920px;
  margin: 0 auto;
}
.lb-news p { margin: 0 0 1.1em; }
.lb-news strong { color: #0a1a2a; }

/* Hero image — magazine-style strip with gradient overlay & caption */
.lb-hero {
  position: relative;
  margin: 0 0 2em;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 30, 60, 0.12);
  aspect-ratio: 16 / 9;
  max-height: 460px;
  background: #0a1a2a;
}
.lb-hero picture { display: block; width: 100%; height: 100%; }
.lb-hero img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center 35%;
}
.lb-hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4em 1.6em 1.2em;
  background: linear-gradient(to top, rgba(0,17,40,0.85), rgba(0,17,40,0));
  color: #fff;
  font-size: 0.95em;
}
.lb-hero-caption strong { color: #fff; }
.lb-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78em;
  font-weight: 700;
  color: #ffd13a;
  margin: 0 0 0.4em;
}

/* Lead (intro) paragraph — bigger, friendlier */
.lb-lead {
  font-size: 1.18em;
  line-height: 1.55;
  color: #243140;
  margin: 0 0 2em;
  padding: 0 0 1.6em;
  border-bottom: 1px solid #e3e8ef;
}

/* Section headings */
.lb-news h2 {
  font-size: 1.45em;
  line-height: 1.25;
  margin: 2.4em 0 1em;
  color: #0a1a2a;
  font-weight: 700;
  position: relative;
  padding-left: 0.85em;
}
.lb-news h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0.18em;
  width: 5px; height: 0.95em;
  background: #0066cc;
  border-radius: 2px;
}

/* Three core themes — card grid */
.lb-themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 1.4em;
  padding: 0;
  list-style: none;
}
.lb-themes > li {
  background: #f5f8fc;
  border: 1px solid #e3e9f1;
  border-radius: 10px;
  padding: 1.2em 1.1em 1.1em;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lb-themes > li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 30, 60, 0.08);
}
.lb-theme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: #0066cc;
  color: #fff;
  margin: 0 0 0.7em;
}
.lb-theme-icon svg { width: 22px; height: 22px; }
.lb-themes h3 {
  font-size: 1.05em;
  margin: 0 0 0.45em;
  color: #0a1a2a;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.lb-themes p { font-size: 0.96em; line-height: 1.55; margin: 0; color: #3b4a5c; }

/* Meetings — pull-quote-ish list of OEM mentions */
.lb-meetings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 1.4em;
  padding: 0;
  list-style: none;
}
.lb-meetings > li {
  background: #fff;
  border-left: 3px solid #0066cc;
  padding: 0.95em 1.1em;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 1px 3px rgba(15, 30, 60, 0.05);
  font-size: 0.97em;
  line-height: 1.5;
  color: #2a3a4d;
}
.lb-meetings > li strong { color: #0a1a2a; display: block; margin: 0 0 0.25em; font-size: 1.02em; }

/* CTA box */
.lb-cta {
  margin: 2.8em 0 1.4em;
  padding: 2em 1.6em;
  background: linear-gradient(135deg, #003a73 0%, #0066cc 100%);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 60, 120, 0.18);
}
.lb-cta p {
  margin: 0 0 1.2em;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.45;
  font-weight: 500;
}
.lb-cta strong { color: #ffd13a; }
.lb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 14px 30px;
  background: #ffd13a;
  color: #0a1a2a !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05em;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 0;
}
.lb-cta-btn:hover, .lb-cta-btn:focus {
  background: #fff;
  color: #0a1a2a !important;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.lb-cta-btn svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* Signature footer */
.lb-signature {
  margin: 2.4em 0 1em;
  padding: 1.4em 1.4em;
  background: #f5f8fc;
  border: 1px solid #e3e9f1;
  border-radius: 10px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #3b4a5c;
}
.lb-signature strong { color: #0a1a2a; }
.lb-signature .lb-sig-row { display: flex; flex-wrap: wrap; gap: 0.4em 1.2em; margin-top: 0.7em; align-items: center; }
.lb-signature .lb-sig-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: #0066cc;
  text-decoration: none;
}
.lb-signature .lb-sig-row a:hover { text-decoration: underline; }
.lb-signature .lb-sig-row svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ---- Mobile (≤720px) ---- */
@media (max-width: 720px) {
  .lb-news { font-size: 1em; }
  .lb-hero { aspect-ratio: 4 / 3; max-height: 360px; }
  .lb-hero-caption { padding: 1em 1em 0.9em; font-size: 0.9em; }
  .lb-lead { font-size: 1.05em; padding-bottom: 1.2em; margin-bottom: 1.6em; }
  .lb-news h2 { font-size: 1.25em; margin: 1.8em 0 0.8em; }
  .lb-themes { grid-template-columns: 1fr; gap: 12px; }
  .lb-meetings { grid-template-columns: 1fr; gap: 10px; }
  .lb-cta { padding: 1.6em 1.2em; }
  .lb-cta p { font-size: 1em; }
  .lb-cta-btn { padding: 12px 22px; font-size: 1em; }
}

/* Hide Joomla's auto-generated category/blog intro image when introtext
   already contains its own .lb-news structure (avoid duplicate img) */
.item-page .lb-news + img,
.items-leading .lb-news ~ img.first { display: none; }
