/* ====================
WORK SAMPLES WITH CAPTIONS (side-by-side image pairs)
==================== */
.two-images {
display: flex;
justify-content: center;
gap: 3px;
margin-bottom: 2px;
flex-wrap: nowrap;
}

.image-block {
max-width: 540px;
margin: 4px;
}

.image-block img {
width: 100%;
height: auto;
display: block;
}

.caption {
margin-top: 4px;
width: 100%;
}

.caption img {
width: 100%;
max-width: 540px;
height: auto;
filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9)) 
drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

.caption-link img:hover {
transform: scale(1.05);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ====================
LARGE / ROUNDED IMAGES
==================== */
.large-image {
max-width: 1000px;
width: 100%;
margin: 0 auto;
padding-top: 10px;
padding-bottom: 8px;
}

.large-image img {
width: 100%;
max-width: 100%;
height: auto;
display: block;
}

.rounded-image {
display: block;
max-width: 100%;
height: auto;
border: 3.25px solid #000;
border-radius: 20px;
overflow: hidden;
filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9))
drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

/* ====================
MOBILE RESPONSIVE
==================== */
@media (max-width: 768px) {

.two-images {
flex-direction: column;
align-items: center;
}

.image-block {
max-width: 98%;
}

.large-image {
max-width: 98%;
width: 100%;
}

.rounded-image {
display: block;
max-width: 100%;
height: auto;
border: 2px solid #000;
border-radius: 15px;
overflow: hidden;
}
}