/* Archive sections spacing */
.portfolio-ctm__item{
  padding: 6px 0 18px;
}

/* Make long archive pages easier to read */
.portfolio-ctm__text{
  max-width: 86ch;
}

/* Responsive video already used earlier */
.portfolio-ctm__video{
  max-width: 980px;
  margin: 22px auto 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}
.portfolio-ctm__video iframe{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}


.portfolio-ctm__video{
  max-width: 980px;
  margin: 22px auto 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.portfolio-ctm__video iframe{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

/* ================================
   PORTFOLIO PAGE (SCOPED)
   Safe: will not touch your menu
================================ */

.portfolio-ctm{
  color: #00c853;
}

/* kill random huge gaps from <br> stacks */
.portfolio-ctm br{ display:none; }

/* tighten Cargo grid wrapper a bit */
.portfolio-ctm__row{ margin: 18px 0 26px; }
.portfolio-ctm__col{ margin: 0; }

/* consistent spacing for each gallery */
.portfolio-ctm__gallery{
  margin: 18px 0;
}

/* image styling inside Cargo galleries */
.portfolio-ctm .image-gallery img{
  border-radius: 15px;
}

/* body copy block */
.portfolio-ctm__text{
  max-width: 980px;
  margin: 10px auto 26px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700; /* keeps your “stroke weight” vibe */
  color: #00c853;
}

/* single gallery block (gid 18) */
.portfolio-ctm__gallery--single{
  margin-top: 22px;
}

/* divider + next link */
.portfolio-ctm__hr{
  margin: 34px 0 18px;
  border: 0;
  border-top: 2px solid rgba(0, 200, 83, 0.25);
}

.portfolio-ctm__next a{
  color: #00c853;
  text-decoration: none;
}

.portfolio-ctm__next a:hover{
  text-decoration: underline;
}

@media (min-width: 900px){
  .portfolio-ctm__g{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
/* =========================================
   PORTFOLIO: FIX SINGLE (NON-GALLERY) IMAGE
========================================= */

/* Make the single image block behave like the galleries */
.portfolio-ctm__single{
  margin: 16px auto 0;
  max-width: 980px;
}

/* Catch the actual image inside that block (Cargo wrappers included) */
.portfolio-ctm__single img,
.portfolio-ctm__single picture img,
.portfolio-ctm__single figure img{
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;      /* removes baseline gap */
  border-radius: 15px;
  overflow: hidden;
  object-fit: contain;
  box-shadow: 0 16px 50px rgba(0,0,0,.14);
}

/* If Cargo wraps the image in a figure/div with weird spacing */
.portfolio-ctm__single > *,
.portfolio-ctm__single figure,
.portfolio-ctm__single .image,
.portfolio-ctm__single .image-container{
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* =========================================
   PORTFOLIO PAGES (SAFE SCOPE)
   Wrapper: .portfolio-ctm
   - Heavier type (like original)
   - Fix big gaps before/after galleries
   - All type green
========================================= */

.portfolio-ctm{
  --ctm-green: #00c153;
  --ctm-line: rgba(0, 193, 83, 1);
  --ctm-soft: rgba(0,255,106,.08);

  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 70px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;

  /* ALL TYPE GREEN */
  color: var(--ctm-green);

  /* Heavier body weight */
  font-weight: 800;
}

/* Make every text element inherit the green */
.portfolio-ctm *{ color: inherit; }

/* Headings (heavier + cleaner spacing) */
.portfolio-ctm h1{
  margin: 0 0 12px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 900;
}

/* Kill the manual <br> right after headings (this is causing the big gaps) */
.portfolio-ctm h1 + br{ display: none; }

/* Dividers */
.portfolio-ctm hr{
  margin: 18px 0 18px;
  border: 0;
  height: 3px;
  background: var(--ctm-line);
}

/* Gallery spacing — tighter */
.portfolio-ctm .image-gallery{
  margin: 10px 0 10px; /* reduces the “gap feel” */
}

/* ✅ Fix squashed images + keep aspect ratio */
.portfolio-ctm .image-gallery img,
.portfolio-ctm .image-gallery picture img{
  width: 100%;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.14);
}

/* If gallery images are wrapped in links */
.portfolio-ctm .image-gallery a{
  border-bottom: 0;
  text-decoration: none;
}

/* Global <br> rhythm — less aggressive */
.portfolio-ctm br{
  display: block;
  content: "";
  margin: 6px 0;
}
/* =========================================
   PORTFOLIO GALLERY GAP FIX (Cargo)
   Stops extra reserved height that pushes text down
========================================= */

/* Make sure the gallery itself isn't reserving height */
.portfolio-ctm .image-gallery{
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 12px !important;
}

/* Cargo often wraps images in aspect-ratio divs/figures.
   Force wrappers to size to content instead of a fixed ratio. */
.portfolio-ctm .image-gallery > * ,
.portfolio-ctm .image-gallery figure,
.portfolio-ctm .image-gallery .image,
.portfolio-ctm .image-gallery .image-container,
.portfolio-ctm .image-gallery .gallery-item,
.portfolio-ctm .image-gallery .item{
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
}

/* If Cargo uses absolute-positioned images inside ratio wrappers,
   this brings them back into normal flow so the wrapper collapses properly. */
.portfolio-ctm .image-gallery img{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  height: auto !important;
  width: 100% !important;
  display: block !important;
}

/* Ensure blurb text always starts immediately after the gallery */
.portfolio-ctm .image-gallery + *{
  margin-top: 0 !important;
}


/* BUT: prevent extra vertical air immediately after a gallery */
.portfolio-ctm .image-gallery + br{ display: none; }
.portfolio-ctm .image-gallery + br + br{ display: none; }

/* Links */
.portfolio-ctm a{
  text-decoration: none;
  border-bottom: 1px solid rgba(0,255,106,.55);
  font-weight: 900;
}
.portfolio-ctm a:hover{
  border-bottom-color: rgba(0,255,106,.95);
}

/* Next page link as a pill */
.portfolio-ctm h1:last-of-type a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ctm-soft);
  border: 1px solid rgba(0,255,106,.22);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  border-bottom: 0;
}

/* Mobile */
@media (max-width: 860px){
  .portfolio-ctm{ padding: 24px 16px 60px; }
  .portfolio-ctm h1{ font-size: 40px; }
  .portfolio-ctm .image-gallery img{ box-shadow: 0 12px 34px rgba(0,0,0,.12); }
}
/* =========================================
   PORTFOLIO: FIX GALLERY NAV ARROWS POSITION
========================================= */

/* Ensure the gallery is the positioning context */
.portfolio-ctm .image-gallery{
  position: relative !important;
}

/* Catch common Cargo gallery nav classes */
.portfolio-ctm .image-gallery .prev,
.portfolio-ctm .image-gallery .next,
.portfolio-ctm .image-gallery .gallery-prev,
.portfolio-ctm .image-gallery .gallery-next,
.portfolio-ctm .image-gallery [class*="prev"],
.portfolio-ctm .image-gallery [class*="next"]{
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 50 !important;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: rgba(0,255,106,.14) !important;
  border: 1px solid rgba(0,255,106,.35) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  text-decoration: none !important;
  cursor: pointer;
}

/* Left / right placement */
.portfolio-ctm .image-gallery .prev,
.portfolio-ctm .image-gallery .gallery-prev,
.portfolio-ctm .image-gallery [class*="prev"]{
  left: 14px !important;
  right: auto !important;
}

.portfolio-ctm .image-gallery .next,
.portfolio-ctm .image-gallery .gallery-next,
.portfolio-ctm .image-gallery [class*="next"]{
  right: 14px !important;
  left: auto !important;
}

/* Make arrow glyphs visible + consistent */
.portfolio-ctm .image-gallery .prev *,
.portfolio-ctm .image-gallery .next *,
.portfolio-ctm .image-gallery .gallery-prev *,
.portfolio-ctm .image-gallery .gallery-next *{
  color: #00ff6a !important;
  fill: #00ff6a !important;
  opacity: 1 !important;
}

/* Hover */
.portfolio-ctm .image-gallery .prev:hover,
.portfolio-ctm .image-gallery .next:hover,
.portfolio-ctm .image-gallery .gallery-prev:hover,
.portfolio-ctm .image-gallery .gallery-next:hover{
  background: rgba(0,255,106,.22) !important;
  border-color: rgba(0,255,106,.55) !important;
}


/* =========================================
   SERVICE / INDUSTRY PAGES (SAFE SCOPE)
   Only styles inside: .service-ctm__body
   Leaves .custom-btn untouched
========================================= */

.service-ctm{
  --ctm-green: #00ff6a;
  --ctm-text: rgba(0,0,0,.76);
  --ctm-muted: rgba(0,0,0,.58);
  --ctm-line: rgba(0,255,106,.28);
  --ctm-soft: rgba(0,255,106,.08);
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 70px;
}

/* --- Typography base --- */
.service-ctm__body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ctm-text);
  font-weight: 650;
  line-height: 1.65;
}

