/* public/js/front/components/Lendpromarketing.css
   Extracted verbatim from the <style scoped> block in
   resources/js/index/components/Lendpromarketing.vue. Scoping dropped (no SFC scoping in the
   CDN build) — link it from the Blade layout head, e.g.
   <link rel="stylesheet" href="/js/front/components/Lendpromarketing.css"> */
.add_img {
    position: relative;
    width: 100%;
    aspect-ratio: 8 / 1;
    border-radius: 15px;
    overflow: hidden;
}

.add_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* ensures correct scaling */
}

@media (max-width: 767px) {
    .add_img {
        aspect-ratio: 1 / 3.748;
    }
}
