.service-media {
    width: 100%;
    height: 100%;
  }
  
.service-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .service-zoom-btn {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    padding: 0;
    min-width: 0;
    min-height: 0;
    border-radius: 6px;
    display: grid;
    place-items: center;
    line-height: 1;
  }

  .service-zoom-btn span {
    font-size: 0.8rem;
    line-height: 1;
  }
  
  .service-modal-dialog {
    width: 80vw;
    max-width: 80vw;
  }
  
.service-img-modal {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    background: #111;
    border-radius: 8px;
  }

@media (max-width: 767.98px) {
  .service-img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .service-zoom-btn {
    display: none;
  }
}
  
