/**
 * Device Pages - Image Card Styling
 * Adds gradient background card to the in-body SEO content image
 * on pages with slug: thikes-kiniton-axesouar-*
 *
 * @since 2026-02-24
 */

/* Target the first image in the SEO content area */
.wpb_text_column .wpb_wrapper > p:first-child > a > img.size-full,
.wpb_text_column .wpb_wrapper > p:first-child > img.size-full {
    background: linear-gradient(135deg, #d6e6f5 0%, #e8eff7 35%, #ffffff 70%);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
