/* =================================================================
   SIMPLIFIED OBITUARY CARDS - Image Display Only
   ================================================================= */

/* Obituary Card Container */
.obituary-simple-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.obituary-simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Image Container - Maintains 1240x1748 aspect ratio */
.obituary-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1240 / 1748;
    /* Original image ratio */
    overflow: hidden;
    background: #f5f3ed;
}

.obituary-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows full image without cropping */
    display: block;
}

/* Info Overlay - Appears at bottom */
.obituary-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.obituary-simple-card:hover .obituary-info-overlay {
    transform: translateY(0);
}

/* Placeholder for missing images */
.obituary-placeholder {
    min-height: 400px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .obituary-image-container {
        aspect-ratio: 1240 / 1748;
        /* Keep same ratio on mobile */
    }

    /* Show info overlay by default on mobile */
    .obituary-info-overlay {
        transform: translateY(0);
        position: relative;
    }
}

/* Optional: Add subtle border like the original design */
.obituary-simple-card {
    border: 1px solid #e0e0e0 !important;
}