.content-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 2px solid #000;
    padding: 10px 15px;      
    border-radius: 8px;      
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.content-wrapper:hover {
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}
.content-wrapper img {
    max-width: 150px; 
    margin-right: 20px; 
    object-fit: cover;
    border-radius: 8px;
}

.content-wrapper .text-content h2 {
    margin: 10px 0 10px 0; 
    font-size: 1.2rem;
    margin-right: 20px;
 
}

.content-wrapper .text-content p {
    margin: 0;
    color: #000; 
}
