.travel-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    width: 160px;
}

.travel-image-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 50%;
    border: var(--tr-primary) solid 2px;
    transition: all 0.5s ease-in;
}

.travel-circle-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.travel-card-item:hover .travel-image-wrapper {
    border: var(--tr-accent-green) solid 2px;
    transition: all 0.5s ease-in;
}

.travel-floating-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background-color: var(--tr-accent-green);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: var(--tr-primary);
    font-size: 14px;
    transition: all 0.5s ease;
}

.travel-card-item:hover .travel-floating-icon {
    background-color: var(--tr-primary);
    color: #ffffff;
    transition: all 0.5s ease-in;
}

.travel-name {
    font-size: 16px;
    font-weight: 700;
    color: #141414;
    margin: 10px 0 2px 0;

    white-space: nowrap;      
    overflow: hidden;          
    text-overflow: ellipsis;   
    max-width: 230px;           
    transition: all 0.3s ease; 
}

.travel-name:hover {
     margin: 0px 0 2px 0;
    white-space: normal;      
    overflow: visible;         
    text-overflow: clip;       
}

.travel-places {
    font-size: 13px;
    font-weight: 900;
    color: var(--tr-second-bk);
    transition: all 0.5s ease-in;
}

.travel-card-item:hover .travel-places {
    color: var(--tr-accent-green);
    transition: all 0.5s ease-in;
}

.travel-info {
    height: 50px;
}

@media (max-width: 768px) {
    .travel-image-wrapper {
        width: 140px;
        height: 140px;
    }

    .travel-name {
        font-size: 15px;
    }

    .travel-places {
        font-size: 12px;
    }
}