@charset "UTF-8";
/******************************************
Section | Content + Image (content_image)
Figma: Page Consolidation > "Content + Image Side by Side" (node 149:654)
******************************************/
/**************************************************
Stylesheet: Design Tokens (ECOVA page components)

Source of truth: Figma "Page Consolidation" variables. Values are kept
verbatim from Figma and intentionally NOT reconciled with
sass/theme/_theme_variables.scss (see the palette note in the build plan).

Usage from a component stylesheet (components/{name}/{name}.scss):
  @use "../../library/variables/tokens" as *;
  @use "../../library/mixins/mixins" as *;
(@import also works but is deprecated in Dart Sass and removed in 3.0.)

Do NOT use font-secondary() or font-proxima() from the mixins partial:
neither font family is loaded on the site. Use the type() mixin below.
**************************************************/
/*******************
PALETTE
********************/
/*******************
TYPE — Inter (loaded by the theme via Google Fonts)
********************/
/*******************
EFFECTS
********************/
/*******************
BREAKPOINTS — mirror $grid-breakpoints in sass/theme/_theme_variables.scss
********************/
/*******************
LAYOUT — shared section box. Figma page is 1440 wide with 145px margins,
so content is 1150px; the wrapper adds one gutter each side.
********************/
/**************************************************
Stylesheet: Mixins Stylesheet
**************************************************/
/*******************
FONT MIXINS (size, color, weight, line-height)
********************/
/*********************
Column split into X columns
@include column-count(3);
*********************/
/*********************
Column split with px gap
@include column-gap(40px);
*********************/
/*********************
Column split style
@include column-rule-style(solid);
*********************/
/*********************
Column split border
@include column-rule(1px solid #ededed);
*********************/
/*********************
Background gradient 2 color
@include background-gradient($gray, #000);
*********************/
/*********************
Background gradient 3 color
@include accordion-gradient($gray, #000, #666);
*********************/
/*********************
Transform duration by X seconds
@include transition(1.5s);
*********************/
/*********************
Transform Rotate element by x degrees
@include rotate(180);
*********************/
/*********************
Creates a 6px arrow with pure css
@include arrow(#000);
*********************/
/*********************
Clip 10px corner off the bottom right corner
@include cornerclip(#000);
*********************/
/*********************
Clip 3px corner off the bottom right corner
@include cornerclipsmall(#000);
*********************/
/*********************
Clip 10px corner off the top right corner
@include cornercliptop(#000);
*********************/
/*********************
Clip 10px corner off the top left corner
@include cornercliptopleft(#000);
*********************/
/******************************************
Section | Content + Image (content_image)
Figma: Page Consolidation > "Content + Image Side by Side" (node 149:654)
******************************************/
/**************************************************
Stylesheet: Shared UI mixins for page components
Usage (after tokens):  @use "../../library/mixins/ui" as *;
**************************************************/
section.content-image {
  background: #FFFFFF;
}
section.content-image[data-background=riverstone] {
  background: #006675;
}
section.content-image[data-background=verdant] {
  background: #688F2D;
}
section.content-image[data-background=ember] {
  background: #EB7922;
}
section.content-image[data-background=current] {
  background: #00929D;
}
section.content-image[data-background=blue_carbon] {
  background: #003A60;
}
section.content-image[data-background=evergreen] {
  background: #4F5C41;
}
section.content-image[data-background=claystone] {
  background: #AA2B2B;
}
section.content-image[data-background=graphite] {
  background: #636569;
}
section.content-image[data-background=stonewood] {
  background: #D8D6D3;
}
section.content-image[data-background=pulp] {
  background: #D5D8C7;
}
section.content-image[data-background=ink] {
  background: #0F0F0F;
}
section.content-image[data-background=white] {
  background: #FFFFFF;
}
section.content-image .inner-wrapper {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 30px;
}
section.content-image .inner {
  display: flex;
  align-items: center;
  gap: 66px;
  padding: 60px 0 80px;
}
section.content-image {
  /* Design-ratio flex: grow factors are the raw px widths from the design file
   (444 + 639 + 66px gap = 1149px artboard). With flex-basis: 0, content size is
   ignored and free space is split 444:639 — i.e. 41% / 59% — at any viewport,
   with no percentage math or rounding drift. min-width: 0 defeats the default
   min-width: auto so the columns can actually shrink below their content.
   Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow */
}
section.content-image .content {
  flex: 444 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
section.content-image .media {
  flex: 639 1 0%;
  min-width: 0;
}
section.content-image .media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.content-image[data-media-position=left] .media {
  order: -1;
}
section.content-image .heading {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #006675;
  margin: 0;
}
section.content-image .body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: #0F0F0F;
}
section.content-image .body p {
  margin: 0 0 0.75em;
}
section.content-image .body > :last-child {
  margin-bottom: 0;
}
section.content-image .button-primary {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: 0;
  background: #003A60;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
section.content-image .button-primary:hover, section.content-image .button-primary:focus {
  background: rgb(0, 103.0225, 170.52);
  color: #FFFFFF;
  text-decoration: none;
}
section.content-image .button-primary:focus-visible {
  outline: 2px solid #00929D;
  outline-offset: 2px;
}
@media (max-width: 991.98px) {
  section.content-image .inner {
    gap: 40px;
  }
  section.content-image .content,
  section.content-image .media {
    flex: 1 1 0%;
  }
}
@media (max-width: 781.98px) {
  section.content-image .inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 40px 0 48px;
  }
  section.content-image .content,
  section.content-image .media {
    flex: none;
  }
  section.content-image[data-media-position=left] .media {
    order: 0;
  }
  section.content-image .heading {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
  }
}
