.block h1 {
    margin-top: 0px;
    padding: 40px 40px 0px 40px;
}
/*
.block p {
    padding: 40px;
}
*/

.block {
  display: flex;
  width: 70%;
  margin: 32px auto;
  color: #fff;
  align-items: stretch; /* makes both sides same height */
}

.cont-1, .cont-2 {
  width: 50%;
  margin: 1%;
}

.cont-2 {
  display: flex;
  flex-direction: column;
  gap: 28px;      /* space between top image and bottom row */
  height: 100%;   /* so it can stretch to match the left */
}

}

/* LEFT PANEL IMAGE (apply image to the overlay wrapper) */
.block-1{
  height: 100%;
}

.block-1-overlay{
  height: 100%;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.62)),
    url("images/IMG_6030 copy.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-copy {
  padding: 20px;
  padding-bottom: 40px;   /* adds breathing room at the bottom */
}

.product-copy p{
  margin-top: 0;
  margin-bottom: 24px;   /* controls space between paragraphs */
  line-height: 1.6;
}

/* Top image fills remaining space */
.block-2 {
  flex: 2;                      /* makes the top image taller */
  min-height: 360px;            /* ensures it never gets too short */
  background-image: url("images/IMG_7589.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* Bottom row holds 2 images */
.bottom-row {
  display: flex;
  gap: 28px;          /* space between the bottom images */
  flex: 1;            /* allows bottom row to take a sensible share */
}

.block-3, .block-4 {
  flex: 1;
  min-height: 300px;  /* taller rectangles (not squares) */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.block-3 { background-image: url("images/IMG_7603.webp"); }
.block-4 { background-image: url("images/IMG_7595.webp"); }

/* remove this old margin-right since gap handles spacing */
/* .block-3 { margin-right: 2%; } */



/* Slight rounding looks nice with gaps (optional) */
.block-1, .block-2, .block-3, .block-4, .block-1-overlay{
  border-radius: 8px;
  overflow: hidden;
}

}

/* Reduce cropping: show more of the image */
.block-2, .block-3, .block-4{
  background-position: center top;  /* keeps the top visible (often important) */
}

/* If the top crate is still cropping too much, try this instead: */
/* .block-2{ background-position: center center; } */


@media screen and (max-width:600px) {
  .block {
    display: block;
    width: 92%;
    margin: 20px auto;
  }

  .cont-1, .cont-2 {
    width: 100%;
    margin: 0;
  }

  .cont-2 {
    height: auto;
    margin-top: 16px;
    gap: 16px;
  }

  .block-2 {
    min-height: 240px;
  }

  .bottom-row {
    display: block;
  }

  .block-3, .block-4 {
    min-height: 220px;
    margin-top: 12px;
  }

  .block-1-overlay {
    height: auto;
  }
}
