/* Link support */
.image-info-text-link {
    width: 100%;
    height: 100%;
    display: flex;
}

.image-info-text-link:hover {
    text-decoration: none;
}

.image-info-text-widget {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0px 15px 5px rgb(0 0 0 / 7%);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-info-image {
    width: 100%;
    height: 60%;
    padding: 15px 15px 0 15px;
}


.image-info-image img {
    object-fit: cover;
    height: 100%;
    aspect-ratio: 1;
    width: 100%;
    object-position: center;
    border-radius: 15px 15px 0 0;
}

.image-info-content {
    background: #ffffff;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: -10%;
    border-radius: 20px 20px 0 0;
    transition: all 0.3s ease;
}

.image-info-title {
    font-size: 18px;
    font-family: 'EuropaBold', sans-serif;
    color: #464646;
    margin: 0;
    font-weight: bold;
    transition: color 0.3s ease;
}

.image-info-price {
    font-family: 'EuropaBold', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2e4d;
    margin: 0;
    transition: color 0.3s ease;
}

.image-info-price:before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #cfcfcf;
    margin: 5px auto;
    margin-bottom: 15px;
}

.image-info-desc {
    font-family: 'EuropaRegular', sans-serif;
    font-size: 14px;
    color: #464646;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .image-info-content {
        padding: 12px;
    }
    
    .image-info-title {
        font-size: 16px;
    }
    
    .image-info-price {
        font-size: 14px;
    }
    
    .image-info-desc {
        font-size: 13px;
    }
}
