/* =========================
   HERO (PNS Graphics) — FINAL
   ========================= */
.hero{
  position: relative;
  width: 100%;
  min-height: clamp(520px, 70vh, 820px);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero__overlay{
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.45);
}
.hero .container-1400{ position: relative; z-index: 2; }

/* Top copy (flush-left within the container) */
.hero__content{
  /* no width cap — keep left-aligned */
  margin: 0;
  padding-top: clamp(56px, 9vh, 120px) !important;
  padding-bottom: clamp(28px, 6vh, 64px);
  display: grid;
  gap: 16px;
  text-align: left;
}
.hero__welcome{
  margin: 0;
	margin-top:35px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}
.hero__heading{
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.1;
  text-shadow: 0 6px 30px rgba(0,0,0,.4);
      max-width: 900px;
}

/* CTA button */
.hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  background: var(--brand-blue, #1790E3);
  color: #fff;
  text-decoration: none;
  line-height: 1;
  min-width: 240px;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.hero__btn img{ width:16px; height:16px; }
.hero__btn:hover{
  background:#147fcb;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
/* keep the button from stretching in the grid */
.hero__content { display: grid; }
.hero__btn {
  justify-self: start;     /* <- key line */
  width: auto;             /* ensure not 100% */
  min-width: 240px;
}

/* =========================
   Info cards row
   ========================= */
.hero__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  margin-bottom: clamp(36px, 6vh, 60px);
}

/* Card */
.hero-card{
  display: grid;
  grid-template-columns: 50px 1fr;  /* icon column is fixed 50px */
  column-gap: 18px;
  align-items: center;
  padding: 22px 26px;
  background: rgba(0,0,0,.70);      /* 70% black overlay */
  border-left: 3px solid var(--brand-blue, #1790E3);
  border-radius: 6px;
}

/* Icon placement ONLY (no appearance edits) */
.hero-card__ico{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card__ico img{
  width: 50px;
  height: 50px;
}

/* Text */
.hero-card__body{ display:flex; flex-direction:column; gap:3px; }
.hero-card__label{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  opacity: .85;
}
.hero-card__value{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.hero-card__value + .hero-card__value{ margin-top: 4px; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px){
  .hero__cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1099px) {
  .hero__welcome {
    margin-top: 5px;
  }
}
@media (max-width: 720px){
  .hero__cards{ grid-template-columns: 1fr; }
  .hero-card{ padding: 18px 20px; }
  .hero__btn{ width: 100%; justify-content: center; }
}

/* =========================
   ABOUT SECTION
   ========================= */
.about-section {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(64px, 8vw, 120px) 0;
}

/* Main inner container (1400px max width) */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: clamp(40px, 5vw, 80px);
}

/* Left content */
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.about__title .theme-blue {
  color: var(--theme-blue, #1790E3);
  margin-right: 8px;
}

.about__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  max-width: 640px;
}

/* Stats row (3 across) */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 80px);
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  max-width: 700px; /* keeps layout tidy */
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.about-stat__num {
color: #020713;
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.about-stat__label {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Right image */
.about__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__image img {
  display: block;
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  object-fit: cover;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1023.98px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__content {
    align-items: center;
  }
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    text-align: center;
  }
  .about-stat {
    align-items: center;
    text-align: center;
  }
  .about__image {
    order: -1;
  }
  .about__desc {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .about__title {
    font-size: 26px;
  }
  .about-stat__num {
    font-size: 36px;
  }
  .about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    justify-items: center;
  }
  .about-stat:nth-child(3) {
    grid-column: span 2;
  }
	
  .hero__heading {
    font-size: 28px;
    line-height: 38px;
  }
}

/* =========================
   FEATURED PRINTING PRESSES
   ========================= */
.featured-presses {
  background: #fff;
  padding: clamp(64px, 8vw, 80px) 0 0px 0;
}

/* ---------- Heading ---------- */
.featured__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.featured__title .theme-blue {
  color: var(--theme-blue, #1790E3);
}

/* ---------- Intro text ---------- */
.featured__intro {
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 64px);
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

/* ---------- Card Grid ---------- */
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.featured-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* ---------- Card Image Wrapper ---------- */
.featured-card__media {
  height: 294.13px;              /* fixed equal height */
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* ---------- Card Image ---------- */
.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* crop nicely, no distortion */
  display: block;
}

/* ---------- Card Body ---------- */
.featured-card__body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px;
  line-height: 1.4;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.featured-card__desc {
  flex-grow: 1;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-card__desc ul {
  padding-left: 20px;
  margin: 0;
}

.featured-card__desc li {
  margin: 4px 0;
  list-style-type: disc;
  color: #1790E3;
}

/* ---------- Button (Get Quote) ---------- */
.featured-card__btn {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--theme-blue, #1790E3);
  border-radius: 8px;
  padding: 10px 22px;
  transition: background 0.25s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.featured-card__btn:hover {
  background: #0f74b8;
}

/* ---------- View All Button ---------- */
.featured__cta {
  text-align: center;
  margin-top: clamp(16px, 3vw, 32px);
}

.featured__view-all {
  display: inline-block;
  background: var(--theme-blue, #1790E3);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 32px;
  transition: background 0.25s ease;
}

.featured__view-all:hover {
  background: #0f74b8;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1023.98px) {
  .featured__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .featured__title {
    font-size: 26px;
  }
  .featured__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .featured-card {
    border-radius: 16px;
  }
}