/* --- Hero --- */
.service-ctm__body h1{
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ctm-green);
}

.service-ctm__body h1 + br{ display: none; }

/* First paragraphs under H1 feel like an intro block */
.service-ctm__body h1 ~ br + *{
  max-width: 78ch;
}

.service-ctm__body > br{ display: none; } /* helps clean random top-level brs */

/* --- Sections --- */
.service-ctm__body h2{
  margin: 52px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ctm-line);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ctm-green);
}

.service-ctm__body h3{
  margin: 22px 0 10px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ctm-green);
}

/* --- Paragraphs (your content uses text nodes + <br>. This helps) --- */
.service-ctm__body p{
  margin: 0 0 14px;
  max-width: 82ch;
}

.service-ctm__body br{
  display: block;
  content: "";
  margin: 10px 0;
}

/* --- Links (don’t mess with custom-btn) --- */
.service-ctm__body a{
  color: var(--ctm-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,255,106,.35);
}
.service-ctm__body a:hover{
  border-bottom-color: rgba(0,255,106,.75);
}
.service-ctm__body a .custom-btn{
  border-bottom: 0;
}

/* --- “Includes:” + lists look nicer --- */
.service-ctm__body ul{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 86ch;
}

.service-ctm__body li{
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 16px;
  background: var(--ctm-soft);
  border: 1px solid rgba(0,255,106,.22);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  color: var(--ctm-text);
  font-weight: 750;
  line-height: 1.45;
}

.service-ctm__body li:before{
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--ctm-green);
  box-shadow: 0 0 0 4px rgba(0,255,106,.18);
}

/* Stop list-item <br> spam expanding height */
.service-ctm__body li br{ display: none; }

/* --- Bold / emphasis --- */
.service-ctm__body b,
.service-ctm__body strong{
  color: rgba(0,0,0,.86);
  font-weight: 900;
}

.service-ctm__body em,
.service-ctm__body i{
  color: var(--ctm-muted);
}

/* --- HR + footer --- */
.service-ctm__body hr{
  margin: 52px 0 18px;
  border: 0;
  height: 1px;
  background: var(--ctm-line);
}

/* If you’ve got a bottom “My Work” h1, keep it tidy */
.service-ctm__body hr + h1{
  font-size: 34px;
  margin-top: 18px;
}

/* --- Mobile --- */
@media (max-width: 860px){
  .service-ctm{ padding: 24px 16px 60px; }
  .service-ctm__body h1{ font-size: 40px; }
  .service-ctm__body h2{ font-size: 24px; margin-top: 38px; }
  .service-ctm__body h3{ font-size: 16px; }
}
/* ================================
   PORTFOLIO PAGE (SCOPED)
================================ */

.portfolio-ctm{
  color: #00c853;
}

/* Spacing between any galleries / sections */
.portfolio-ctm .image-gallery{
  margin: 22px 0;
}

/* Two-up images (NOT Cargo gallery) */
.portfolio-ctm__two{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 22px 0 26px;
}

@media (min-width: 900px){
  .portfolio-ctm__two{
    grid-template-columns: 1fr 1fr;
  }
}

/* Make the images actually fill the column nicely */
.portfolio-ctm__twoItem img{
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 15px;
}


/* BLOG ARCHIVE (REAL PAGINATION PAGES, NO SEARCH) */

