/*
Theme Name: Frost
Theme URI: https://frostwp.com/
Author: WP Engine
Author URI: https://wpengine.com/
Description: With its clean, minimal design and powerful feature set, Frost enables agencies to build stylish and sophisticated WordPress websites. Frost is a masterpiece of design and functionality. It features a range of valuable patterns, including hero and portfolio sections, prominent call-to-action buttons, and customer testimonials. Whether you’re building a website for your business, personal brand, or creative project, Frost is perfect for anyone looking to launch quickly and efficiently.
Tags: block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, full-site-editing, one-column, template-editing, threaded-comments, translation-ready, wide-blocks
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0.10
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: frost
*/

/* Defaults
---------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

a,
button,
input:focus,
input[type="button"],
input[type="submit"],
textarea:focus,
.wp-element-button {
	transition: all 0.2s ease-in-out;
}

a,
a:focus,
a:hover,
a:not(.wp-element-button) {
	text-decoration-thickness: 1px;
}

b,
strong,
th {
	font-weight: var(--wp--custom--font-weight--medium);
}

mark {
	background: linear-gradient(90deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--primary) 100%);
	background-position: 0 85%;
	background-repeat: repeat-x;
	background-size: 100% 15%;
}

/* -- Forms -- */

input,
select,
textarea {
	background-color: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--contrast);
	border-radius: 0;
	color: var(--wp--preset--color--contrast);
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: var(--wp--custom--font-weight--light);
	line-height: var(--wp--custom--line-height--body);
	padding: 10px 20px;
	width: 100%;
}

input:focus,
textarea:focus {
	background-color: var(--wp--preset--color--neutral);
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="text"],
textarea {
	-webkit-appearance: none;
}

::placeholder {
	color: var(--wp--preset--color--contrast);
	font-size: var(--wp--preset--font-size--small);
	opacity: 0.5;
}

/* Blocks
---------------------------------------- */

/* -- Code -- */

*:not(.wp-block-code) > code {
	background-color: var(--wp--preset--color--neutral);
	font-size: var(--wp--preset--font-size--small);
	padding: 5px 8px;
}

/* -- Navigation -- */

.wp-block-navigation__responsive-container.is-menu-open {
	padding: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	padding-top: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
	border: 1px solid currentColor;
	padding: 2px;
}

.has-background .wp-block-navigation__responsive-container-open:focus,
.has-background .wp-block-navigation__responsive-container-open:hover {
	color: var(--wp--preset--color--base);
}

/* -- Navigation Submenu -- */

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
	background-color: var(--wp--preset--color--contrast);
	border: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
	padding: 10px;
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) a {
	padding: 2px 10px;
}

/* Utility
---------------------------------------- */

.is-style-shadow-light {
	box-shadow: var(--wp--preset--shadow--light);
}

.is-style-shadow-solid {
	box-shadow: var(--wp--preset--shadow--solid);
}

/* Media Queries
---------------------------------------- */

@media only screen and (max-width: 600px) {
	.is-style-hidden-mobile {
		display: none !important;
	}
}

@media only screen and (max-width: 782px) {
	.is-style-columns-reverse {
		flex-direction: column-reverse;
	}
}

/* ==== Lederman Capital Group custom layout ==== */

.lcg-root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #f7f7fb;
  color: #111827;
  max-width: 1200px;
  margin: 0 auto;
}

.lcg-main {
  padding-bottom: 4rem;
}

.lcg-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.lcg-header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.lcg-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1.5rem;
  gap: 2rem;
}

/* Logo + tagline */

.lcg-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
}

.lcg-brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.lcg-brand-tagline {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Nav */

.lcg-nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.4rem;
  row-gap: 0.4rem;
  font-size: 0.9rem;
  margin-left: 2rem; /* space between logo & nav */
}

.lcg-nav-links a {
  position: relative;
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  padding: 0.25rem 0;
}

.lcg-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  border-radius: 999px;
  background: #111827;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.lcg-nav-links a:hover {
  color: #111827;
}

.lcg-nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Mobile nav tweaks */

@media (max-width: 900px) {
  .lcg-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lcg-nav-links {
    margin-left: 0;
    padding-top: 0.6rem;
    border-top: 1px solid #e5e7eb;
  }
}

