.aimiracle-prompt-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1450px;
  height: auto;
  font-family: 'Lora', serif;
  margin: 64px auto;
}

/* LEFT SECTION */
.aimiracle-prompt-left-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 703px;
}

.aimiracle-prompt-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
  flex-shrink: 0;
  color: #090909;
  font-size: 32px;
  padding: 0;
}

.aimiracle-prompt-title .bold {
  font-weight: 600;
}

.aimiracle-prompt-image-container {
  background: #dadada;
  height: 476px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.aimiracle-prompt-image-wrapper {
  position: absolute;
  height: 503.426px;
  width: 754px;
}

.aimiracle-prompt-image-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aimiracle-prompt-img {
  position: absolute;
  left: 0;
  max-width: none;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.aimiracle-prompt-container.hovered .aimiracle-prompt-img {
  transform: scale(1.1);
}

/* RIGHT SECTION */
.aimiracle-prompt-right-section {
  display: flex;
  flex-direction: column;
  height: 537px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 61px 0 0 0;
  position: relative;
  flex-shrink: 0;
  width: 703px;
}

/* PROMPT BOX */
.aimiracle-prompt-box {
  background: #ffffff;
  position: relative;
  border-radius: 10.338px;
  flex-shrink: 0;
  width: 100%;
}

.aimiracle-prompt-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}

.aimiracle-prompt-content {
  display: flex;
  align-items: center;
  padding: 32px;
  position: relative;
  width: 100%;
}

.aimiracle-prompt-text {
  flex: 1 1 0%;
  font-family: 'Lora', serif;
  font-weight: 400;
  line-height: 31.013px;
  min-height: 1px;
  min-width: 1px;
  position: relative;
  flex-shrink: 0;
  font-size: 20.675px;
  color: #000000;
}

.aimiracle-prompt-border-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 10.338px;
  overflow: hidden;
}

.aimiracle-prompt-border-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.aimiracle-prompt-animated-border {
  animation: none;
}

.aimiracle-prompt-container.hovered .aimiracle-prompt-animated-border {
  animation: aimiracle-prompt-dashMove 1s linear infinite;
}

@keyframes aimiracle-prompt-dashMove {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 14;
  }
}

/* BUTTON */
.aimiracle-prompt-copy-button {
  background: linear-gradient(to right, #3801d0, #d5029f);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  padding: 19px 44px;
  position: relative;
  border-radius: 8px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.aimiracle-prompt-container.hovered .aimiracle-prompt-copy-button {
  opacity: 1;
}

.aimiracle-prompt-button-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 900;
  line-height: normal;
  font-style: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 16px;
  white-space: nowrap;
  color: #ffffff;
}

/* TIP SECTION */
.aimiracle-prompt-tip-section {
  position: relative;
  border-radius: 10.338px;
  flex-shrink: 0;
  width: 100%;
}

.aimiracle-prompt-tip-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}

.aimiracle-prompt-tip-content {
  display: flex;
  gap: 16.54px;
  align-items: center;
  padding: 8px;
  position: relative;
  width: 100%;
}

.aimiracle-prompt-tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.aimiracle-prompt-icon-transform {
  flex: none;
  transform: rotate(180deg) scaleY(-1);
}

.aimiracle-prompt-icon-wrapper {
  height: 50.743px;
  position: relative;
  width: 33.626px;
}

.aimiracle-prompt-icon-position {
  position: absolute;
  inset: -1.84% -2.78%;
}

.aimiracle-prompt-icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.aimiracle-prompt-tip-text {
  flex: 1 1 0%;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  line-height: normal;
  min-height: 1px;
  min-width: 1px;
  position: relative;
  flex-shrink: 0;
  font-size: 18.608px;
  color: #000000;
}

.aimiracle-prompt-tip-label {
  font-style: normal;
  font-weight: 600;
}

/* TEXT PROMPT BADGE */
.aimiracle-prompt-badge {
  position: absolute;
  background: #ffffff;
  display: flex;
  height: 25px;
  align-items: center;
  justify-content: center;
  right: 50px;
  padding: 0 16px;
  border-radius: 4px;
  top: 50px;
}