.blog-ctm{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 60px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.blog-ctm__head{
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-ctm__title{
  margin: 0;
  font-size: 54px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #00ff6a;
}

.blog-ctm__sub{
  margin: 6px 0 0;
  font-weight: 700;
  color: rgba(0,0,0,.70);
}

.blog-ctm__list{
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.post-ctm{
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.post-ctm__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.post-ctm__h{
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #00ff6a;
}

.post-ctm__p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.55;
}

.post-ctm__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  justify-content: flex-end;
}

.post-ctm__pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.post-ctm a{ text-decoration: none; }

/* Pagination */
.blog-ctm__pager{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-ctm__pagebtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.72);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  user-select: none;
  text-decoration: none;
  color: #0b0f12;
}

.blog-ctm__pagebtn.is-active{
  background: #00ff6a;
  border-color: rgba(0,0,0,.20);
}

.blog-ctm__pagebtn--prev,
.blog-ctm__pagebtn--next{
  padding-left: 14px;
  padding-right: 14px;
}

@media (max-width: 860px){
  .blog-ctm__title{ font-size: 40px; }
  .post-ctm__top{ flex-direction: column; }
  .post-ctm__meta{ justify-content: flex-start; }
  .post-ctm__h{ font-size: 24px; }
}


.post-ctm{
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.post-ctm__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.post-ctm__h{
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #00ff6a;
}

.post-ctm__p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.55;
}

.post-ctm__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  justify-content: flex-end;
}

.post-ctm__pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.post-ctm a{ text-decoration: none; }

/* Pagination */
.blog-ctm__pager{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-ctm__pagebtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.72);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  user-select: none;
  text-decoration: none;
  color: #0b0f12;
}

.blog-ctm__pagebtn.is-active{
  background: #00ff6a;
  border-color: rgba(0,0,0,.20);
}

.blog-ctm__pagebtn--prev,
.blog-ctm__pagebtn--next{
  padding-left: 14px;
  padding-right: 14px;
}

@media (max-width: 860px){
  .blog-ctm__head{ flex-direction: column; align-items: flex-start; }
  .blog-ctm__tools{ max-width: 100%; width: 100%; }
  .blog-ctm__title{ font-size: 40px; }
  .post-ctm__top{ flex-direction: column; }
  .post-ctm__meta{ justify-content: flex-start; }
  .post-ctm__h{ font-size: 24px; }
}

/* Card style (glass on green) */
.post-ctm{
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.post-ctm__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.post-ctm__h{
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #00ff6a;
}

.post-ctm__p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.55;
}

/* Meta pills */
.post-ctm__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  justify-content: flex-end;
}

.post-ctm__pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

/* Make links not add weird underlines */
.post-ctm a{ text-decoration: none; }

/* Manual pagination (CSS-only) */
.blog-ctm__pg{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.blog-ctm__page{ display: none; }
#pg1:checked ~ .blog-ctm__pages .blog-ctm__page--1{ display: block; }
#pg2:checked ~ .blog-ctm__pages .blog-ctm__page--2{ display: block; }

.blog-ctm__pager{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-ctm__pagebtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.72);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
}

#pg1:checked ~ .blog-ctm__pager label[for="pg1"],
#pg2:checked ~ .blog-ctm__pager label[for="pg2"]{
  background: #00ff6a;
  border-color: rgba(0,0,0,.20);
}

/* Mobile */
@media (max-width: 860px){
  .blog-ctm__head{ flex-direction: column; align-items: flex-start; }
  .blog-ctm__tools{ max-width: 100%; width: 100%; }
  .blog-ctm__title{ font-size: 40px; }
  .post-ctm__top{ flex-direction: column; }
  .post-ctm__meta{ justify-content: flex-start; }
  .post-ctm__h{ font-size: 24px; }
}

/* SERVICES PAGE: pull the hero up */
#c2HeroServices .c2-hero__inner{
  justify-content: flex-start;   /* was center */
  padding-top: 22px;             /* tighten */
  min-height: auto;              /* don’t force 100vh centering */
}

/* If Cargo is adding spacing above the code block/container */
#c2HeroServices{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* In case your Code element is inside a block with top margin */
#c2HeroServices *:first-child{
  margin-top: 0;
}

@media (max-width: 860px){
  #c2HeroServices .c2-hero__title{ font-size: 36px; }
}

/* =========================================
   CARGO2 GREEN LANDING — GLASS BUTTONS OVER GREEN
   Paste into: Site Settings → Code → CSS
   ========================================= */

/* Keep green background (your theme). Make sure nothing forces black. */
html, body{
  margin: 0;
  padding: 0;
}

/* HERO WRAPPER */
.c2-hero{
  background: transparent;          /* shows green behind */
  color: rgba(255,255,255,.92);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* full bleed in Cargo containers */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Turn off the black background layers from the earlier version */
.c2-hero__bg,
.c2-hero__bgImg,
.c2-hero__bgFx{
  display: none !important;
}

/* Remove any grain overlay if present */
.c2-hero:after{ display: none !important; }

/* INNER LAYOUT */
.c2-hero__inner{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 18px 30px;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;  /* centers menu vertically */
  gap: 26px;
}

/* TOP LINE */
.c2-hero__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.c2-hero__pill{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.c2-hero__who{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
}

/* NAV */
.c2-hero__nav{
  display: grid;
  gap: 12px;
}

/* GLASS “BUTTONS” */
.c2-hero__item{
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: baseline;

  padding: 18px 18px;
  border-radius: 18px;

  text-decoration: none;
  color: rgba(255,255,255,.92);

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* subtle glow flare on hover */
.c2-hero__item:before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(700px 140px at 18% 0%, rgba(0,255,106,.22), transparent 60%),
    radial-gradient(700px 140px at 120% 100%, rgba(255,255,255,.10), transparent 60%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.c2-hero__item:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.62);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 22px 70px rgba(0,0,0,.42);
}

.c2-hero__item:hover:before{
  opacity: 1;
}

/* TEXT */
.c2-hero__num{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  color: rgba(255,255,255,.70);
  align-self: center;
}

.c2-hero__title{
  font-size: 56px;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.02em;

  /* neon green type */
  color: #00ff6a;
  text-shadow: 0 12px 60px rgba(0,0,0,.45);
}

.c2-hero__desc{
  align-self: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.16);
}

/* BOTTOM */
.c2-hero__bottom{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.c2-hero__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;

  color: #0b0f12;
  background: #00ff6a;
  border: 1px solid rgba(0,0,0,.18);

  font-size: 14px;
  font-weight: 900;

  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  transition: transform .12s ease, filter .12s ease;
}

.c2-hero__cta:hover{ filter: brightness(1.05); }
.c2-hero__cta:active{ transform: translateY(1px); }

.c2-hero__hint{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* FOCUS */
.c2-hero__item:focus-visible,
.c2-hero__cta:focus-visible{
  outline: 3px solid rgba(255,255,255,.40);
  outline-offset: 3px;
}

/* PREVIEW (hover image follows mouse) */
.c2-hero__preview{
  position: fixed;
  left: 0;
  top: 0;
  width: 380px;
  height: 260px;
  z-index: 9999;
  pointer-events: none;

  opacity: 0;
  transform: translate(-9999px,-9999px);
  transition: opacity .14s ease;
}

.c2-hero__previewImg{
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  filter: saturate(1.05) contrast(1.08);
}

.c2-hero__previewFrame{
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.02));
}

