/* ============================================
   POLAROID-CARD.CSS — Styles for polaroid card
   ============================================ */

.comp-polaroid {
    background: #fefefe;
    border-radius: 4px;
    padding: 12px 12px 40px 12px;
    position: relative;
    transition: transform 0.3s;
}

.comp-polaroid-frame {
    overflow: hidden;
    border-radius: 2px;
    background: #111;
}

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

.comp-polaroid-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 28px;
    background: linear-gradient(135deg, #1a1a2e, #2d1b69);
}

.comp-polaroid-caption {
    position: absolute;
    bottom: 8px;
    left: 12px;
    right: 12px;
    text-align: center;
    font-size: 11px;
    color: #555;
    font-family: 'Segoe UI', system-ui, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