.aimiracle-prompt-badge-border {
  position: absolute;
  border: 1px dashed #3801d0;
  inset: 0;
  pointer-events: none;
  border-radius: 4px;
}

.aimiracle-prompt-badge-inner {
  display: flex;
  height: 30.366px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  min-width: 52.21px;
}

.aimiracle-prompt-badge-text-wrapper {
  flex: none;
  transform: rotate(0.404deg);
}

.aimiracle-prompt-badge-text {
  background: linear-gradient(to right, #3801d0, #d5029f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 30px;
  font-style: normal;
  position: relative;
  font-size: 13px;
  white-space: nowrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .aimiracle-prompt-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .aimiracle-prompt-left-section,
  .aimiracle-prompt-right-section {
    width: 100%;
    max-width: 600px;
  }

  .aimiracle-prompt-right-section {
    height: auto;
    padding: 0;
  }

  .aimiracle-prompt-badge {
    right: 150px;
    top: 475px;
  }

  .aimiracle-prompt-title {
    font-size: 28px;
  }

  .aimiracle-prompt-image-container {
    height: 400px;
  }

  .aimiracle-prompt-image-wrapper {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  .aimiracle-prompt-text {
    font-size: 18px;
    line-height: 28px;
  }

  .aimiracle-prompt-content {
    padding: 24px;
  }

  .aimiracle-prompt-tip-text {
    font-size: 16px;
  }

  .aimiracle-prompt-copy-button {
    margin: 20px 0;
  }
}

/* Mobile (< 768px) */
@media screen and (max-width: 767px) {
  .aimiracle-prompt-container {
    gap: 20px;
  }

  .aimiracle-prompt-left-section,
  .aimiracle-prompt-right-section {
    max-width: 100%;
  }

  .aimiracle-prompt-title {
    font-size: 22px;
  }

  .aimiracle-prompt-image-container {
    height: 300px;
  }

  .aimiracle-prompt-image-wrapper {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  .aimiracle-prompt-img {
    object-fit: cover;
    height: 100%;
    top: 0;
    width: 100%;
  }

  .aimiracle-prompt-box {
    border-radius: 8px;
  }

  .aimiracle-prompt-content {
    padding: 20px;
  }

  .aimiracle-prompt-text {
    font-size: 16px;
    line-height: 24px;
  }

  .aimiracle-prompt-border-container {
    border-radius: 8px;
  }

  .aimiracle-prompt-animated-border {
    rx: 8;
  }

  .aimiracle-prompt-copy-button {
    width: 100%;
    padding: 16px 32px;
    margin: 15px 0;
  }

  .aimiracle-prompt-button-text {
    font-size: 15px;
  }

  .aimiracle-prompt-tip-content {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    align-items: flex-start;
  }

  .aimiracle-prompt-tip-icon {
    align-self: center;
  }

  .aimiracle-prompt-icon-wrapper {
    height: 40px;
    width: 26px;
  }

  .aimiracle-prompt-tip-text {
    font-size: 14px;
    text-align: left;
  }

  .aimiracle-prompt-badge {
    right: 15px;
    top: 15px;
    height: 22px;
    padding: 0 12px;
  }

  .aimiracle-prompt-badge-text {
    font-size: 11px;
    line-height: 22px;
  }

  .aimiracle-prompt-badge-inner {
    height: auto;
    width: auto;
  }
}

/* Small Mobile (< 480px) */
@media screen and (max-width: 479px) {
  .aimiracle-prompt-title {
    font-size: 20px;
  }

  .aimiracle-prompt-image-container {
    height: 250px;
  }

  .aimiracle-prompt-content {
    padding: 16px;
  }

  .aimiracle-prompt-text {
    font-size: 15px;
    line-height: 22px;
  }

  .aimiracle-prompt-copy-button {
    padding: 14px 24px;
  }

  .aimiracle-prompt-button-text {
    font-size: 14px;
  }

  .aimiracle-prompt-tip-content {
    padding: 12px;
  }

  .aimiracle-prompt-tip-text {
    font-size: 13px;
  }
}