/* MOBILE */
@media (max-width: 860px){
  .c2-hero__preview{ display: none; }
  .c2-hero__item{ grid-template-columns: 44px 1fr; }
  .c2-hero__desc{ display: none; }
  .c2-hero__title{ font-size: 40px; }
  .c2-hero__inner{ padding: 30px 16px; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce){
  .c2-hero__item{ transition: none; }
  .c2-hero__preview{ display: none; }
}


/* Header */
.header-ctm{
  --text: #808080;
  --text-strong: #5f5f5f;
  --line: rgba(0,0,0,.12);

  font-family: "Monument Grotesk Mono Variable", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.header-ctm__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 14px 0;
}

/* Brand */
.header-ctm__brand{
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  white-space: nowrap;
}

/* Nav + meta groups */
.header-ctm__nav,
.header-ctm__meta{
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

/* Links */
.header-ctm__link{
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .12s ease, color .12s ease;
}

.header-ctm__link:hover{
  background: rgba(0,0,0,.05);
  color: var(--text-strong);
}

.header-ctm__link:focus-visible{
  outline: 2px solid rgba(0,0,0,.25);
  outline-offset: 2px;
}

.header-ctm__link--muted{
  opacity: .9;
}

/* HR replacement */
.header-ctm__rule{
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Responsive: stack nicely */
@media (max-width: 820px){
  .header-ctm__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-ctm__nav,
  .header-ctm__meta{
    gap: 10px;
    flex-wrap: wrap;
  }

  .header-ctm__link{
    padding: 6px 8px;
  }
}


.table-ctm{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font: 500 14px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: #1f8a3b;
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 1);
  border-radius: 12px;
  overflow: hidden; /* helps in some browsers */
}

.table-ctm thead th{
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(135, 255, 130, 1);
  border-bottom: 1px solid rgba(31, 138, 59, 1);
  white-space: nowrap;
}

.table-ctm tbody td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(135, 255, 130, 1);
  vertical-align: top;
}

/* zebra striping */
.table-ctm tbody tr:nth-child(even){
  background: rgba(135, 255, 130, 0.1);
}

/* row hover */
.table-ctm tbody tr:hover{
  background: rgba(135, 255, 130, 0.73);
}

/* last row border fix */
.table-ctm tbody tr:last-child td{
  border-bottom: 0;
}

/* rounded corners */
.table-ctm thead th:first-child{ border-top-left-radius: 12px; }
.table-ctm thead th:last-child{ border-top-right-radius: 12px; }
.table-ctm tbody tr:last-child td:first-child{ border-bottom-left-radius: 12px; }
.table-ctm tbody tr:last-child td:last-child{ border-bottom-right-radius: 12px; }

/* optional: align common numeric columns */
.table-ctm .is-number{
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* optional: compact on small screens */
@media (max-width: 640px){
  .table-ctm thead{ display:none; }
  .table-ctm, .table-ctm tbody, .table-ctm tr, .table-ctm td{ display:block; width:100%; }
  .table-ctm tr{ border-bottom: 1px solid rgba(0,0,0,.10); }
  .table-ctm td{
    border: 0;
    padding: 10px 14px;
  }
  /* Add data-label="Heading" to each td for mobile labels */
  .table-ctm td::before{
    content: attr(data-label);
    display:block;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(135, 255, 130, 1);
    margin-bottom: 4px;
    font-weight: 700;
  }
}


.code-pen {
  display: inline-block;     /* key: fits content width */
  width: fit-content;        /* modern browsers */
  max-width: 100%;           /* don’t overflow container */
  background: #1f8a3b;   /* green */
  color: #fff;           /* white text */
  padding: 14px 16px;
  border-radius: 12px;
  font: 500 14px/1.3 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  white-space: pre;      /* preserve spacing/line breaks */
  overflow-x: auto;      /* horizontal scroll if needed */
}

.code-pen::selection {
  background: rgba(255,255,255,.25);
}

.code-pen::-webkit-scrollbar { height: 10px; }
.code-pen::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.25);
  border-radius: 999px;
}
.code-pen::-webkit-scrollbar-track { background: transparent; }


.custom-btn{
	background-color: #87ff82;
    display: inline-block;
    padding: 5px 30px 5px 30px;
    border-radius: 50px;
    border: solid 2px  #1f531d;
    cursor: pointer;
}
.custom-btn:hover {
	background-color: #1f531d;
    border: solid 2px  #87ff82;
}
.custom-btn:active {
	background-color: #439a3f;
    border: solid 2px  #1f531d;
}

#toolset {
	display: none;
}

body {
	background-color: #fff;
	color: #000;
}

a:active {
	opacity: 0.7;
}

.page a.active {
	color: #ff82ff;
}

i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}

img {
	border: 0;
	padding: 0;
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 2.5em;
}

blockquote {
	margin: 0;
	padding: 0 0 0 1em;
}

hr {
	background: rgba(0, 193, 83, 1);
	border: 0;
	height: 3px;
	display: block;
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
}

.content img {
	float: none;
	margin-bottom: 0;
    vertical-align: bottom;
}

[image-gallery="slideshow"] {
    margin-bottom: 2rem;
}

.gallery_image_caption {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
	font-family: Diatype, Icons;
	font-style: normal;
	line-height: 1.2;	
}

/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}

/**
 * Editor styles
 */

[data-predefined-style="true"] bodycopy {
	font-size: 1.4rem;
	font-weight: 400;
	color: rgba(0, 193, 83, 1);
	font-family: "Diatype Variable", Icons;
	font-style: normal;
	line-height: 1.2;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}

