/* Mounjaro Review Side Effects Widget */
.mrp-side,
.mrp-side * {
  box-sizing: border-box;
}

.mrp-side {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  color: #071b4c;
  font-family: inherit;
}

.mrp-side__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.mrp-side__header {
  position: relative;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mrp-side__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 18px;
  color: #5a98ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mrp-side__badge::before,
.mrp-side__badge::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.75;
  box-shadow: 22px 0 0 rgba(90, 152, 255, 0.28);
}

.mrp-side__heading {
  margin: 0;
  color: #071b4c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 74px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.mrp-side__highlight {
  color: #28a35b;
}

.mrp-side__description {
  max-width: 980px;
  margin: 18px auto 0;
  color: #34456f;
  font-size: clamp(16px, 1.35vw, 24px);
  line-height: 1.55;
}

.mrp-side__description p,
.mrp-side__card-text p,
.mrp-side__note-text p {
  margin: 0;
}

.mrp-side__description p + p,
.mrp-side__card-text p + p,
.mrp-side__note-text p + p {
  margin-top: 10px;
}

.mrp-side__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mrp-side__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 230px;
  padding: 30px 28px 26px;
  border: 1px solid rgba(5, 38, 86, 0.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 53, 92, 0.08);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mrp-side--hover-lift .mrp-side__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(20, 53, 92, 0.13);
  border-color: rgba(0, 89, 214, 0.20);
}

.mrp-side__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #eaf3ff;
  color: #1266d6;
  font-size: 44px;
  line-height: 1;
  flex: 0 0 auto;
}

.mrp-side__card-icon i,
.mrp-side__card-icon .fa,
.mrp-side__card-icon .fas,
.mrp-side__card-icon .far,
.mrp-side__card-icon .fab,
.mrp-side__card-icon .eicon {
  color: currentColor;
  line-height: 1;
}

.mrp-side__card-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  color: currentColor;
  fill: currentColor;
  stroke: currentColor;
}

.mrp-side__card-icon svg path,
.mrp-side__card-icon svg g,
.mrp-side__card-icon svg use,
.mrp-side__card-icon svg circle,
.mrp-side__card-icon svg rect,
.mrp-side__card-icon svg line,
.mrp-side__card-icon svg polyline,
.mrp-side__card-icon svg polygon {
  fill: currentColor;
  stroke: currentColor;
}

.mrp-side__card-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.mrp-side__card-title {
  margin: 0 0 8px;
  color: #071b4c;
  font-size: clamp(19px, 1.55vw, 28px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.mrp-side__card-text {
  color: #47577f;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.45;
}

.mrp-side__actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.mrp-side__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 360px;
  padding: 15px 50px;
  border-radius: 10px;
  background: #0059d6;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 89, 214, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mrp-side__button:hover,
.mrp-side__button:focus {
  transform: translateY(-2px);
  background: #004bb6;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 89, 214, 0.25);
}

.mrp-side__button--icon-before {
  flex-direction: row;
}

.mrp-side__button--icon-after {
  flex-direction: row;
}

.mrp-side__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
}

.mrp-side__button-icon i,
.mrp-side__button-icon .fa,
.mrp-side__button-icon .fas,
.mrp-side__button-icon .far,
.mrp-side__button-icon .fab,
.mrp-side__button-icon .eicon {
  color: currentColor;
}

.mrp-side__button-icon svg,
.mrp-side__button-icon svg path,
.mrp-side__button-icon svg g,
.mrp-side__button-icon svg use,
.mrp-side__button-icon svg circle,
.mrp-side__button-icon svg rect,
.mrp-side__button-icon svg line,
.mrp-side__button-icon svg polyline,
.mrp-side__button-icon svg polygon {
  fill: currentColor;
  stroke: currentColor;
}

.mrp-side__note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 34px;
  border: 1px solid rgba(0, 89, 214, 0.22);
  border-radius: 12px;
  background: #f8fbff;
  box-shadow: 0 8px 24px rgba(17, 54, 103, 0.04);
}

.mrp-side__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  color: #1266d6;
  font-size: 38px;
  line-height: 1;
}

.mrp-side__note-icon i,
.mrp-side__note-icon .fa,
.mrp-side__note-icon .fas,
.mrp-side__note-icon .far,
.mrp-side__note-icon .fab,
.mrp-side__note-icon .eicon {
  color: currentColor;
}

.mrp-side__note-icon svg,
.mrp-side__note-icon svg path,
.mrp-side__note-icon svg g,
.mrp-side__note-icon svg use,
.mrp-side__note-icon svg circle,
.mrp-side__note-icon svg rect,
.mrp-side__note-icon svg line,
.mrp-side__note-icon svg polyline,
.mrp-side__note-icon svg polygon {
  fill: currentColor;
  stroke: currentColor;
}

.mrp-side__note-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.mrp-side__note-content {
  min-width: 0;
}

.mrp-side__note-title {
  margin: 0 0 4px;
  color: #0059d6;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.mrp-side__note-text {
  color: #23345f;
  font-size: 16px;
  line-height: 1.5;
}

.mrp-side__dots {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, 7px);
  gap: 16px;
  opacity: 0.55;
  pointer-events: none;
}

.mrp-side__dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8eaff;
}

.mrp-side__dots--left {
  top: 25px;
  left: 28px;
}

.mrp-side__dots--right {
  right: 28px;
  bottom: 42px;
}

.mrp-side__curve {
  position: absolute;
  top: 18px;
  right: -70px;
  z-index: 1;
  width: 245px;
  height: 245px;
  border: 2px solid #b9f0cf;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.75;
  pointer-events: none;
}

.mrp-side__wave {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -120px;
  z-index: 0;
  height: 300px;
  background: #d8eaff;
  opacity: 0.55;
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
  transform: rotate(2deg);
  pointer-events: none;
}

.mrp-side--floating .mrp-side__dots,
.mrp-side--floating .mrp-side__curve {
  animation: mrpSideFloat 7s ease-in-out infinite;
}

.mrp-side--fade-up .mrp-side__inner,
.mrp-side--fade-in .mrp-side__inner,
.mrp-side--zoom-in .mrp-side__inner {
  animation-duration: var(--mrp-side-animation-speed, 0.6s);
  animation-fill-mode: both;
}

.mrp-side--fade-up .mrp-side__inner { animation-name: mrpSideFadeUp; }
.mrp-side--fade-in .mrp-side__inner { animation-name: mrpSideFadeIn; }
.mrp-side--zoom-in .mrp-side__inner { animation-name: mrpSideZoomIn; }

@keyframes mrpSideFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes mrpSideFadeUp {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes mrpSideFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mrpSideZoomIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
  .mrp-side__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mrp-side__heading {
    font-size: clamp(34px, 6vw, 58px);
  }
}

@media (max-width: 767px) {
  .mrp-side {
    padding: 56px 18px 62px;
  }

  .mrp-side__badge {
    font-size: 12px;
    letter-spacing: 0.18em;
    gap: 12px;
  }

  .mrp-side__heading {
    font-size: clamp(31px, 10vw, 45px);
    line-height: 1.08;
  }

  .mrp-side__description {
    font-size: 16px;
  }

  .mrp-side__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mrp-side__card {
    min-height: auto;
    padding: 24px 22px;
  }

  .mrp-side__card-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    font-size: 36px;
  }

  .mrp-side__button {
    width: 100%;
    min-width: 0;
    padding: 15px 22px;
    font-size: 17px;
  }

  .mrp-side__note {
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
  }

  .mrp-side__note-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 30px;
  }

  .mrp-side__dots,
  .mrp-side__curve {
    opacity: 0.22;
  }
}
