/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 1.0.0
*/

/* ===========================================================
   Synergy Staffing For You
   Original brand-inspired color system
   =========================================================== */

:root{
  /* Brand colors */
  --brand-blue:       #00AEEF;
  --brand-blue-dark:  #087FAF;
  --brand-red:        #B82032;
  --brand-red-dark:   #951827;
  --brand-orange:     #A95324;

  /* Neutral colors */
  --ink:              #111111;
  --charcoal:         #292929;
  --slate:            #625F5D;
  --muted:            #777777;
  --paper:            #FFFFFF;
  --paper-2:          #F7F9FA;
  --block:            #EEF4F7;
  --block-dark:       #E4EDF1;
  --line:             #DCE3E7;
  --line-dark:        #3A3A3A;
  --white:            #FFFFFF;

  /* Status colors */
  --success:          #087F67;
  --error:            #B82032;

  /* Typography */
  --font-display:
    'Barlow Condensed',
    'Arial Narrow',
    sans-serif;

  --font-body:
    'Source Sans 3',
    'Segoe UI',
    sans-serif;

  --font-mono:
    'IBM Plex Mono',
    'Courier New',
    monospace;

  /* Layout */
  --radius: 4px;
  --radius-large: 8px;
  --max: 1180px;
  --header-height: 76px;
}

/* ===========================================================
   RESET AND GLOBAL ELEMENTS
   =========================================================== */

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

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================================
   PAGE TRANSITIONS

   A JS-driven color wipe between index.html and employees.html.
   The overlay sits over the whole viewport, covering by default
   (so there is never a flash of unstyled content), then wipes
   away on load and wipes back in before navigating away. Each
   page uses its own accent color so the color change itself
   signals "you're on a different page now."

   This does not depend on any experimental browser API, so it
   behaves identically every time, in every browser.
   =========================================================== */

.page-transition-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brand-blue-dark);
  transform: translateX(0%);
  transition: transform .65s cubic-bezier(.76, 0, .24, 1);
  pointer-events: none;
}

.page-transition-overlay.is-revealed{
  transform: translateX(101%);
}

.page-transition-overlay.is-instant{
  transition: none;
}

@media (prefers-reduced-motion: reduce){
  .page-transition-overlay{
    transition: none;
  }
}

html, body{
  overflow-x: hidden;
  overflow-y: auto !important;
  height: auto !important;
  position: static !important;
}

body{
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
	font-size: 100% !important;
  font-size: 17px;
  line-height: 1.55;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
}

button,
input,
textarea{
  font: inherit;
}

h1,
h2,
h3,
h4{
  margin: 0 0 .5em;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .01em;
}

h1{
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: .98;
}

h2{
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.05;
}

h3{
  font-size: 1.4rem;
  line-height: 1.15;
}

p{
  margin: 0 0 1em;
  color: var(--slate);
}

ul{
  margin-top: 0;
}

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section{
  padding: 5.5rem 0;
}

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

.section-head{
  max-width: 62ch;
  margin-bottom: 2.8rem;
}

.section-head > p:last-child{
  margin-bottom: 0;
}

.eyebrow{
  display: inline-block;
  margin-bottom: .8em;
  color: var(--brand-orange);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
}

:focus-visible{
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
}

/* ===========================================================
   BUTTONS
   =========================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .9em 1.5em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform .15s ease,
    background-color .15s ease,
    border-color .15s ease,
    color .15s ease,
    box-shadow .15s ease;
}

.btn:hover{
  transform: translateY(-2px);
}

.btn-primary{
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(184, 32, 50, .14);
}

.btn-primary:hover{
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(149, 24, 39, .2);
}

.btn-outline{
  background: transparent;
  border-color: var(--brand-blue-dark);
  color: var(--brand-blue-dark);
}

.btn-outline:hover{
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  color: var(--white);
}

/* ===========================================================
   HEADER
   =========================================================== */

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

.site-header .container{
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
}

.logo-mark{
  display: block;
  width: auto;
  height: 34px;
}

.logo span{
  color: var(--brand-blue-dark);
}

.main-nav{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(.6rem, 1.6vw, 2rem);
  white-space: nowrap;
}

.main-nav > a:not(.btn){
  color: var(--slate);
  font-size: .94rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease;
}

.main-nav > a:not(.btn):hover{
  color: var(--brand-orange);
}

.main-nav > a[aria-current="page"]{
  color: var(--brand-orange);
}

.nav-apply{
  padding: .65em 1.25em;
}

