.rts-about-container {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.rts-about-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.rts-about-col {
  flex: 1 0 300px;
  max-width: 50%;
  padding: 15px;
  box-sizing: border-box; 
}

.rts-about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  transition: box-shadow 0.3s ease, transform 0.3s ease; 
    margin-bottom: 50px;
}

.rts-about-img {
  width: 100%; 
  height: auto; 
  display: block;
  transition: transform 0.5s ease; 
}

.rts-about-image-link {
  display: block;
  position: relative;
}

.rts-about-image-link::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid #FFF;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.rts-about-image-link:hover .rts-about-img {
  transform: scale(1.1);
}

.rts-about-image-link:hover::before {
  opacity: 1; 
  transform: scale(1);
}

.rts-about-image-wrapper:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); 
  transform: scale(1.02); 
}

@media (max-width: 768px) {
  .rts-about-col {
    flex-basis: 100%;
    max-width: 100%;
  }
}