.elementor-1021 .elementor-element.elementor-element-34eebc5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-446fd33 *//* Container box */
.content-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  font-family: sans-serif;
}

/* Base image wrapping styles */
.image-wrap {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.image-wrap:hover {
  transform: scale(1.02); /* Slight hover pop effect */
}

/* Image properties, borders, and spacing */
.image-wrap img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  border: 3px solid #0a8fa2; /* Your custom border color (Blue) */
  border-radius: 8px;        /* Soft rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Left alignment setup */
.wrap-left {
  float: left;
  margin-right: 20px;       /* Pushes text away from the right side of the image */
  margin-bottom: 10px;      /* Pushes text away from the bottom of the image */
}

/* Right alignment setup */
.wrap-right {
  float: right;
  margin-left: 20px;        /* Pushes text away from the left side of the image */
  margin-bottom: 10px;      /* Pushes text away from the bottom of the image */
}

/* Clearfix utility to reset layouts after floating elements */
.content-box::after {
  content: "";
  display: table;
  clear: both;
}

/* ==========================================================
   PURE CSS LIGHTBOX FUNCTIONALITY
   ========================================================== */

/* Main background overlay hidden by default */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* Dark dim effect */
}

/* Activates when the anchor link ID is targeted */
.lightbox-overlay:target {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Invisible background zone that allows clicking outside to close */
.lightbox-close-zone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: default;
}

/* Lightbox pop-up image container box */
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  background: #222;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 3px solid #ffffff; /* Frame inside lightbox view */
}

/* Close button on top corner */
.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #3498db; /* Changes color to match your layout accent */
}/* End custom CSS */