/** Shopify CDN: Minification failed

Line 100:12 Expected identifier but found whitespace
Line 100:14 Unexpected "{"
Line 100:23 Expected ":"
Line 100:55 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:sid-by-side-section (INDEX:91) */
/* ============================================================
   Northern Projects — About Us
   ============================================================ */

.np-about {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px 80px;
  color: #333;
  background: #fff;
}

/* ── Page title ── */
.np-about__title-wrap {
  text-align: center;
  padding: 60px 0 50px;
}

.np-about__page-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #2a2a2a;
  margin: 0;
  text-transform: uppercase;
}

/* ── Rows ── */
.np-about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 380px;
}

/* ── Image column ── */
.np-about__image-col {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

/* Left-side images */
.np-about__row--image-left .np-about__image-col {
  border-radius: 8px 0 0 8px;
}
.np-about__row--image-left .np-about__img {
  border-radius: 8px 0 0 8px;
}

/* Right-side images */
.np-about__row--image-right .np-about__image-col {
  border-radius: 0 8px 8px 0;
}
.np-about__row--image-right .np-about__img {
  border-radius: 0 8px 8px 0;
}

.np-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.np-about__image-col:hover .np-about__img {
  transform: scale(1.03);
}

.np-about__img--placeholder {
  background: #9aa0a6;
}

/* Overlay label */
.np-about__overlay-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.np-about__overlay-label span {
  font-size: {{ section.settings.overlay_font_size }}px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  line-height: 1.2;
  padding: 0 20px;
  letter-spacing: 0.01em;
}

/* ── Text column ── */
.np-about__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 48px;
  background: #fff;
}

/* Dash */
.np-about__dash {
  width: 28px;
  height: 2px;
  background-color: #555;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Card title */
.np-about__card-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1E5FAF;
  margin: 0 0 16px;
}

/* Body copy */
.np-about__body {
  font-size: 20px;
  color: #444;
}

.np-about__body p {
  margin: 0 0 16px;
}

.np-about__body p:last-child {
  margin-bottom: 0;
}

/* ── Button ── */
.np-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background-color: #b5962a;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  align-self: flex-start;
  min-height: 50px;
  position: relative;
  transition: background-color 0.3s ease;
}

/* Arrow icon using CSS — chevron pointing right */
.np-about__btn::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: 0 18px 0 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.np-about__btn-label {
  padding: 16px 24px 16px 0;
  display: block;
  white-space: nowrap;
  line-height: 1;
  order: -1;
  padding-left: 20px;
}

.np-about__btn:hover {
  background-color: #9a7e1f;
  color: #fff;
}

.np-about__btn:hover::before {
  background-color: rgba(0, 0, 0, 0.32);
}

.np-about__btn:hover::after {
  transform: rotate(45deg) translate(3px, -3px);
}

/* ── Alternating backgrounds ── */
.np-about__row--image-left .np-about__text-col  { background: #fff; border-top-left-radius: 8px; }
.np-about__row--image-right .np-about__text-col { background: #fff; border-top-right-radius: 8px; }

/* ============================================================
   Fade-up animation
   ============================================================ */

.np-about__fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.np-about__fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.np-about__row:nth-child(2) { transition-delay: 0.05s; }
.np-about__row:nth-child(3) { transition-delay: 0.10s; }
.np-about__row:nth-child(4) { transition-delay: 0.15s; }
.np-about__row:nth-child(5) { transition-delay: 0.20s; }
.np-about__row:nth-child(6) { transition-delay: 0.25s; }
.np-about__row:nth-child(7) { transition-delay: 0.30s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .np-about__row {
    grid-template-columns: 1fr;
  }

  .np-about__row--image-left .np-about__image-col,
  .np-about__row--image-right .np-about__image-col {
    order: -1;
    min-height: 260px;
    border-radius: 8px 8px 0 0 !important;
  }

  .np-about__row--image-left .np-about__img,
  .np-about__row--image-right .np-about__img {
    border-radius: 8px 8px 0 0 !important;
  }

  .np-about__text-col {
    padding: 36px 24px;
  }

  .np-about__overlay-label span {
    font-size: 32px;
  }

  .np-about__btn {
    align-self: stretch;
  }

  .np-about__btn-label {
    flex: 1;
    text-align: center;
  }

  .np-about__fade-up {
    transform: translateY(28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-about__fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* END_SECTION:sid-by-side-section */