.nav-login{
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
  font-weight: 800;
}

.nav-login:hover{
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  color: var(--white);
}

/* ===========================================================
   TICKER
   =========================================================== */

.ticker{
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  white-space: nowrap;
}

.ticker-track{
  display: inline-block;
  padding: .58em 0;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-track:hover{
  animation-play-state: paused;
}

.ticker-track a{
  display: inline-block;
  margin: 0 2.2em;
  color: var(--brand-blue);
  text-decoration: none;
}

.ticker-track a:hover{
  color: var(--white);
  text-decoration: underline;
}

@keyframes ticker-scroll{
  from{
    transform: translateX(0);
  }

  to{
    transform: translateX(-50%);
  }
}

/* ===========================================================
   HERO
   =========================================================== */

.hero{
  padding: 6rem 0 4.5rem;
  background: var(--paper);
}

.hero .container{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: end;
}

.hero-main{
  max-width: 58ch;
}

.hero h1{
  margin-bottom: .4em;
}

.hero-lede{
  max-width: 48ch;
  font-size: 1.15rem;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.hero-side{
  padding-left: 1.5rem;
  border-left: 4px solid var(--brand-blue);
}

.hero-side p{
  font-size: .98rem;
}

.hero-image{
  width: 100%;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(17, 17, 17, .1);
}

/* ===========================================================
   STAT STRIP
   =========================================================== */

.stat-strip{
  padding: 3rem 0;
  background: var(--ink);
  color: var(--white);
}

.stat-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat{
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-dark);
}

.stat:first-child{
  padding-left: 0;
  border-left: 0;
}

.stat .num{
  display: block;
  margin-bottom: .25em;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.stat .label{
  display: block;
  max-width: 32ch;
  color: #DADADA;
  font-size: .88rem;
}

/* ===========================================================
   JOB CAROUSEL INTRODUCTION
   =========================================================== */

.jobs-section{
  position: relative;
  background: var(--paper);
}

.jobs-intro{
  padding-top: 5.5rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.jobs-intro .section-head{
  margin-bottom: 0;
}

.jobs-intro-button{
  flex: 0 0 auto;
}

.carousel-wrapper{
  --carousel-offset: var(--header-height);

  position: relative;
  background: var(--block);
  border-top: 1px solid #CFDDE3;
  border-bottom: 1px solid #CFDDE3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    inset 0 -1px 0 rgba(17, 17, 17, .025);
}

.carousel-sticky{
  position: relative;
  height: auto;
  min-height: 620px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-track{
  height: 100%;
  width: max-content;
  display: flex;
  transform: none !important;
}

.carousel-slide{
  position: relative;
  width: 100vw;
  height: 100%;
  flex: 0 0 100vw;
  padding: 6rem 28px 5rem;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}

.slide-counter{
  position: absolute;
  top: 2rem;
  left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  z-index: 3;
  min-height: 3.3rem;
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
  padding: .55rem .85rem;
  background: rgba(255, 255, 255, .82);
  border-left: 5px solid var(--brand-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 5px 16px rgba(17, 17, 17, .08);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.slide-current{
  color: var(--brand-orange);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 700;
}

.slide-divider{
  color: var(--muted);
  font-size: 1rem;
}

.slide-total{
  color: var(--slate);
  font-size: 1rem;
  font-weight: 600;
}

.carousel-content{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(0, .85fr)
    minmax(440px, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.carousel-text{
  max-width: 530px;
}

.job-type{
  display: inline-block;
  margin-bottom: .9rem;
  color: var(--brand-blue-dark);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.carousel-text h3{
  margin-bottom: .55em;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1;
}

.carousel-text h3 a{
  color: var(--ink);
  text-decoration: none;
}

.carousel-text h3 a:hover{
  color: var(--brand-blue-dark);
}

.carousel-text > p{
  max-width: 50ch;
  font-size: 1.05rem;
}

.job-details{
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: .6rem;
  list-style: none;
}

.job-details li{
  position: relative;
  padding-left: 1.4rem;
  color: var(--charcoal);
  font-size: .93rem;
}

.job-details li::before{
  content: '';
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--brand-blue);
  border-radius: 50%;
}

.carousel-image{
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  display: block;
  background: var(--white);
  border: 1px solid #CBD8DE;
  border-radius: var(--radius-large);
  box-shadow: 0 18px 38px rgba(17, 17, 17, .14);
  text-decoration: none;
}

.carousel-image img{
  width: 100%;
  height: min(55vh, 500px);
  min-height: 360px;
  object-fit: cover;
  transition: transform .35s ease;
}

.carousel-image:hover img{
  transform: scale(1.025);
}

.image-link-label{
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .7rem .9rem;
  background: rgba(17, 17, 17, .9);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.carousel-image:hover .image-link-label{
  background: var(--brand-red);
}

.carousel-progress,
.carousel-scroll-hint{
  display: none !important;
}

.carousel-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(17,17,17,.12);
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--ink);
}

.carousel-nav-prev{ left: 16px; }
.carousel-nav-next{ right: 16px; }

/* ===========================================================
   BENEFITS
   =========================================================== */

.benefits{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2.5rem;
}

.benefit-item{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.benefit-item .mark{
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-top: .1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
}

.benefit-item p{
  margin: 0;
  font-size: .96rem;
}

.benefit-item strong{
  color: var(--ink);
}

/* ===========================================================
   ASSIGNMENT GUIDE
   =========================================================== */

.guide-layout{
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 3rem;
  align-items: stretch;
}

.guide{
  padding: 3rem;
  background: var(--ink);
  border-radius: var(--radius-large);
  color: var(--white);
}

.guide .section-head{
  margin-bottom: 2rem;
}

.guide .eyebrow{
  color: var(--brand-blue);
}

.guide .section-head h2{
  color: var(--white);
}

.guide .section-head p{
  color: #D1D5D8;
}

.guide-list{
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.guide-list li{
  position: relative;
  padding: 1rem .8rem 1rem 1.65rem;
  border-bottom: 1px solid var(--line-dark);
  color: #E4E4E4;
  font-size: .92rem;
}

.guide-list li::before{
  content: '→';
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--brand-blue);
  font-family: var(--font-mono);
}

.success-box{
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius);
}

.success-box h3{
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.35rem;
}

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

.success-list li{
  color: var(--slate);
  font-size: .91rem;
}

.success-list strong{
  color: var(--ink);
}

.guide-image-wrap{
  min-height: 100%;
}

.guide-image{
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: 0 14px 32px rgba(17, 17, 17, .1);
}

/* ===========================================================
   EMPLOYERS
   =========================================================== */

.teaser-content{
  max-width: 68ch;
}

.teaser-content p{
  font-size: 1.06rem;
}

/* ===========================================================
   COMPLIANCE
   =========================================================== */

.compliance-section{
  padding: 3.5rem 0;
  background: var(--white);
}

.compliance-grid{
  max-width: 940px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.compliance-item{
  padding: .2rem 0 .2rem 1.4rem;
  border-left: 4px solid;
}

.compliance-blue{
  border-left-color: var(--brand-blue);
}

.compliance-orange{
  border-left-color: var(--brand-orange);
}

.compliance-item h3{
  margin-top: 0;
  font-size: 1.25rem;
}

.compliance-item p{
  margin: 0;
  font-size: .92rem;
}

.compliance-item a{
  color: var(--brand-blue-dark);
  font-weight: 600;
}

.compliance-item a:hover{
  color: var(--brand-red);
}

/* ===========================================================
   CONTACT AND OFFICES
   =========================================================== */

.offices{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.office-card{
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-blue);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(17, 17, 17, .05);
}

.office-label{
  display: block;
  margin-bottom: .5rem;
  color: var(--brand-orange);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.office-card h3{
  margin-bottom: .2em;
}

.office-card .phone{
  display: block;
  margin: .3em 0;
  color: var(--brand-blue-dark);
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  text-decoration: none;
}

.office-card .phone:hover{
  color: var(--brand-red);
}

.office-meta{
  margin: 0;
  color: var(--slate);
  font-size: .88rem;
}


.map-links{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin: .8rem 0;
}

.map-links a{
  color: var(--brand-blue-dark);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.map-links a:hover{
  color: var(--brand-red);
  text-decoration: underline;
}

.oncall-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  margin-top: .75rem;
}

.oncall-actions a{
  color: var(--brand-blue-dark);
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.oncall-actions a:hover{
  color: var(--brand-red);
  text-decoration: underline;
}

/* ===========================================================
   REFER A FRIEND
   =========================================================== */

.refer{
  padding: 3rem;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.8rem;
  align-items: start;
  background: var(--block);
  border: 1px solid #D5E1E6;
  border-radius: var(--radius-large);
}

form.refer-form{
  display: grid;
  gap: 1rem;
}

.field{
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.field label{
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: .82em .9em;
  background: var(--white);
  border: 1px solid #CBD7DD;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.field textarea{
  resize: vertical;
}

.field select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23625F5D'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%23625F5D' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9em center;
  background-size: 18px;
  padding-right: 2.4em;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--brand-blue-dark);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, .18);
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit{
  justify-self: start;
}

.form-status{
  min-height: 1.3em;
  margin: .5rem 0 0;
  color: var(--success);
  font-size: .9rem;
  font-weight: 600;
}

/* ===========================================================
   FOOTER
   =========================================================== */

.site-footer{
  padding: 3.5rem 0 2rem;
  background: var(--ink);
  color: #D1D5D8;
}

.footer-top{
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--white);
  font-size: 1.7rem;
}

.footer-brand .logo-mark{
  height: 120px;
}

.footer-description{
  max-width: 36ch;
  color: #B8BDC2;
  font-size: .92rem;
}

.footer-top h3{
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-top a{
  display: block;
  margin-bottom: .65rem;
  color: #D1D5D8;
  font-size: .92rem;
  text-decoration: none;
}

.footer-top a:hover{
  color: var(--brand-blue);
}

.footer-bottom{
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem 1.2rem;
  color: #AEB4B9;
  font-size: .82rem;
}

.footer-bottom a{
  color: var(--brand-blue);
  text-decoration: none;
}

.footer-bottom a:hover{
  color: var(--white);
}

/* ===========================================================
   TABLET
   =========================================================== */

@media (max-width: 1000px){
  .main-nav{
    gap: 1rem;
  }

  .main-nav > a:not(.btn){
    font-size: .88rem;
  }

  .nav-apply{
    padding: .6em .9em;
  }
}

@media (max-width: 900px){
  .site-header .container{
    min-height: 70px;
  }

  .main-nav > a:not(.btn){
    display: none;
  }

  .hero{
    padding-top: 4.5rem;
  }

  .hero .container{
    grid-template-columns: 1fr;
  }

  .hero-side{
    max-width: 680px;
  }

  .employer-hero .hero-main{
    order: -1;
  }

  .employer-hero .hero-image{
    min-height: 260px;
    max-height: 340px;
  }

  .stat-grid{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .stat{
    padding: 1.2rem 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .stat:first-child{
    padding-top: 0;
    border-top: 0;
  }

  .jobs-intro{
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
	
  .nav-login{
    display: none;
  }

  /*
    Tablet and mobile switch to native horizontal scrolling.
    This avoids an excessively long pinned sequence on small screens.
  */
  .carousel-wrapper{
    height: auto !important;
  }

  .carousel-sticky{
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .carousel-track{
    width: 100%;
    height: auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none !important;
    will-change: auto;
  }

  .carousel-track::-webkit-scrollbar{
    display: none;
  }

  .carousel-slide{
    width: 100%;
    min-height: 720px;
    height: auto;
    flex: 0 0 100%;
    padding: 6rem 20px 5rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .slide-counter{
    top: 1.7rem;
    left: 20px;
  }

  .carousel-content{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-text{
    max-width: 680px;
  }

  .carousel-image{
    max-width: 680px;
  }

  .carousel-image img{
    height: 390px;
  }

  .carousel-progress{
    display: none;
  }

  .carousel-scroll-hint{
    bottom: 1.5rem;
  }

  .guide-layout{
    grid-template-columns: 1fr;
  }

  .guide-image{
    min-height: 480px;
    max-height: 650px;
  }

  .refer{
    grid-template-columns: 1fr;
  }

  .footer-top{
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   MOBILE
   =========================================================== */

@media (max-width: 640px){
  body{
    font-size: 13px;
  }

  .container{
    padding-right: 18px;
    padding-left: 18px;
  }

  .section{
    padding: 4rem 0;
  }

  .site-header .container{
    min-height: 68px;
  }

  .logo{
    font-size: 1.3rem;
  }

	
  .nav-apply{
    font-size: .68rem;
  }

  .ticker-track{
    font-size: .68rem;
  }

  .hero{
    padding: 4rem 0 3.5rem;
  }

  .hero h1 br{
    display: none;
  }

  .hero-side{
    padding-left: 1rem;
  }

  .hero-actions{
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn{
    width: 100%;
  }

  .jobs-intro{
    padding-top: 4rem;
    padding-bottom: 2.4rem;
  }

  .jobs-intro-button{
    width: 100%;
  }
	
  .nav-login{
    display: none;
  }
	
  .carousel-slide{
    min-height: 0;
    padding: 5.7rem 16px 4.5rem;
  }

  .slide-counter{
    top: 1.5rem;
    left: 16px;
    min-height: 2.8rem;
  }

  .slide-current{
    font-size: 1.45rem;
  }

  .carousel-text h3{
    font-size: 2rem;
  }

  .carousel-text > p{
    font-size: .96rem;
  }

  .carousel-text .btn{
    width: 100%;
  }

  .carousel-image{
    min-height: 250px;
  }

  .carousel-image img{
    height: 300px;
    min-height: 250px;
  }

  .image-link-label{
    right: .7rem;
    bottom: .7rem;
    font-size: .63rem;
  }

  .carousel-scroll-hint{
    display: none;
  }

  .benefits{
    grid-template-columns: 1fr;
  }

  .guide{
    padding: 2rem 1.4rem;
  }

  .guide-list{
    grid-template-columns: 1fr;
  }

  .success-box{
    padding: 1.4rem;
  }

  .guide-image{
    min-height: 380px;
  }

  .compliance-grid{
    grid-template-columns: 1fr;
  }

  .offices{
    grid-template-columns: 1fr;
  }

  .refer{
    padding: 2rem 1.3rem;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .form-submit{
    width: 100%;
  }

  .footer-bottom{
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===========================================================
   REDUCED MOTION
   =========================================================== */

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .carousel-wrapper{
    height: auto !important;
  }

  .carousel-sticky{
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .carousel-track{
    width: 100%;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    transform: none !important;
    will-change: auto;
  }

  .carousel-slide{
    width: 100%;
    height: auto;
    min-height: 650px;
    flex-basis: 100%;
    scroll-snap-align: start;
  }

  .carousel-progress{
    display: none;
  }
}
/* ===========================================================
   EMPLOYERS PAGE
   =========================================================== */

.employer-hero .hero-lede{
  max-width: 54ch;
}

/* ---- Image-left / text-right hero layout ---- */

.employer-hero .container{
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}

.employer-hero .hero-side{
  padding-left: 0;
  border-left: 0;
}

.employer-hero .hero-image{
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 520px;
  margin-top: 0;
  object-fit: cover;
  border-radius: var(--radius-large);
}

.employer-hero .hero-support{
  margin-top: 1.3rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--dt-gold, var(--brand-orange));
  color: var(--slate);
  font-size: .92rem;
}

/* ---- Service cards ---- */

.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card{
  padding: 1.8rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-blue);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(17, 17, 17, .05);
}

.service-card:nth-child(2){
  border-top-color: var(--brand-red);
}

.service-card:nth-child(3){
  border-top-color: var(--brand-orange);
}

.service-card:nth-child(4){
  border-top-color: var(--brand-blue);
}

.service-card:nth-child(5){
  border-top-color: var(--brand-red);
}

.service-card h3{
  margin: 0 0 .5rem;
  font-size: 1.2rem;
}

.service-card p{
  margin: 0;
  color: var(--slate);
  font-size: .95rem;
}

/* ---- Reason grid (why employers choose Synergy) ---- */

.reason-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2.4rem;
}

.reason-item{
  padding: .2rem 0 .2rem 1.4rem;
  border-left: 4px solid var(--brand-blue);
}

.reason-item:nth-child(3n+2){
  border-left-color: var(--brand-red);
}

.reason-item:nth-child(3n+3){
  border-left-color: var(--brand-orange);
}

.reason-item h3{
  margin: 0 0 .35em;
  font-size: 1.05rem;
}

.reason-item p{
  margin: 0;
  color: var(--slate);
  font-size: .92rem;
}

/* ---- Service area pills ---- */

.area-pills{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}

.area-pill{
  padding: .5em 1.1em;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ---- Timecard calculator ---- */

.calculator-card{
  padding: 2rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.calculator-meta{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.calculator-table-wrap{
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.calculator-table{
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.calculator-table th{
  padding: .8em 1em;
  background: var(--block);
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.calculator-table td{
  padding: .6em 1em;
  border-bottom: 1px solid var(--line);
}

.calculator-table tr:last-child td{
  border-bottom: 0;
}

.calculator-table .day-label{
  color: var(--charcoal);
  font-weight: 600;
  white-space: nowrap;
}

.calculator-table input[type="time"],
.calculator-table input[type="number"]{
  width: 100%;
  min-width: 90px;
  padding: .55em .6em;
  background: var(--white);
  border: 1px solid #CBD7DD;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: .92rem;
}

.calculator-table input:focus{
  outline: none;
  border-color: var(--brand-blue-dark);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, .18);
}

.calculator-table .day-hours{
  color: var(--brand-blue-dark);
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 600;
  white-space: nowrap;
}

.calculator-summary{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.summary-item{
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.summary-label{
  display: block;
  margin-bottom: .35em;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.summary-value{
  display: block;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
}

.summary-pay .summary-value{
  color: var(--brand-red);
}

.calculator-actions{
  margin-top: 1.6rem;
}

.calculator-note{
  margin-top: 1rem;
  color: var(--muted);
  font-size: .82rem;
}

/* ---- Request staff section ---- */

.request-layout{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2.8rem;
  align-items: start;
}

form.request-form{
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: var(--block);
  border: 1px solid #D5E1E6;
  border-radius: var(--radius-large);
}

@media (max-width: 1000px){
  .service-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-meta{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px){
  .reason-grid{
    grid-template-columns: 1fr;
  }

  .request-layout{
    grid-template-columns: 1fr;
  }

  .calculator-card{
    padding: 1.4rem;
  }
}

@media (max-width: 640px){
  .service-grid{
    grid-template-columns: 1fr;
  }

  .calculator-meta{
    grid-template-columns: 1fr;
  }

  .calculator-summary{
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Markup rate info disclosure ---- */

.rate-info{
  margin-top: .6rem;
  padding: .2rem 0;
}

.rate-info summary{
  color: var(--brand-blue-dark);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
	color: #FFFFFF !important;
}

.rate-info summary::-webkit-details-marker{
  display: none;
}

.rate-info summary::before{
  content: "ⓘ";
  margin-right: .4em;
}

.rate-info[open] summary{
  margin-bottom: .5rem;
}

.rate-info p{
  margin: 0 0 .6em;
  padding: .9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--slate);
  font-size: .85rem;
}

.rate-info p:last-child{
  margin-bottom: 0;
}

.rate-info p strong{
  color: var(--charcoal);
}

/* ---- Company info / meet your team ---- */

.company-grid{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.6rem;
  align-items: stretch;
}

.company-block{
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.company-block h3{
  margin: 0 0 .6em;
  font-size: 1.15rem;
}

.company-block p{
  margin: 0;
  color: var(--slate);
  font-size: .95rem;
}

.company-spotlight{
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.3rem;
  align-items: center;
  border-top: 4px solid var(--brand-orange);
}

.company-spotlight-image{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}

.company-spotlight-label{
  display: block;
  margin-bottom: .3em;
  color: var(--brand-blue-dark);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-spotlight h3{
  margin: 0 0 .5em;
}

@media (max-width: 900px){
  .company-grid{
    grid-template-columns: 1fr;
  }

  .company-spotlight{
    grid-template-columns: 90px 1fr;
  }
}

@media (max-width: 560px){
  .company-spotlight{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .company-spotlight-image{
    width: 90px;
    margin: 0 auto;
  }
}

/* ===========================================================
EMPLOYER PAGE — SHARED LIGHT BRAND THEME
Keeps the employer page visually consistent with the
job-seeker page while preserving its unique layout.
=========================================================== */

.employer-hero .hero-lede{
max-width: 54ch;
}

/* ---- Shared page surfaces ---- */

body.employer-theme{
background: var(--paper);
color: var(--charcoal);
}

body.employer-theme h1,
body.employer-theme h2,
body.employer-theme h3{
color: var(--ink);
}

body.employer-theme .site-header{
background: rgba(255, 255, 255, .95);
border-bottom-color: var(--line);
}

body.employer-theme .logo{
color: var(--ink);
}

body.employer-theme .site-header .logo-mark{
filter: none;
}

body.employer-theme .main-nav > a:not(.btn){
color: var(--slate);
}

body.employer-theme .main-nav > a:not(.btn):hover,
body.employer-theme .main-nav > a[aria-current="page"]{
color: var(--brand-orange);
}

body.employer-theme .btn-outline{
border-color: var(--brand-blue-dark);
color: var(--brand-blue-dark);
}

body.employer-theme .btn-outline:hover{
background: var(--brand-blue-dark);
border-color: var(--brand-blue-dark);
color: var(--white);
}

/* ---- Hero and sections ---- */

body.employer-theme .hero,
body.employer-theme .compliance-section{
background: var(--paper);
}

body.employer-theme .section-alt{
background: var(--paper-2);
}

body.employer-theme .hero-lede,
body.employer-theme .hero-support,
body.employer-theme .section-head p,
body.employer-theme .teaser-content p,
body.employer-theme .service-card p,
body.employer-theme .reason-item p,
body.employer-theme .calculator-note,
body.employer-theme .office-meta,
body.employer-theme .compliance-item p{
color: var(--slate);
}

body.employer-theme .hero-support{
border-left-color: var(--brand-orange);
}

body.employer-theme .hero-image,
body.employer-theme .guide-image{
border: 1px solid var(--line);
box-shadow: 0 14px 32px rgba(17, 17, 17, .1);
}

/* ---- Cards ---- */

body.employer-theme .service-card,
body.employer-theme .office-card,
body.employer-theme .summary-item,
body.employer-theme .calculator-table-wrap,
body.employer-theme .company-block{
background: var(--white);
border-color: var(--line);
}

body.employer-theme .calculator-card{
background: var(--paper-2);
border-color: var(--line);
}

body.employer-theme .request-form{
background: var(--block);
border-color: #D5E1E6;
}

body.employer-theme .area-pill{
background: var(--white);
border-color: var(--line);
color: var(--charcoal);
}

/* ---- Calculator ---- */

body.employer-theme .calculator-table th{
background: var(--block);
color: var(--slate);
border-bottom-color: var(--line);
}

body.employer-theme .calculator-table td{
border-bottom-color: var(--line);
}

body.employer-theme .calculator-table input[type="time"],
body.employer-theme .calculator-table input[type="number"],
body.employer-theme .field input,
body.employer-theme .field select,
body.employer-theme .field textarea{
background: var(--white);
border-color: #CBD7DD;
color: var(--charcoal);
}

body.employer-theme .calculator-table .day-label,
body.employer-theme .day-label{
color: var(--charcoal);
}

body.employer-theme .calculator-table .day-hours{
color: var(--brand-blue-dark);
}

body.employer-theme .summary-value{
color: var(--ink);
}

body.employer-theme .summary-pay .summary-value{
color: var(--brand-red);
}

/* ---- Forms ---- */

body.employer-theme .field label{
color: var(--slate);
}

body.employer-theme .field select{
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%23625F5D' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.employer-theme .rate-info summary{
color: var(--brand-blue-dark);
}

body.employer-theme .rate-info p{
background: var(--white);
border-color: var(--line);
color: var(--slate);
}

body.employer-theme .rate-info p strong{
color: var(--charcoal);
}

/* ---- Job-seeker components, if reused ---- */

body.employer-theme p{
color: var(--slate);
}

body.employer-theme .jobs-section{
background: var(--paper);
}

body.employer-theme .job-type{
color: var(--brand-blue-dark);
}

body.employer-theme .carousel-text h3 a{
color: var(--ink);
}

body.employer-theme .carousel-text h3 a:hover{
color: var(--brand-blue-dark);
}

body.employer-theme .job-details li{
color: var(--charcoal);
}

body.employer-theme .carousel-image{
background: var(--white);
border-color: var(--line);
}

body.employer-theme .slide-divider,
body.employer-theme .slide-total,
body.employer-theme .carousel-scroll-hint{
color: var(--slate);
}

body.employer-theme .benefit-item{
border-top-color: var(--line);
}

body.employer-theme .benefit-item strong{
color: var(--ink);
}

body.employer-theme .refer{
background: var(--block);
border-color: #D5E1E6;
}

body.employer-theme .oncall-note strong{
color: var(--ink);
}

body.employer-theme .company-spotlight-label{
color: var(--brand-blue-dark);
}

/* ---- Accessibility ---- */

body.employer-theme :focus-visible{
outline-color: var(--brand-blue);
}

/* ===========================================================
   FAQ — EMPLOYER PAGE
   =========================================================== */

.faq-section{
  background: var(--paper-2);
}

.faq-header{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.faq-header .section-head{
  max-width: 680px;
  margin-bottom: 0;
}

.faq-header .section-head > p{
  max-width: 58ch;
  margin-top: 1.2rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.faq-header-note{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0 1.25rem 1.2rem;
  border-left: 3px solid var(--brand-blue);
  color: var(--slate);
  font-size: .86rem;
  line-height: 1.45;
}

.faq-header-note strong{
  color: var(--ink);
}

.faq-header-number{
  color: var(--brand-orange);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

/* ===========================================================
   FAQ LIST — TWO COLUMNS
   =========================================================== */

.faq-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  border-top: 1px solid var(--line);
}

.faq-item{
  border-bottom: 1px solid var(--line);
}

.faq-item summary{
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 1.25rem;
  min-height: 86px;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
	background-color: transparent !important;
}

.faq-item summary::-webkit-details-marker{
  display: none;
	background-color: transparent !important;
}

.faq-item summary::marker{
  display: none;
	background-color: transparent !important;
}

.faq-number{
  color: var(--brand-orange) !important;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.faq-question{
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.faq-icon{
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    transform .25s ease;
}

.faq-icon::before,
.faq-icon::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--brand-blue-dark);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item summary:hover .faq-question{
  color: var(--brand-blue-dark) !important;
}

.faq-item summary:hover .faq-icon{
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}

.faq-item summary:hover .faq-icon::before,
.faq-item summary:hover .faq-icon::after{
  background: var(--white);
}

.faq-item[open] summary{
  padding-bottom: 1rem;
}

.faq-item[open] .faq-icon{
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after{
  background: var(--white);
}

.faq-item[open] .faq-icon::after{
  transform: translate(-50%, -50%) rotate(0deg);
}

/* ===========================================================
   FAQ ANSWERS
   =========================================================== */

.faq-answer{
  max-width: 760px;
  margin-left: calc(52px + 1.25rem);
  padding: 0 1rem 1.8rem 0;
  animation: faq-open .25s ease;
}

@keyframes faq-open{
  from{
    opacity: 0;
    transform: translateY(-5px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p{
  margin: 0 0 .85rem;
  color: var(--slate) !important;
  font-size: .98rem;
  line-height: 1.65;
}

.faq-answer p:last-of-type{
  margin-bottom: 0;
}

.faq-answer strong{
  color: var(--charcoal) !important;
}

.faq-answer .btn{
  margin-top: 1.2rem;
}

/* ===========================================================
   FAQ BOTTOM CTA
   =========================================================== */

.faq-footer{
  margin-top: 3.5rem;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-red);
  border-radius: var(--radius-large);
  box-shadow: 0 8px 24px rgba(17, 17, 17, .05);
}

.faq-footer-label{
  display: block;
  margin-bottom: .35rem;
  color: var(--brand-orange) !important;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq-footer h3{
  margin: 0;
  color: var(--ink) !important;
  font-size: 1.45rem;
}

/* ===========================================================
   TABLET
   =========================================================== */

@media (max-width: 900px){

  .faq-header{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-header-note{
    max-width: 500px;
  }
}

/* ===========================================================
   MOBILE
   =========================================================== */

@media (max-width: 640px){

  .faq-header{
    margin-bottom: 2.5rem;
  }

  .faq-header .section-head > p{
    font-size: .96rem;
  }

  /* One column on mobile */
  .faq-list{
    grid-template-columns: 1fr;
  }

  .faq-item summary{
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    gap: .8rem;
    min-height: 0;
    padding: 1.25rem 0;
	background-color: transparent !important;
  }

  .faq-number{
    font-size: .62rem;
  }

  .faq-question{
    font-size: 1.12rem;
  }

  .faq-icon{
    width: 22px;
    height: 22px;
  }

  .faq-answer{
    margin-left: calc(32px + .8rem);
    padding: 0 1rem 1.5rem 0;
  }

  .faq-answer p{
    font-size: .92rem;
  }

  .faq-footer{
    align-items: flex-start;
    flex-direction: column;
    padding: 1.6rem;
  }

  .faq-footer .btn{
    width: 100%;
  }
}

/* ===========================================================
KOINS FOR KENYA
=========================================================== */

.koins-section{
padding: 5rem 0;
background: var(--white);
border-top: 1px solid var(--line);
}

.koins-content{
display: grid;
grid-template-columns: 280px minmax(0, 1fr);
align-items: center;
gap: 3.5rem;
max-width: 1000px;
}

.koins-image{
display: flex;
align-items: center;
justify-content: center;
}

.koins-image img{
display: block;
width: 260px;
height: 260px;
object-fit: contain;
}

.koins-text{
max-width: 680px;
}

.koins-text .eyebrow{
display: inline-block;
margin-bottom: .6rem;
}

.koins-text h2{
margin: 0 0 1rem;
}

.koins-text p{
max-width: 62ch;
margin: 0 0 1.5rem;
color: var(--slate);
line-height: 1.65;
}

/* ===========================================================
KOINS — MOBILE
=========================================================== */

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

.koins-content{
grid-template-columns: 1fr;
gap: 1.5rem;
text-align: center;
}

.koins-image img{
width: 190px;
height: 190px;
}

.koins-text{
max-width: none;
}

.koins-text p{
margin-left: auto;
margin-right: auto;
}
}