body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.box {
    border: 1px solid #4a7bb0;
    padding: 15px;
    width: 320px;
    height: 300px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.img-container {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}
img.zoomed {
    width: 100%;
    height: 220px;
}

.caption {
    font-size: 11px;
    font-weight: bold;
    color: #000;
    margin: 5px 0 0 0;
    text-align: center;
    min-height: 15px;
}