.modal_ar {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}
.modal_ar.is-open {
  display: block;
}
.modal_ar[aria-hidden=true] {
  visibility: hidden;
}

.modal_ar__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.modal_ar__panel {
  position: relative;
  width: min(780px, 92%);
  max-height: 88ddvh;
  margin: 40px auto;
  border-radius: 20px;
  padding: 50px 0 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: inherit;
  animation: modalArIn 0.5s cubic-bezier(0.22, 0.9, 0.3, 1) both;
}

@keyframes modalArIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal_ar__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}
.modal_ar__close:hover, .modal_ar__close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.ar_media_wrapper {
  position: relative;
  width: 100%;
  background: #111;
  overflow: hidden;
}

.ar_media_dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

/* active dim state (added after expand) */
.ar_media_wrapper.is-dim .ar_media_dim {
  opacity: 1;
}

.ar_media {
  width: 100%;
  display: block;
}

.ar_text_ctr {
  position: relative;
  padding: 28px clamp(18px, 2.4vw, 40px) 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 300px;
  transition: max-height 0.55s ease;
}
.ar_text_ctr::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 30px;
  background: linear-gradient(to bottom, rgb(13, 15, 20), rgba(13, 15, 20, 0));
  pointer-events: none;
  opacity: 0.85;
}
.ar_text_ctr.is-expanded {
  max-height: 100%;
}
.ar_text_ctr.is-expanded::before {
  opacity: 0;
}

.ar_text_inner {
  overflow: hidden;
  font-size: clamp(14px, 0.92rem + 0.2vw, 16px);
  line-height: 1.55;
  letter-spacing: 0.2px;
}
.ar_text_inner p {
  margin: 0;
}

.ar_text_ctr.is-expanded .ar_text_inner {
  overflow: auto;
  padding-right: 4px;
}

.ar_more_btn {
  align-self: flex-start;
  background: #ffce3d;
  color: #222;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.4);
  transition: background 0.25s, transform 0.25s;
}
.ar_more_btn:hover {
  background: #ffd95f;
}
.ar_more_btn:active {
  transform: translateY(2px);
}

/* Expanded state adjustments */
.ar_text_ctr.is-expanded ~ .ar_media_wrapper .ar_media_dim,
.ar_text_ctr.is-expanded + .ar_media_wrapper .ar_media_dim {
  opacity: 1;
}

/* Scrollbar styling inside text */
.ar_text_inner::-webkit-scrollbar {
  width: 8px;
}

.ar_text_inner::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.ar_text_inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 10px;
}

.ar_text_inner::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 680px) {
  .modal_ar__panel {
    padding-top: 50px;
    border-radius: 16px;
  }
  .ar_text_ctr {
    padding: 20px 18px 26px;
  }
  .ar_more_btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}/*# sourceMappingURL=modalArInfo.css.map */