.item{
    display: flex;
    justify-content: space-between;
}

.item .content{
    width: 100%;
    padding: 0em 0em 0em 2em; 
}

.result-image {
    display: flex; 
    justify-content: center;
    align-items: center; 
    padding: 0em 0em 0em 2em; 
}

.image-content {
    width: auto;
    height: auto;
    border-radius: 0.5em;
    max-width: 12.5em;
    max-height: 12.5em;
}

.header-container {
    display: flex;
    align-items: center; 
    gap: 1em; 
    width: 100%;    
}

.header-link {
    font-weight: 600;
    text-decoration: none;
    color: black;
    font-size: 1.5em;
}


.see-more-container {
    display: flex; 
    justify-content: flex-end; 
    width: 100%; 
}

.see-more-link {
    text-decoration: underline;
    color: #0056b3; 
    transition: color 0.3s ease;
}

.see-more-link:hover {
    color: #003f7d; 
    text-decoration: underline;
}



/* Media query for tablets */
@media (width <= 1000px) {

}

@media (width <= 600px) {
    .item{
        flex-direction: column;
    }
}

/* Media query for mobile devices */
@media (width <=  480px) {
    .image-content {
        max-width: 9.375em;
        max-height: 9.375em;
    }
    .result-image {
        padding: 0em 0em 0em 0em; 
    }
    .item .content{
        padding: 0em 0em 0em 0em; 
    }
}