.rdv-card-wrapper {
    margin: 20px ;
  }
  
  .rdv-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
  }
  
  .rdv-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  }
  
  .rdv-image {
    flex: 1 1 40%;
    max-width: 30%;
    overflow: hidden;
  }
  
  .rdv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .rdv-content {
    flex: 1 1 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .rdv-content h2 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: #2a2a2a;
  }
  
  .rdv-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
  }
  
  
  .rdv-cta {
      display: inline-block;
      margin-top: 0.7rem;
      padding: 0.5rem 1rem;
      background-color: #FF00FF;
      color: white;
      border-radius: 6px;
      font-weight: bold;
      transition: background-color 0.2s;
  }
  .rdv-cta:hover {
      background-color: #800180;
  }
  
  @media screen and (max-width: 768px) {
    .rdv-card {
      flex-direction: column;
    }
  
    .rdv-image,
    .rdv-content {
      max-width: 100%;
      flex: none;
    }
  
    .rdv-content {
      padding: 15px;
    }
  }