.msgs-wrap {
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2.25rem) 0 clamp(2rem, 2.8vw, 3rem);
}

.msgs-title {
  margin: 0 0 1.5rem;
  text-align: right;
  font-size: 34px !important;
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif;
  color: #616966;
  font-weight: 400;
  line-height: 1.15;
}

.msgs-slider {
  position: relative;
}

.msgs-slides {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f2f2f2;
}

.msgs-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.msgs-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.msgs-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.msgs-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: stretch;
  background: #fff;
  z-index: 3;
}

.msgs-nav-btn {
  appearance: none;
  border: 0;
  background: #fff;
  color: #ed8024;
  width: 56px;
  height: 56px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, color .2s ease;
}

.msgs-nav-btn + .msgs-nav-btn {
  border-left: 1px solid #e6e6e6;
}

.msgs-nav-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.msgs-nav-btn:hover {
  background: #ed8024;
  color: #fff;
}

@media (max-width: 980px) {
  .msgs-title {
    font-size: 28px !important;
    text-align: left;
  }

  .msgs-nav {
    right: 0;
    bottom: 0;
  }

  .msgs-slides { aspect-ratio: 3 / 2; }
}
