.elementor-1672 .elementor-element.elementor-element-570b0e2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5610703 *//* Full-width breakout fix for WordPress + Elementor wrappers */
.entry-content > .printing-section,
.elementor > .printing-section,
.elementor-widget-html > .printing-section {
  width: 100vw !important;                 /* Full viewport width */
  margin-left: calc(-50vw + 50%) !important; /* Center full-width section */
  position: relative;
}

/* Main section styling */
.printing-section {
  background-color: #f9f9f9;
  padding: 80px 2vw;
  box-sizing: border-box;
  text-align: center;
}

/* Responsive grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  justify-items: center;
  align-items: stretch;
}

/* Cards */
.grid-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  min-height: 380px;
  border: 1px solid #eee;
  width: 100%;
}

/* Hover effect */
.grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Images */
.grid-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

/* Text */
.grid-item p {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 25px 0;
  letter-spacing: 0.4px;
  color: #111;
  text-transform: uppercase;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .printing-section {
    padding: 50px 4vw;
  }
}/* End custom CSS */