/* ═══════════════════════════════════════
   MAGICTRIP — Image Placeholders
   Replace these with real images later
   ═══════════════════════════════════════ */

.img-placeholder {
    background: var(--c-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-round {
    border-radius: 50%;
    overflow: hidden;
}
.img-card {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.img-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.img-feature {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.img-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.img-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
}