[data-predefined-style="true"] bodycopy a {
	color: rgba(0, 193, 83, 1);
	text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {

}

bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: "Diatype Variable", Icons;
	font-style: normal;
	font-weight: 900;
	padding: 0;
	margin: 0;
	font-size: 3.2rem;
	line-height: 1;
	color: rgba(0, 193, 83, 1);
	font-variation-settings: 'slnt' 0, 'MONO' 0;
}

[data-predefined-style="true"] h1 a {
	color: rgba(0, 193, 83, 1);
}

[data-predefined-style="true"] h2 {
	font-family: "Diatype Variable", Icons;
	font-style: normal;
	font-weight: 800;
	padding: 0;
	margin: 0;
	color: rgba(0, 193, 83, 1);
	font-size: 2.2rem;
	line-height: 1.2;
	font-variation-settings: 'slnt' 0, 'MONO' 0;
	}

[data-predefined-style="true"] h2 a {
	color: rgba(0, 0, 0, 0.75);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.2;
	font-family: "Monument Grotesk Mono Variable", Icons;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 193, 83, 1);
	font-variation-settings: 'slnt' 0, 'MONO' 1;
}

[data-predefined-style="true"] small a {
	color: rgba(0, 0, 0, 0.6);
	border-bottom-width: 0em;
}

/**
 * Breakpoints
 */


[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	max-width: 100%;
	width: 100%;
	background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
	margin-left: auto /*!content_right*/;
	margin-right: 0 /*!content_right*/;
	text-align: left /*!text_left*/;
}

[data-css-preset] body {
	background-color: rgb(255, 255, 255)/*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100%/*!content_right*/;
}

[data-css-preset] .content_padding {
	padding-top: 1.8rem /*!main_margin*/;
	padding-bottom: 1.8rem /*!main_margin*/;
	padding-left: 1.8rem /*!main_margin*/;
	padding-right: 1.8rem /*!main_margin*/;
}


/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;   
}

[data-css-preset] .thumbnails_width {
    width: 60%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 0.75rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -1.5rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 0.5rem/*!responsive_thumbnails_padding*/; 
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -1rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 0px solid rgba(0,0,0,.12);
    outline-offset: -1px;
}

.thumbnails .title {
    margin-top: 1.0rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: Diatype, Icons;
	font-style: normal;
	line-height: 1.3;
}

.thumbnails .tags {
    margin-top: .8rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
	font-family: "Monument Grotesk Mono", Icons;
	font-style: normal;
	line-height: 1.2;
}

.thumbnails .tags a {
	border-bottom: 0;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: -1.8rem;
}

/**
 * Site Menu Button
 */

[data-css-preset] #site_menu_button {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1;
    font-size: 30px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    background: rgba(33, 32, 46, 0);
    position: fixed;
	right: 2rem /*!site_menu_button*/;
	top: 2rem /*!site_menu_button*/;
}

body.mobile #site_menu_button {
	margin: -10px;
    font-size: 32px;
}

#site_menu_button.custom_icon {
	width: 40px;
    height: auto;
}

#site_menu_button.active {
	display: none;
}


/**
 * Site Menu
 */

#site_menu {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	background: rgba(20, 20, 20, 0.95);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
}

body.mobile #site_menu {
	width: 100%;
}

#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}

#site_menu .set-link > a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}

#site_menu a:active {
	opacity: .7;
}

#site_menu a.active {
	opacity: .4;
}

#site_menu .close {
	display: none;
	color: rgba(255, 255, 255, 0.4);
	line-height: .85em;
	font-size: 45px;
}

body.mobile #site_menu .close {
	display: block;
	font-size: 50px;
	line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}

/*
 * Shop Button
 */

[data-css-preset] #shop_button {
	color: rgba(0, 0, 0, 0.85);
    background: transparent;
	font-size: 32px;
    font-style: normal;
	font-weight: 400;
    line-height: 1;
    position: fixed;
	padding: 6px;
	top: 1rem /*!shop_button*/;
	left: 1.5rem /*!shop_button*/;
}

#shop_button.text {
    font-size: 1.6rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.75);
	font-family: Diatype, Icons;
    padding: 0;
    line-height: 1.3;
	font-style: normal;
}

#shop_button.custom_icon {
	width: 40px;
    height: auto;
}

body.mobile #shop_button:not(.text) {
	margin: -6px;
    font-size: 40px;
}

