.elementor-8426 .elementor-element.elementor-element-ba666dc{--display:flex;}.elementor-8426 .elementor-element.elementor-element-ba666dc:not(.elementor-motion-effects-element-type-background), .elementor-8426 .elementor-element.elementor-element-ba666dc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EFEFEF;}.elementor-8426 .elementor-element.elementor-element-c1b69b0{width:var( --container-widget-width, 88.529% );max-width:88.529%;--container-widget-width:88.529%;--container-widget-flex-grow:0;}.elementor-8426 .elementor-element.elementor-element-c1b69b0.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for shortcode, class: .elementor-element-c1b69b0 *//* RESET */
* {
  box-sizing: border-box;
}

/* MAIN LAYOUT */
.profile-container {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;

  /* 🔑 IMPORTANT FIX */
  align-items: start;

  font-family: Arial, Helvetica, sans-serif;
}

/* LEFT PROFILE CARD */
.profile-header {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  position: sticky;
  top: 30px;
}

/* IMAGE */
.profile-header img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* NAME */
.profile-header h2 {
  font-size: 26px;
  margin: 6px 0 4px;
}

/* META */
.profile-meta {
  font-size: 14px;
  color: #666;
}

/* RIGHT CONTENT */
.profile-right {
  width: 100%;
}

/* SECTION */
.profile-section {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* SECTION TITLE */
.profile-section h3 {
  margin: 0 0 14px;
  font-size: 18px;
  border-left: 4px solid #007bff;
  padding-left: 10px;
}

/* GRID */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

/* FIELD */
.profile-grid > div {
  background: #f6f7fb;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  border-left: 3px solid #e91e63;
}

/* MOBILE */
@media (max-width: 992px) {
  .profile-container {
    grid-template-columns: 1fr;
  }

  .profile-header {
    position: relative;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */