.cursor-pointer {
  cursor: pointer !important;
}


.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 4px;
}

.rating > input {
  display: none;
}
.rating > label {
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 30px;
}
.rating > label::before {
  position: absolute;
  font-family: bootstrap-icons !important;
  content: "\F586";
  font-size: 28px;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.2;
  opacity: 0.2;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.rating > input:checked ~ label::before,
.rating > input:checked ~ label ~ label::before {
  opacity: 1;
  color: #fcd93a;
}

.rating > input:not(:checked) ~ label:hover::before,
.rating > input:not(:checked) ~ label:hover ~ label::before {
  opacity: 1;
  color: #fcd93a;
}


.feedback-file {
  cursor: pointer;
  display: block;
  border: 1px dashed var(--border-two);
  background-color: var(--color-primary-soft);
  border-radius: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.feedback-file:hover {
  border-color: var(--color-primary);
}
.feedback-file > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1.1;
  padding: 30px 20px;
  background-color: rgba(240, 242, 248, 1);
}
.feedback-file > span i {
  font-size: 26px;
  line-height: 26px;
  color: var(--color-primary);
}

.page-content {
  padding: 30px 35px;
  border-radius: 40px;
}

.text-editor-content{
   h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
  }
    ul,ol{
      padding-left: 2rem !important;
    }
    ul, ol, li {
      margin: 0;
      list-style-type: disc !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .page-content {
    padding: 15px;
  }
}

.otp-expired-message {
  color: var(--color-warning);
  font-size: 18px;
}

.pointer {
  cursor: pointer !important;
}

.note-editor .note-toolbar .note-dropdown-menu,
.note-popover .popover-content .note-dropdown-menu {
  top: 115%;
}

.note-modal {
  z-index: 1070 !important;
}
.note-modal .form-group {
  margin-bottom: 15px;
}

.note-dropdown-menu.dropdown-menu {
  border: 1px solid var(--color-primary-light) !important;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.note-modal .close {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 20px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.note-editor .note-editable > ul {
  list-style: disc !important;
  list-style-position: inside !important;
}
.note-editor .note-editable > ul > li,
.note-editor .note-editable > ol > li {
  list-style-type: unset !important;
}

.note-editor .note-editable > ol {
  list-style: decimal !important;
  list-style-position: inside !important;
}

.note-modal .btn.note-btn-primary {
  background-color: var(--color-primary) !important;
}

.note-modal .btn:disabled,
.note-modal fieldset:disabled .btn {
  color: var(--color-primary-text) !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  opacity: 1 !important;
}

.note-editor .note-dropdown-menu .dropdown-item:focus,
.note-editor .note-dropdown-menu .dropdown-item:hover {
  color: var(--text-primary) !important;
  background-color: var(--site-bg) !important;
}

.note-editor .note-dropdown-menu .dropdown-item.active,
.note-editor .note-dropdown-menu .dropdown-item:active {
  color: var(--color-primary-text) !important;
  background-color: var(--color-primary) !important;
}

@-webkit-keyframes stretch {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    background-color: #aaa;
  }

  50% {
    background-color: #ccc;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #fff;
  }
}

@keyframes stretch {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    background-color: #aaa;
  }

  50% {
    background-color: #ccc;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #fff;
  }
}

.ai-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 160px !important;
}

.ai-btn.btn__dots--loading .btn__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5px;
}

.ai-btn.btn__dots--loading .btn__dots i {
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: stretch;
          animation-name: stretch;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  border-radius: 100%;
  display: block;
  height: 10px;
  margin: 0 1px;
  width: 10px;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  margin: 0 5px;
}

.ai-btn.btn__dots--loading .btn__dots i:first-child {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  margin: 0;
}

.ai-btn.btn__dots--loading .btn__dots i:last-child {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  margin: 0;
}

.ai-btn i {
  font-weight: normal;
}

.ai-btn .btn__dots {
  display: none;
}

.card-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  isolation: isolate;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.spinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.lds-roller {
  position: relative;
  display: inline-block;
  height: 64px;
  width: 64px;
}
.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 32px 32px;
      -ms-transform-origin: 32px 32px;
          transform-origin: 32px 32px;
}
.lds-roller div:after {
  position: absolute;
  display: block;
  background: var(--color-primary);
  border-radius: 50%;
  content: " ";
  margin: -3px 0 0 -3px;
  height: 6px;
  width: 6px;
}
.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

.image-card  img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}


.image-dropdwon{
  min-width: 100px;
  background-color: var(--color-white);
  padding: 8px 23px 8px 13px !important;
  font-size: 14px !important;
  color: var(--text-secondary);
  height: 38px;
}

.ai-image-card{
  border-radius: 16px;
}

.ai-image-card .card-body{
  padding: 15px !important;
}
.image-content-wrap{
  height: 300px;
  margin-bottom: 15px;
}
.image-content-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-check {
  position: absolute;
  top: 10px;
  right: 10px;
}

.gallery-check input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border-radius: 0.25rem;
  cursor: pointer;
}

.gallery-card{
  position: relative;
  overflow: hidden;
}

.gallery-card:hover .gallery-overlay{
  opacity: 1;
}

.gallery-overlay{
  transition: 0.55s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 9;
}

/* Homepage service showcase */
.service-showcase {
  position: relative;
}

.service-showcase__panel {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 56px clamp(18px, 3vw, 44px);
  border: 1px solid rgba(31, 41, 55, 0.08);
  background:
    radial-gradient(circle at 100% -10%, rgba(255, 176, 95, 0.3) 0%, rgba(255, 176, 95, 0) 48%),
    radial-gradient(circle at -10% 105%, rgba(18, 110, 255, 0.18) 0%, rgba(18, 110, 255, 0) 50%),
    linear-gradient(150deg, #ffffff 0%, #f8fbff 52%, #f2f6ff 100%);
  box-shadow: 0 24px 60px rgba(13, 29, 57, 0.12);
}

.service-showcase__glow {
  position: absolute;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.service-showcase__glow--left {
  left: -90px;
  top: -60px;
  background: radial-gradient(circle, rgba(126, 86, 217, 0.22) 0%, rgba(126, 86, 217, 0) 72%);
}

.service-showcase__glow--right {
  right: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 188, 60, 0.26) 0%, rgba(255, 188, 60, 0) 70%);
}

.service-showcase__header,
.service-showcase__block,
.service-showcase__insight {
  position: relative;
  z-index: 1;
}

.service-showcase__header p {
  max-width: 720px;
  margin: 0 auto;
}

.service-showcase__chips {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.service-showcase__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(127, 86, 217, 0.22);
  background-color: rgba(255, 255, 255, 0.78);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 14px;
}

.service-showcase__chip i {
  color: var(--color-primary);
}

.service-showcase__block {
  border-radius: 30px;
  border: 1px solid rgba(127, 86, 217, 0.14);
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(5px);
  padding: 32px;
}

.service-showcase__block--alt {
  border-color: rgba(18, 110, 255, 0.2);
}

.service-showcase__block-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.service-showcase__block-head h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.service-showcase__kicker {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 86, 217, 0.13) 0%, rgba(255, 188, 60, 0.2) 100%);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
}

.service-showcase .service-slider-one,
.service-showcase .service-slider-two {
  padding: 4px 0 10px;
}

.service-showcase .service-item {
  border-radius: 24px;
  border: 1px solid rgba(127, 86, 217, 0.12);
  background: linear-gradient(170deg, #ffffff 0%, #f8f8fc 100%);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.09);
  padding: 26px;
  margin-bottom: 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-showcase .service-item::before {
  display: none;
}

.service-showcase .service-item:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 86, 217, 0.35);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.14);
}

.service-showcase .service-item__tag {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(127, 86, 217, 0.25);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  padding: 7px 12px;
}

.service-showcase .service-item .image {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background-color: rgba(127, 86, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.service-showcase .service-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-showcase .service-item h4 {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.35;
}

.service-showcase .service-item p {
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-secondary);
}

.service-showcase .service-item .i-btn {
  position: static;
  left: auto;
  bottom: auto;
  margin-top: auto;
}

.service-showcase__insight .service-tab-wrapper {
  border-radius: 30px;
  border: 1px solid rgba(127, 86, 217, 0.14);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 32px;
}

.service-showcase__insight .style-7 .nav-link {
  border-radius: 999px;
  border: 1px solid rgba(127, 86, 217, 0.2);
  background-color: rgba(255, 255, 255, 0.84);
}

.service-showcase__insight .style-7 .nav-link.active {
  border-color: transparent;
}

@media (max-width: 991px) {
  .service-showcase__panel {
    border-radius: 28px;
    padding: 42px 18px;
  }

  .service-showcase__block,
  .service-showcase__insight .service-tab-wrapper {
    border-radius: 20px;
    padding: 24px 16px;
  }

  .service-showcase .service-item {
    padding: 22px;
  }

  .service-showcase .service-item h4 {
    font-size: 22px;
  }
}

/* Homepage escrow listings */
.escrow-listings-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 56px clamp(18px, 3vw, 44px);
  border: 1px solid rgba(20, 29, 41, 0.1);
  background:
    radial-gradient(circle at 105% -10%, rgba(255, 190, 82, 0.35) 0%, rgba(255, 190, 82, 0) 48%),
    radial-gradient(circle at -10% 112%, rgba(0, 133, 255, 0.2) 0%, rgba(0, 133, 255, 0) 52%),
    linear-gradient(160deg, #ffffff 0%, #f6f9ff 54%, #eef4ff 100%);
  box-shadow: 0 24px 56px rgba(13, 29, 57, 0.14);
}

.escrow-listings-wrap::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(127, 86, 217, 0.2) 0%, rgba(127, 86, 217, 0) 72%);
  pointer-events: none;
}

.escrow-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.escrow-metric {
  border-radius: 20px;
  border: 1px solid rgba(127, 86, 217, 0.14);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px 20px;
}