/*
 * Shop Product Widget
 */

.shop_product {
    width: 100%;
	max-width: 22rem;
    position: relative;
    display: block;
}

.shop_product .price {
	font-family: Diatype, Icons;
	font-size: 1.6rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.75);
    display: block;
    margin-bottom: 1rem;
	font-style: normal;
	font-weight: 400;
}

.shop_product .dropdown {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
    font-size: 1.3rem;
    display: inline-block;
	width: 100%;
    border: 1px solid rgba(0,0,0,.2);
    background:  white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding: .7rem 2.5rem 0.6rem 1rem;
	font-style: normal;
	font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
}

.shop_product .button {
	font-family: Diatype, Icons;
	font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.75);
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1;
    padding: .8rem 1rem 0.8rem;
	font-style: normal;
	font-weight: 700;
}

/*
 * Image Zoom
 */

.content img.image-zoom:active {
  opacity: .7;
}

/**
 * Quick View
 */

[data-css-preset] .quick-view {
    padding-top: 2.5rem /*!quick_view_padding*/;
    padding-bottom: 2.5rem /*!quick_view_padding*/;
    padding-left: 2.5rem /*!quick_view_padding*/;
    padding-right: 2.5rem /*!quick_view_padding*/;
    height: 100% /*!quick_view_height*/;
    width: 100% /*!quick_view_width*/;
}

body.mobile .quick-view {
    width: 100%;
    height: 100%;
    margin: 0;
}


[data-css-preset] .quick-view-background {
	background: rgba(255, 255, 255, 1) /*!quick_view_bgcolor*/;
}

.quick-view-caption {
	font-family: Diatype, Icons;
    transition: 100ms opacity ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 3.5rem 0;
    text-align: center;
    font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
    line-height: 1.3;
}

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0,0,0,0.4);
    color: white;
}


/**
 * Quick View Navigation 
 */

.quick-view-navigation .left-arrow {
    left: 10px;
}

.quick-view-navigation .right-arrow {
    right: 10px;
}

.quick-view-navigation .left-arrow,
.quick-view-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 0px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.85);
    stroke-width: 2px;
}

.quick-view-navigation .close-button {  
    top: 10px;
    right: 10px;
    /* Change height/width together to scale */
    width: 36px;
    height: 36px;
}

.quick-view-navigation .close-button .inner-color {
    stroke: #fff;
    stroke-width: 0px;
}

.quick-view-navigation .close-button .outer-color {
    stroke: rgba(0, 0, 0, 0.85);
    stroke-width: 2px;
}

/** 
 * Image Gallery Navigation Arrows 
 */
 
.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 2px;
}

.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 3px;
}

/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
   /* Change height/width together to scale */
   width: 36px;
   height: 36px;
}

.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
   stroke: #fff;
    stroke-width: 2px;
}

.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 3px;
}


/**
 * Feed
 */

.feed .content_container .page {
    border-top: 0px dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
	border-top: 0;
}



/*
 * Audio Player
 */

.audio-player {
    max-width: 36rem;
    height: 3.3rem;
    outline: 1px solid rgba(0,0,0,0.15);
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
    font-size: 1.4rem;
    line-height: 1.3;
	font-family: Diatype, Icons;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin: 1px 1px 1em 1px;
}

body.mobile .audio-player {
    max-width: 100%;
}

.audio-player .separator {
    width: 1px;
    background-color: rgba(0,0,0,0.15);
}

.audio-player .button {
    background: transparent;
    cursor: pointer;
    fill: rgba(0, 0, 0, 0.85);
}

.audio-player .icon {
    fill: rgba(0, 0, 0, 0.85);
    padding: 30%;
    width: 100%;
    margin: auto;
}

.audio-player .buffer {
    background: rgba(0,0,0,0.03);
}

.audio-player .progress {
    background: rgba(0,0,0,0.1);
}

.audio-player .progress-indicator {
    border: 1px solid rgba(0, 0, 0, 0.7);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
    cursor: ew-resize;
}

.audio-player .note-icon {
    height: 100%;
    width: 3.8rem;
    padding: 0.9rem;
    fill: rgba(0, 0, 0, 0.5);
}

.audio-player .current-time {
    padding-left: 1rem;
}

.audio-player .total-time {
    padding-right: 1rem;
}


