/* Mounjaro Review Safety First Widget */
.mrp-safety,
.mrp-safety * {
    box-sizing: border-box;
}

.mrp-safety {
    --mrp-safety-navy: #071533;
    --mrp-safety-text: #25365a;
    --mrp-safety-amber: #d39a00;
    --mrp-safety-border: #f0c45d;
    --mrp-safety-soft: #fff8e8;
    --mrp-safety-card-border: #f4d58a;
    --mrp-safety-animation-speed: .7s;
    --mrp-safety-animation-delay: 0s;
    position: relative;
    width: 100%;
    padding: 36px;
    background: #ffffff;
    overflow: hidden;
}

.mrp-safety::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.mrp-safety.mrp-safety--overlay::before {
    opacity: 1;
}

.mrp-safety__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.mrp-safety__panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #E5ECF4;
    border-radius: 26px;
    background: #ffffff;
    padding: 46px 32px 34px;
}

.mrp-safety__header {
    max-width: 930px;
    margin: 0 auto 28px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mrp-safety__top-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin: 0 0 14px;
}

.mrp-safety__top-line {
    display: block;
    width: 190px;
    max-width: 22vw;
    height: 1px;
    background: #b7b1a4;
}

.mrp-safety__top-icon,
.mrp-safety__notice-icon,
.mrp-safety__card-icon,
.mrp-safety__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mrp-safety-amber);
    line-height: 1;
}

.mrp-safety__top-icon {
    width: 54px;
    height: 54px;
    font-size: 32px;
}

.mrp-safety__top-icon svg,
.mrp-safety__notice-icon svg,
.mrp-safety__card-icon svg,
.mrp-safety__button-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
    stroke: currentColor;
}

.mrp-safety__top-icon img,
.mrp-safety__notice-icon img,
.mrp-safety__card-icon img,
.mrp-safety__button-icon img {
    display: block;
    width: 1em;
    height: 1em;
    object-fit: contain;
}

.mrp-safety__heading {
    margin: 0;
    color: var(--mrp-safety-navy);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mrp-safety__highlight {
    color: var(--mrp-safety-amber);
}

.mrp-safety__description {
    margin: 16px auto 0;
    color: var(--mrp-safety-text);
    font-size: clamp(16px, 1.5vw, 21px);
    line-height: 1.55;
    max-width: 900px;
}

.mrp-safety__cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.mrp-safety__card {
    min-width: 0;
    height: 100%;
    display: flex;
    text-decoration: none;
    color: inherit;
}

.mrp-safety__card-inner {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding: 30px 22px 30px;
    border: 1px solid #dce4ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(20, 53, 92, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mrp-safety--hover-lift .mrp-safety__card:hover .mrp-safety__card-inner {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(20, 53, 92, 0.13);
    border-color: #cbd9ee;
}

.mrp-safety__card-icon {
    flex: 0 0 auto;
    width: 126px;
    height: 126px;
    margin: 0 0 26px;
    border-radius: 999px;
    background: #fff1c9;
    color: var(--mrp-safety-amber);
    font-size: 54px;
}

.mrp-safety__card-title {
    margin: 0 0 20px;
    color: var(--mrp-safety-navy);
    font-size: clamp(20px, 1.65vw, 26px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mrp-safety__card-description {
    color: #0c1833;
    font-size: clamp(15px, 1.1vw, 19px);
    line-height: 1.55;
    margin: 0 auto 20px;
}

.mrp-safety__card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    margin-top: auto;
    border-radius: 999px;
    background: var(--mrp-safety-amber);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
}

.mrp-safety__buttons {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.mrp-safety__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.mrp-safety__button:hover {
    transform: translateY(-2px);
}

.mrp-safety__button--primary {
    background: var(--mrp-safety-amber);
    color: #ffffff;
}

.mrp-safety__button--secondary {
    background: #ffffff;
    color: var(--mrp-safety-navy);
    border: 1px solid #f0c45d;
}

.mrp-safety__notice {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 210px;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
    padding: 28px 36px;
    border: 1px solid #E5ECF4;
    border-radius: 14px;
    background: #ffffff;
}

.mrp-safety__notice-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    min-height: 135px;
    border-right: 1px solid #E5ECF4;
    padding-right: 28px;
}

.mrp-safety__notice-icon--left {
    font-size: 58px;
}

.mrp-safety__notice-left-title {
    color: var(--mrp-safety-amber);
    text-transform: uppercase;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}

.mrp-safety__notice-text {
    color: var(--mrp-safety-navy);
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.42;
}

.mrp-safety__notice-text p {
    margin: 0 0 14px;
}

.mrp-safety__notice-text p:last-child {
    margin-bottom: 0;
}

.mrp-safety__notice-text strong {
    font-weight: 800;
}

.mrp-safety__notice-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.mrp-safety__notice-icon--right {
    font-size: 60px;
}

.mrp-safety__notice-right-text {
    color: var(--mrp-safety-navy);
    font-size: 22px;
    line-height: 1.28;
    font-weight: 800;
}

.mrp-safety__shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: .28;
}

.mrp-safety__shape--top {
    width: 360px;
    height: 360px;
    border: 1px solid #e1ad28;
    border-radius: 50%;
    top: -180px;
    right: -130px;
}

.mrp-safety__shape--bottom {
    width: 500px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 226, 146, .35) 0%, rgba(255, 226, 146, 0) 70%);
    bottom: -80px;
    left: -120px;
}

