/* Container to allow the wrapper to rotate freely without cutting off bounds easily */
.polaroid-container-25a383b0 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.polaroid-wrapper-25a383b0 {
    display: inline-block;
    background-color: #fff;
    padding: 15px 15px 50px 15px; /* Larger bottom padding for Polaroid effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    max-width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid-wrapper-25a383b0:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.polaroid-image-frame-25a383b0 {
    width: 100%;
    overflow: hidden;
    background-color: #f8f8f8; /* fallback behind image */
    border: 1px solid #eaeaea; /* subtle inner border */
}

.polaroid-img-25a383b0 {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.polaroid-caption-25a383b0 {
    text-align: center;
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
    /* Optional cursive style fallback */
    font-family: 'Caveat', 'Comic Sans MS', cursive, sans-serif; 
}