.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 2rem;
}

/* LEFT SIDE: Two long images side by side */
.contact-left {
  width: 50%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
}

.contact-left img {
  width: 50%;
  height: 800px;
  object-fit: cover;
  border-radius: 6px;
}

/* RIGHT SIDE: View Full Gallery + Info */
.contact-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
  height: 800px;
  box-sizing: border-box;
}

/* View Full Gallery button */
.pill-link {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #111;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  background-color: transparent;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.pill-link:hover {
  background-color: #f0f0f0;
  border-color: #555;
  color: #000;
}

/* Image + text block side-by-side */
.right-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: -10px; /* pull it up */
}


/* Small image inside right side */
.right-box img {
  width: 400px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 6px;
}

/* Info text block beside the image */
.info-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Section headers like LOCATION, ARTIST */
.info-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

/* Smaller description text */
.info-sub {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}