.mrp-safety__decor-img {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    width: 220px;
    max-width: 28%;
    height: auto;
    opacity: .18;
    pointer-events: none;
}

.mrp-safety--fade-up .mrp-safety__panel {
    animation: mrpSafetyFadeUp var(--mrp-safety-animation-speed) ease var(--mrp-safety-animation-delay) both;
}

.mrp-safety--fade-in .mrp-safety__panel {
    animation: mrpSafetyFadeIn var(--mrp-safety-animation-speed) ease var(--mrp-safety-animation-delay) both;
}

.mrp-safety--zoom-in .mrp-safety__panel {
    animation: mrpSafetyZoomIn var(--mrp-safety-animation-speed) ease var(--mrp-safety-animation-delay) both;
}

.mrp-safety--floating .mrp-safety__top-icon,
.mrp-safety--floating .mrp-safety__notice-icon--right {
    animation: mrpSafetyFloat 3.6s ease-in-out infinite;
}

@keyframes mrpSafetyFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes mrpSafetyZoomIn {
    from { opacity: 0; transform: scale(.96); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes mrpSafetyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1200px) {
    .mrp-safety__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mrp-safety__card-inner {
        min-height: 360px;
    }

    .mrp-safety__notice {
        grid-template-columns: 210px minmax(0, 1fr) 170px;
        gap: 20px;
        padding: 24px;
    }
}

@media (max-width: 900px) {
    .mrp-safety {
        padding: 24px;
    }

    .mrp-safety__panel {
        padding: 34px 22px 26px;
    }

    .mrp-safety__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mrp-safety__notice {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mrp-safety__notice-left {
        border-right: 0;
        border-bottom: 1px solid #E5ECF4;
        padding-right: 0;
        padding-bottom: 22px;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .mrp-safety {
        padding: 18px 12px;
    }

    .mrp-safety__panel {
        padding: 30px 14px 18px;
        border-radius: 18px;
    }

    .mrp-safety__top-deco {
        gap: 14px;
    }

    .mrp-safety__top-line {
        width: 80px;
    }

    .mrp-safety__cards {
        grid-template-columns: 1fr;
    }

    .mrp-safety__card-inner {
        min-height: auto;
        padding: 28px 20px 30px;
    }

    .mrp-safety__card-icon {
        width: 104px;
        height: 104px;
        font-size: 44px;
        margin-bottom: 20px;
    }

    .mrp-safety__buttons {
        align-items: stretch;
    }

    .mrp-safety__button {
        width: 100%;
    }

    .mrp-safety__notice {
        padding: 22px 16px;
    }

    .mrp-safety__notice-icon--left,
    .mrp-safety__notice-icon--right {
        font-size: 48px;
    }
}


/* -------------------------------------------------------------------------
   2026.0.39 - Safety First cards: strict equal height + visible soft shadow
   - Keeps all 5 desktop cards the same height.
   - Keeps number at the bottom with only card padding below it.
   - Adds default soft shadow like other cards while allowing Elementor shadow
     control to override through generated widget CSS.
------------------------------------------------------------------------- */
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__cards,
body .mrp-safety .mrp-safety__cards{
  display:grid!important;
  align-items:stretch!important;
  grid-auto-rows:1fr!important;
}
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card,
body .mrp-safety .mrp-safety__card{
  display:flex!important;
  align-self:stretch!important;
  height:100%!important;
  min-height:0!important;
}
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-inner,
body .mrp-safety .mrp-safety__card-inner{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:flex-start!important;
  width:100%!important;
  height:100%!important;
  min-height:390px!important;
  padding-top:30px!important;
  padding-bottom:30px!important;
  background:#ffffff;
  border:1px solid #E5ECF4;
  box-shadow:0 18px 42px rgba(6,27,59,.10);
}
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-icon,
body .mrp-safety .mrp-safety__card-icon{
  flex:0 0 auto!important;
  margin-bottom:15px!important;
}
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-title,
body .mrp-safety .mrp-safety__card-title{
  margin:0 0 10px!important;
  flex:0 0 auto!important;
}
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-description,
body .mrp-safety .mrp-safety__card-description{
  margin:0 auto!important;
  flex:0 0 auto!important;
}
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-number,
body .mrp-safety .mrp-safety__card-number{
  margin-top:auto!important;
  margin-bottom:0!important;
  flex:0 0 auto!important;
}
body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card:hover .mrp-safety__card-inner,
body .mrp-safety .mrp-safety__card:hover .mrp-safety__card-inner{
  box-shadow:0 22px 52px rgba(6,27,59,.14);
  border-color:#D7E4F7;
}
@media (max-width:1200px){
  body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-inner,
  body .mrp-safety .mrp-safety__card-inner{
    min-height:360px!important;
  }
}
@media (max-width:900px){
  body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-inner,
  body .mrp-safety .mrp-safety__card-inner{
    min-height:340px!important;
  }
}
@media (max-width:600px){
  body .elementor-widget-mounjaro_review_safety_first .mrp-safety__cards,
  body .mrp-safety .mrp-safety__cards{
    grid-auto-rows:auto!important;
  }
  body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-inner,
  body .mrp-safety .mrp-safety__card-inner{
    min-height:0!important;
    height:auto!important;
    padding-top:26px!important;
    padding-bottom:30px!important;
  }
  body .elementor-widget-mounjaro_review_safety_first .mrp-safety__card-number,
  body .mrp-safety .mrp-safety__card-number{
    margin-top:15px!important;
  }
}
