.elementor-1568 .elementor-element.elementor-element-655d756{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1320fbe *//* Container goes full width */
.custom-photo-container {
  width: 100vw; /* full screen width */
  margin-left: calc(-50vw + 50%); /* break out of WordPress constraint */
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
  padding: 40px 5%;
  box-sizing: border-box;
}

/* Cards equal width & height */
.custom-card {
  flex: 1 1 45%; /* two cards side-by-side on desktop */
  max-width: 600px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Equal image sizing */
.custom-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Inner content */
.custom-content {
  padding: 20px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Background color variants */
.photo-prints {
  background-color: #eaf7fd; /* light blue */
}

.photo-products {
  background-color: #fff7db; /* light yellow */
}

/* Typography */
.custom-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.custom-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

/* Button Styling */
.custom-btn {
  background-color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 10px 18px;
}

.custom-btn:hover {
  background-color: #333;
}

.custom-btn a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .custom-card {
    flex: 1 1 100%;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .custom-photo-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: 0;
  }
  .custom-card {
    width: 90%;
    max-width: 500px;
  }
  .custom-card img {
    height: 220px;
  }
}/* End custom CSS */