@charset "utf-8";
.lastest-photo .lat-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s
ease-in-out;
}

.lastest-photo .lat-pic {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.lastest-photo .lat-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lastest-photo .lat_info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}