/* Single Picture Widget — 488 */

.dp-488-item {
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dp-488-item a {
    display: block;
    overflow: hidden;
    border-radius: inherit;
}

.dp-488-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.dp-488-item a:hover img {
    transform: scale(1.04);
}

.dp-488-caption {
    margin: 10px 0 0;
    font-size: 14px;
    color: #444444;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .dp-488-item img {
        height: 260px;
    }
}