/* Sections */

.lcg-section {
  padding: 4rem 0;
}

.lcg-section + .lcg-section {
  border-top: 1px solid #e5e7eb;
}

.lcg-section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.lcg-section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

.lcg-section-heading {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.lcg-section-intro {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Hero */

.lcg-hero {
  background: radial-gradient(
    circle at top left,
    #e0f2fe 0,
    #f7f7fb 40%,
    #ffffff 100%
  );
  border-bottom: 1px solid #e5e7eb;
}

.lcg-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: stretch;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.lcg-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.lcg-hero-kicker-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2563eb;
}

.lcg-hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.lcg-hero-title span {
  color: #2563eb;
}

.lcg-hero-sub {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.lcg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.lcg-btn-primary,
.lcg-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.lcg-btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.lcg-btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
  transform: translateY(-1px);
}

.lcg-btn-ghost {
  background: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.lcg-btn-ghost:hover {
  background: #f3f4f6;
}

/* Hero badges */

.lcg-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lcg-hero-badge {
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e7eb;
  color: #4b5563;
}

/* Hero right card */

.lcg-hero-right {
  display: flex;
  align-items: stretch;
  margin-top: -10px !important;  /* aligned with logo */
  padding-bottom: 20px !important;
}

.lcg-hero-card {
  background: radial-gradient(
    circle at top left,
    #e0f2fe 0,
    #eef2ff 30%,
    #ffffff 70%
  );
  border-radius: 1.5rem;
  padding: 1.2rem 1.7rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.lcg-hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.lcg-hero-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4b5563;
}

.lcg-hero-card-chip {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.26);
}

/* Vertical "signal stack" metrics */

.lcg-metrics-updated {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0.9rem;
}

.lcg-metrics-updated .lcg-metric-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.9rem;
  padding: 0.7rem 0.9rem 0.7rem 1.6rem;
  border: 1px solid #e5e7eb;
  position: relative;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

/* Colored signal dots */

.lcg-metrics-updated .lcg-metric-card::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.lcg-metrics-updated .lcg-metric-card:nth-child(2)::before {
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

.lcg-metrics-updated .lcg-metric-card:nth-child(3)::before {
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
}

.lcg-metrics-updated .lcg-metric-card:nth-child(4)::before {
  background: #a855f7;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
}

.lcg-metrics-updated .lcg-metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.lcg-metrics-updated .lcg-metric-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.15rem;
}

.lcg-metrics-updated .lcg-metric-text {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Footer callout */

.lcg-hero-card-footer {
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.86rem;
  color: #4b5563;
}

.lcg-hero-card-pill {
  margin-top: 0.45rem;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #0f766e;
  color: #ecfdf5;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Generic grids */

.lcg-diff-grid,
.lcg-platform-grid,
.lcg-hybrid-grid,
.lcg-build-grid,
.lcg-portfolio-grid {
  display: grid;
  gap: 1.75rem;
}

.lcg-diff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lcg-platform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcg-hybrid-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lcg-build-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcg-portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcg-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.lcg-card-title,
.lcg-hybrid-title,
.lcg-build-title,
.lcg-portfolio-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.lcg-card-body,
.lcg-build-body,
.lcg-portfolio-body,
.lcg-portfolio-meta {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.lcg-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.lcg-badge {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
}

.lcg-portfolio-tag {
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

/* Why / vision / contact / footer */

.lcg-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.75rem;
}

.lcg-why-list {
  padding-left: 1.1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lcg-why-list li {
  font-size: 0.96rem;
  color: #374151;
}

.lcg-vision-box {
  background: #111827;
  color: #e5e7eb;
  padding: 1.8rem 1.9rem;
  border-radius: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.8;
}

.lcg-contact-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  padding: 1.8rem 1.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.75rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.lcg-contact-title {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.lcg-contact-sub {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.lcg-contact-meta {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.lcg-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.lcg-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 1.3rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive layout tweaks */

@media (max-width: 900px) {
  .lcg-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .lcg-hero-card {
    margin-top: 1.25rem;
  }

  .lcg-diff-grid,
  .lcg-platform-grid,
  .lcg-hybrid-grid,
  .lcg-build-grid,
  .lcg-portfolio-grid,
  .lcg-why-grid,
  .lcg-contact-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .lcg-section {
    padding: 2.5rem 0;
  }

  .lcg-hero-title {
    font-size: 2rem;
  }

  .lcg-hero-sub,
  .lcg-section-intro {
    font-size: 0.96rem;
  }
}

/* === Override Frost boxed layout on the home page === */

body .wp-site-blocks {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .wp-site-blocks > main,
body .wp-site-blocks > div {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide default Frost header/title above our custom layout */

body .wp-site-blocks > header {
  display: none !important;
}

.wp-block-post-title,
.wp-block-post-title + p {
  display: none !important;
}

/* Section card styling for non-hero sections */

.lcg-section:not(.lcg-hero) .lcg-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

.lcg-section:nth-of-type(even) {
  background: #f3f4f6;
}

.lcg-hero .lcg-container {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Force full-width layout on core groups */

.wp-site-blocks,
.wp-block-group.alignwide,
.wp-block-group {
  max-width: 100% !important;
  width: 100% !important;
}

.entry-content > .wp-block-group,
.wp-block-post-content > .wp-block-group {
  max-width: 100% !important;
  width: 100% !important;
}

/* Slightly bigger page padding */

body {
  --wp--style--root--padding-left: 24px !important;
  --wp--style--root--padding-right: 24px !important;
}

/* Home page spacing / block cleanup */

body.page-id-2
  .entry-content.wp-block-post-content.has-global-padding {
  --wp--custom--spacing--gap: 0 !important;
  gap: 0 !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

body.page-id-2
  .entry-content.wp-block-post-content.has-global-padding.is-layout-constrained
  > * {
  max-width: 100% !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.page-id-2 .entry-content .wp-block-html {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

body.page-id-2 .entry-content .wp-block-html section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.page-id-2 .entry-content > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Tighten hero bottom spacing so section 2 sits closer */

body.page-id-2 #hero {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.page-id-2 #hero .lcg-hero-inner {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.page-id-2 #hero .lcg-hero-card {
  margin-bottom: 0 !important;
  padding-bottom: 10px !important;
}

body.page-id-2 #hero .lcg-hero-card-footer {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Hero Logo */

.lcg-hero-logo {
  margin-bottom: 1.25rem !important;
  display: flex;
  align-items: center;
}

.lcg-hero-logo-img {
  height: 170px;
  width: auto;
}

@media (max-width: 640px) {
  .lcg-hero-logo-img {
    height: 54px;
  }
}

/* === ROAD AHEAD – TEXT LEFT, IMAGE RIGHT === */

.lcg-vision-clean {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15,23,42,0.04);
}

.lcg-vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

/* text column */
.lcg-vision-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  order: 1;              /* ENSURE text is left */
}

/* image column */
.lcg-vision-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;              /* ENSURE image is right */
}

.lcg-vision-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .lcg-vision-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lcg-vision-image {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* === PLATFORM: text left, image right in header === */
.lcg-platform-header {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.lcg-platform-left {
  flex: 1 1 0;
  min-width: 0;
}

.lcg-platform-right {
  flex: 0 0 360px;
  max-width: 420px;
  display: flex;
  justify-content: center;
}

.lcg-platform-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

/* === VISION: text left, system graphic right === */
.lcg-vision-clean {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.lcg-vision-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.lcg-vision-left {
  flex: 1 1 0;
  min-width: 0;
}

.lcg-vision-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-top: 1rem;
}

.lcg-vision-image-wrap {
  flex: 0 0 360px;
  max-width: 420px;
  display: flex;
  justify-content: center;
}

.lcg-vision-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

/* Stack on tablet/mobile so it doesn’t crush */
@media (max-width: 900px) {
  .lcg-platform-header,
  .lcg-vision-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .lcg-platform-right,
  .lcg-vision-image-wrap {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .lcg-platform-image,
  .lcg-vision-image {
    max-width: 100%;
    margin-top: 1rem;
  }
}
/* === PLATFORM: text left, image right in header === */
.lcg-platform-header {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.lcg-platform-left {
  flex: 1 1 0;
  min-width: 0;
}

.lcg-platform-right {
  flex: 0 0 360px;
  max-width: 420px;
  display: flex;
  justify-content: center;
}

.lcg-platform-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

