/* ImageCard Component Styles */

.image-card-with-actions {
    position: relative;
    border-radius: inherit;
    overflow: hidden;
}

.image-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.image-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image container takes 75% of the height */
.image-container,
.image-placeholder {
    position: relative;
    flex: 0 0 75%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

/* Placeholder styles */
.image-placeholder,
.no-image-placeholder {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.placeholder-text {
    margin-top: 0.5rem;
    text-align: center;
}

/* Footer takes 30% of the height */
.image-card-footer {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
}