/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://yourdomain.com/
 Description:  Child theme for the Hello Elementor theme
 Author:       Your Name
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Your custom styles go below this line */

.custom-attachment-page {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.attachment-image img {
  max-width: 600px;
  height: auto;
  border: 1px solid #ccc;
}

.attachment-caption {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 6px;
  max-width: 400px;
}

/* Optional: X button style */
.close-lightbox {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #000;
  text-decoration: none;
  z-index: 9999;
}


