.elementor-538 .elementor-element.elementor-element-24cd1e92{--display:flex;}.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 );}.elementor-538 .elementor-element.elementor-element-7bb04453{font-family:"Roboto", Sans-serif;font-size:16px;font-weight:400;}/* Start custom CSS for text-editor, class: .elementor-element-7bb04453 *//* ===== Image Container Styling ===== */
.image-container {
  position: relative;
  display: block;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 500px;             /* Fixed height */
  object-fit: cover;         /* Prevent distortion */
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.03);    /* Zoom on hover */
}

/* ===== Image Credit Styling ===== */
.img-credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  font-size: 12px;
  font-style: italic;
  color: #555;
  border-radius: 5px;
  max-width: 85%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
}

.image-container:hover .img-credit {
  background: rgba(255, 255, 255, 0.95);
  color: #222;
}

/* ===== Disclaimer Box Styling ===== */
.disclaimer {
  background: #fff8e5;
  border: 1px solid #f5d58c;
  padding: 15px 20px 15px 50px; /* extra left padding to avoid overlap */
  margin: 25px 0;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #5a4b2b;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.disclaimer strong {
  color: #c47f00;
  font-weight: 600;
}

.disclaimer::before {
  content: "⚠️";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.disclaimer:hover {
  box-shadow: 0 4px 10px rgba(196, 127, 0, 0.2); /* subtle shadow on hover */
}

.disclaimer em {
  font-style: italic;
  color: #444;
}/* End custom CSS */