body {
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #fafafa;
font-family: sans-serif;
padding: 20px;
box-sizing: border-box;
}

.carte-poche {
display: block;
width: 250px;
}

.conteneur-images {
display: block;
width: 250px;
height: 350px; 
position: relative;
cursor: pointer;
}

.conteneur-images img {
width: 100%;
height: 100%;
object-fit: cover; 
display: block;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.bloc-pivote {
transform: rotate(90deg);

margin: -50px 50px;
}

figcaption {
margin-top: 15px;
font-size: 13.5px;
color: #444444;
text-align: center; 
line-height: 1.4;
word-wrap: break-word; 
min-height: 40px; 
}

.toggle-flip {
display: none; 
}

.image-avant, .image-arriere {
position: absolute;
bottom: 0;
left: 0;
transition: opacity 0.2s ease-in-out;
}

.image-avant {
opacity: 1;
z-index: 2;
}

.image-arriere {
opacity: 0;
z-index: 1;
}

.toggle-flip:checked + .conteneur-images .image-avant {
opacity: 0;
}

.toggle-flip:checked + .conteneur-images .image-arriere {
opacity: 1;
z-index: 2;
}