.escrow-metric span {
  display: inline-block;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.escrow-metric h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.7vw, 34px);
}

.escrow-listing-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(127, 86, 217, 0.16);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 255, 0.95) 100%);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.escrow-listing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 86, 217, 0.34);
  box-shadow: 0 16px 34px rgba(13, 29, 57, 0.16);
}

.escrow-listing-card__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.escrow-listing-card__head-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.escrow-listing-card__platform {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background-color: rgba(18, 110, 255, 0.12);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 12px;
}

.escrow-listing-card__status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 10px;
}

.escrow-listing-card__status.is-available {
  background-color: rgba(17, 163, 103, 0.12);
  color: #10885a;
}

.escrow-listing-card__status.is-escrow {
  background-color: rgba(242, 153, 74, 0.16);
  color: #b76f1e;
}

.escrow-listing-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.escrow-listing-card p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  flex-grow: 1;
}

.escrow-listing-card__meta {
  border-top: 1px dashed rgba(127, 86, 217, 0.28);
  border-bottom: 1px dashed rgba(127, 86, 217, 0.28);
  margin-bottom: 16px;
  padding: 12px 0;
}

.escrow-listing-card__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.escrow-listing-card__meta li:last-child {
  margin-bottom: 0;
}

.escrow-listing-card__meta li i {
  color: var(--color-primary);
}

.escrow-listing-card__meta li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.escrow-seller-avatar {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(127, 86, 217, 0.35);
  box-shadow: 0 4px 10px rgba(13, 29, 57, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.escrow-seller-avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(13, 29, 57, 0.2);
}

.escrow-seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.escrow-seller-avatar--empty {
  border-color: rgba(127, 86, 217, 0.28);
  background: linear-gradient(160deg, rgba(127, 86, 217, 0.12) 0%, rgba(18, 110, 255, 0.14) 100%);
  color: rgba(32, 44, 77, 0.82);
}

.escrow-seller-avatar--empty i {
  font-size: 16px;
  line-height: 1;
}

.escrow-listing-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.escrow-listing-card__price small {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 4px;
}

.escrow-listing-card__price h5 {
  margin-bottom: 0;
  font-size: 24px;
}

.escrow-listings-empty {
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(127, 86, 217, 0.38);
  background-color: rgba(255, 255, 255, 0.74);
  padding: 36px 20px;
}

.escrow-listings-empty h5 {
  margin-bottom: 10px;
  font-size: 24px;
}

.escrow-listings-empty p {
  max-width: 580px;
  margin: 0 auto 24px;
}

.escrow-listings-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .escrow-listings-wrap {
    border-radius: 28px;
    padding: 42px 18px;
  }

  .escrow-metrics {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .escrow-listing-card {
    padding: 20px;
  }
}

/* Homepage mobile responsiveness */
@media (max-width: 991px) {
  .service-showcase__block-head h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .service-showcase__insight .style-7 {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 6px;
    margin-bottom: 20px;
  }

  .service-showcase__insight .style-7 .nav-item {
    flex: 0 0 auto;
  }

  .service-showcase__insight .style-7 .nav-link {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 14px;
  }

  .service-showcase__insight .tab-pane img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .service-showcase__header .subtitle {
    font-size: 14px;
  }

  .service-showcase__header h2 {
    font-size: 28px;
  }

  .service-showcase__header p {
    font-size: 15px;
  }

  .service-showcase__chip {
    font-size: 13px;
    padding: 8px 12px;
  }

  .service-showcase .service-item h4 {
    font-size: 20px;
  }

  .service-showcase .service-item p {
    font-size: 14px;
  }

  .escrow-listing-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .escrow-listing-card__head-right {
    width: 100%;
    justify-content: space-between;
  }

  .escrow-listing-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .escrow-listing-card__footer .i-btn {
    width: 100%;
    justify-content: center;
  }

  .escrow-listings-actions .i-btn {
    width: 100%;
    justify-content: center;
  }
}


/* Homepage hero image responsiveness */
@media (max-width: 1199px) {
  .banner-section .banner-wrapper {
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    row-gap: 20px;
  }

  .banner-section .banner-image {
    position: relative;
    inset: auto;
    width: min(100%, 760px);
    margin: 0 auto;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
  }

  .banner-section .banner-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .banner-section .banner-content {
    max-width: 100%;
    margin: 0 auto;
    z-index: 3;
  }
}

@media (max-width: 767px) {
  .banner-section .banner-wrapper {
    padding-bottom: 38px;
    row-gap: 16px;
  }

  .banner-section .banner-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .banner-section .hero-pagination {
    bottom: 14px;
  }
}

/* Reset password password-toggle alignment */
.auth-password-reset .reset-password-form .auth-input > .auth-input-icon {
  top: 28px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}

@media (max-width: 991px) {
  .auth-password-reset .reset-password-form .auth-input > .auth-input-icon {
    top: 25px;
  }
}

@media (max-width: 420px) {
  .auth-password-reset .reset-password-form .auth-input > .auth-input-icon {
    top: 24px;
  }
}
