/**
 * StylingCV Blocks - Unified CSS Components
 * This file contains shared styles for all StylingCV shortcode blocks
 * 
 * @version 1.0.0
 * @package StylingCV
 */

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */

:root {
    /* ===========================================
       INTELLI STYLINGCV BRAND COLORS 2026
       Based on Brand Identity Manual v2.0
       =========================================== */

    /* Primary Teal Family */
    --scv-teal-primary: #268599;
    --scv-teal-bright: #2e8c9c;
    --scv-teal-deep: #155469;
    --scv-teal-green: #239e9b;
    --scv-transitional: #618480;

    /* Secondary Warm Family (Coral/Orange) */
    --scv-coral: #e8885e;
    --scv-coral-warm: #daa579;
    --scv-coral-deep: #cd7858;
    --scv-coral-medium: #996854;

    /* Navy & Dark Family */
    --scv-navy-dark: #16344c;
    --scv-navy-medium: #19384f;
    --scv-navy-slate: #1a3a4f;

    /* Neutral Colors */
    --scv-white: #ffffff;
    --scv-gray-100: #f5f5f5;
    --scv-gray-200: #e5e5e5;
    --scv-gray-300: #d4d4d4;
    --scv-gray-500: #737373;
    --scv-gray-700: #404040;
    --scv-gray-900: #151413;

    /* Semantic Color Mapping (for backward compatibility) */
    --scv-foreground: var(--scv-white);
    --scv-muted: var(--scv-gray-500);
    --scv-primary: var(--scv-teal-primary);
    --scv-accent: var(--scv-coral);
    --scv-background: var(--scv-navy-dark);
    --scv-card: var(--scv-navy-medium);
    --scv-card-semi: rgba(25, 56, 79, 0.6);
    --scv-border: var(--scv-navy-slate);
    --scv-muted-bg: rgba(97, 132, 128, 0.2);

    /* Typography - Intelli StylingCV Brand Fonts */
    --scv-font-heading: "Playfair Display", Georgia, serif;
    --scv-font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --scv-font-arabic: "Tajawal", sans-serif;
    --scv-font-arabic-body: "29LTZaridSansAL", "Tajawal", sans-serif;

    /* Spacing */
    --scv-section-padding: 5rem 0;
    --scv-section-padding-lg: 6rem 0;
    --scv-container-max: 1200px;
    --scv-container-padding: 0 1.5rem;

    /* Border Radius */
    --scv-radius-sm: 0.5rem;
    --scv-radius-md: 0.75rem;
    --scv-radius-lg: 1rem;
    --scv-radius-xl: 1.5rem;
    --scv-radius-full: 9999px;

    /* Shadows */
    --scv-shadow-sm: 0 4px 15px -3px rgba(0, 0, 0, 0.2);
    --scv-shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --scv-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    --scv-shadow-glow-primary: 0 0 20px rgba(38, 133, 153, 0.3);
    --scv-shadow-glow-accent: 0 0 20px rgba(232, 136, 94, 0.3);

    /* Brand Gradients - Teal to Coral via Transitional */
    --scv-gradient-brand: linear-gradient(135deg, var(--scv-teal-primary) 0%, var(--scv-transitional) 50%, var(--scv-coral) 100%);
    --scv-gradient-primary: linear-gradient(135deg, var(--scv-teal-primary), var(--scv-teal-green));
    --scv-gradient-horizontal: linear-gradient(to right, var(--scv-teal-primary), var(--scv-coral));
    --scv-gradient-section: linear-gradient(to bottom, var(--scv-navy-dark), rgba(25, 56, 79, 0.3), var(--scv-navy-dark));

    /* Transitions */
    --scv-transition: all 0.3s ease;
    --scv-transition-slow: all 0.5s ease;
}


/* ============================================
   BASE SECTION STYLES
   ============================================ */

.scv-section {
    padding: var(--scv-section-padding);
    position: relative;
    overflow: hidden;
    color: var(--scv-foreground);
}

.scv-section-lg {
    padding: var(--scv-section-padding-lg);
}

.scv-section-bg {
    position: absolute;
    inset: 0;
    background: var(--scv-gradient-section);
    pointer-events: none;
}

.scv-container {
    max-width: var(--scv-container-max);
    margin: 0 auto;
    padding: var(--scv-container-padding);
    position: relative;
    z-index: 10;
}


/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Section Titles */
.scv-title {
    font-family: var(--scv-font-heading);
    /* font-size: clamp(1.875rem, 4vw, 3rem); */
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--scv-foreground);
    letter-spacing: 1px;
}

.scv-title-lg {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.scv-title-sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Gradient Text */
.scv-text-gradient {
    background: var(--scv-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scv-text-gradient-gold {
    background: linear-gradient(to right, var(--scv-accent), #fbbf24, var(--scv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitles */
.scv-subtitle {
    font-size: 1.125rem;
    color: var(--scv-muted);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Body Text */
.scv-text {
    color: var(--scv-foreground);
}

.scv-text-muted {
    color: var(--scv-muted);
}

.scv-text-primary {
    color: var(--scv-primary);
}

.scv-text-accent {
    color: var(--scv-accent);
}


/* ============================================
   CARDS
   ============================================ */

.scv-card {
    background: var(--scv-card-semi);
    border: 1px solid var(--scv-border);
    border-radius: var(--scv-radius-lg);
    padding: 1.5rem;
    transition: var(--scv-transition);
}

.scv-card:hover {
    border-color: hsla(199, 87%, 48%, 0.3);
    box-shadow: var(--scv-shadow-glow-primary);
}

.scv-card-glass {
    background: hsla(225, 20%, 10%, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--scv-border);
    border-radius: var(--scv-radius-lg);
}

.scv-card-solid {
    background: var(--scv-card);
    border: 1px solid var(--scv-border);
    border-radius: var(--scv-radius-lg);
}


/* ============================================
   BADGES
   ============================================ */

.scv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(199, 87%, 48%, 0.1);
    border: 1px solid hsla(199, 87%, 48%, 0.3);
    border-radius: var(--scv-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--scv-foreground);
    transition: var(--scv-transition);
}

.scv-badge:hover {
    background: hsla(199, 87%, 48%, 0.15);
}

.scv-badge-accent {
    background: hsla(168, 90%, 35%, 0.1);
    border-color: hsla(168, 90%, 35%, 0.3);
}

.scv-badge-muted {
    background: var(--scv-muted-bg);
    border-color: var(--scv-border);
}


/* ============================================
   BUTTONS
   ============================================ */

.scv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--scv-radius-full);
    text-decoration: none;
    transition: var(--scv-transition);
    cursor: pointer;
    border: none;
}

.scv-btn-primary {
    background: var(--scv-gradient-primary);
    color: var(--scv-background);
}

.scv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--scv-shadow-glow-primary);
}

.scv-btn-outline {
    background: transparent;
    border: 1px solid var(--scv-border);
    color: var(--scv-foreground);
}

.scv-btn-outline:hover {
    background: var(--scv-card-semi);
    border-color: var(--scv-primary);
}

.scv-btn-ghost {
    background: transparent;
    color: var(--scv-muted);
}

.scv-btn-ghost:hover {
    color: var(--scv-foreground);
    background: var(--scv-muted-bg);
}

.scv-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.scv-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}


/* ============================================
   ICONS
   ============================================ */

.scv-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.scv-icon-sm {
    width: 1rem;
    height: 1rem;
}

.scv-icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

.scv-icon-xl {
    width: 2rem;
    height: 2rem;
}

.scv-icon-primary {
    color: var(--scv-primary);
}

.scv-icon-accent {
    color: var(--scv-accent);
}

.scv-icon-muted {
    color: var(--scv-muted);
}

/* Icon Containers */
.scv-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(199, 87%, 48%, 0.1);
    border-radius: var(--scv-radius-md);
    color: var(--scv-primary);
}

.scv-icon-box-lg {
    width: 3rem;
    height: 3rem;
}

.scv-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(199, 87%, 48%, 0.1);
    border-radius: 50%;
    color: var(--scv-primary);
}


/* ============================================
   LISTS
   ============================================ */

.scv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scv-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.scv-list-item:not(:last-child) {
    border-bottom: 1px solid hsla(225, 15%, 18%, 0.5);
}

.scv-list-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
}

.scv-list-icon-check {
    color: var(--scv-accent);
}

.scv-list-icon-x {
    color: #ef4444;
}


/* ============================================
   GRIDS
   ============================================ */

.scv-grid {
    display: grid;
    gap: 1.5rem;
}

.scv-grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.scv-grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.scv-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .scv-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scv-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scv-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .scv-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .scv-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ============================================
   HEADER STYLES
   ============================================ */

.scv-header {
    text-align: center;
    margin-bottom: 3rem;
}

.scv-header-left {
    text-align: left;
}


/* ============================================
   PROGRESS BARS
   ============================================ */

.scv-progress {
    width: 100%;
    height: 0.5rem;
    background: var(--scv-muted-bg);
    border-radius: var(--scv-radius-full);
    overflow: hidden;
}

.scv-progress-bar {
    height: 100%;
    background: var(--scv-gradient-horizontal);
    border-radius: var(--scv-radius-full);
    transition: width 1s ease-out;
}

.scv-progress-lg {
    height: 0.75rem;
}


/* ============================================
   STATS / METRICS
   ============================================ */

.scv-stat {
    text-align: center;
}

.scv-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--scv-primary);
}

.scv-stat-label {
    font-size: 0.875rem;
    color: var(--scv-muted);
    margin-top: 0.25rem;
}


/* ============================================
   DIVIDERS
   ============================================ */

.scv-divider {
    height: 1px;
    background: var(--scv-border);
    margin: 1.5rem 0;
}

.scv-divider-vertical {
    width: 1px;
    height: 100%;
    background: var(--scv-border);
}


/* ============================================
   ANIMATIONS
   ============================================ */

.scv-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scv-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scv-animate-delay-1 {
    transition-delay: 0.1s;
}

.scv-animate-delay-2 {
    transition-delay: 0.2s;
}

.scv-animate-delay-3 {
    transition-delay: 0.3s;
}

.scv-animate-delay-4 {
    transition-delay: 0.4s;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Flexbox */
.scv-flex {
    display: flex;
}

.scv-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scv-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scv-flex-col {
    display: flex;
    flex-direction: column;
}

.scv-gap-1 {
    gap: 0.25rem;
}

.scv-gap-2 {
    gap: 0.5rem;
}

.scv-gap-3 {
    gap: 0.75rem;
}

.scv-gap-4 {
    gap: 1rem;
}

.scv-gap-6 {
    gap: 1.5rem;
}

.scv-gap-8 {
    gap: 2rem;
}

/* Text Alignment */
.scv-text-center {
    text-align: center;
}

.scv-text-left {
    text-align: left;
}

.scv-text-right {
    text-align: right;
}

/* Spacing */
.scv-mt-2 {
    margin-top: 0.5rem;
}

.scv-mt-4 {
    margin-top: 1rem;
}

.scv-mt-6 {
    margin-top: 1.5rem;
}

.scv-mt-8 {
    margin-top: 2rem;
}

.scv-mb-2 {
    margin-bottom: 0.5rem;
}

.scv-mb-4 {
    margin-bottom: 1rem;
}

.scv-mb-6 {
    margin-bottom: 1.5rem;
}

.scv-mb-8 {
    margin-bottom: 2rem;
}

/* Max Width */
.scv-max-w-md {
    max-width: 28rem;
}

.scv-max-w-lg {
    max-width: 32rem;
}

.scv-max-w-xl {
    max-width: 36rem;
}

.scv-max-w-2xl {
    max-width: 42rem;
}

.scv-max-w-3xl {
    max-width: 48rem;
}

.scv-max-w-4xl {
    max-width: 56rem;
}

.scv-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Position */
.scv-relative {
    position: relative;
}

.scv-absolute {
    position: absolute;
}

.scv-z-10 {
    z-index: 10;
}

.scv-z-20 {
    z-index: 20;
}


/* ============================================
   RTL SUPPORT
   ============================================ */

[dir="rtl"] .scv-list-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .scv-header-left {
    text-align: right;
}

[dir="rtl"] .scv-text-left {
    text-align: right;
}

[dir="rtl"] .scv-text-right {
    text-align: left;
}

[dir="rtl"] .scv-gradient-horizontal,
[dir="rtl"] .scv-progress-bar {
    background: linear-gradient(to left, var(--scv-primary), var(--scv-accent));
}


/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 767px) {
    .scv-hide-mobile {
        display: none !important;
    }
    
    .scv-section {
        padding: 3rem 0;
    }
    
    .scv-title {
        font-size: 1.75rem;
    }
    
    .scv-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .scv-hide-desktop {
        display: none !important;
    }
}

/* ============================================
   INTELLI STYLINGCV - AI AGENTS SECTION
   ============================================ */

.intelli-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 50%, #0d4f4f 100%);
    padding: 60px 40px;
    border-radius: 24px;
    margin: 48px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.intelli-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 25% 25%, rgba(56, 239, 125, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.intelli-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.intelli-header {
    text-align: center;
    margin-bottom: 40px;
}

.intelli-badge {
    display: inline-block;
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.intelli-title {
    color: white !important;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
}

.intelli-title-gradient {
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intelli-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.intelli-subtitle strong {
    color: #38ef7d;
}

/* Stats Grid */
.intelli-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.intelli-stat {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.intelli-stat-value {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.intelli-stat-value.green {
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intelli-stat-value.purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intelli-stat-value.pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intelli-stat-value.orange {
    background: linear-gradient(135deg, #feca57 0%, #ff9f43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intelli-stat-label {
    color: rgba(255,255,255,0.8);
    margin: 8px 0 0;
    font-size: 14px;
}

/* Infographic Image */
.intelli-image-wrap {
    text-align: center;
    margin: 40px 0;
}

.intelli-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Agents Section Title */
.intelli-agents-title {
    color: white !important;
    text-align: center;
    font-size: 24px;
    margin: 48px 0 32px;
}

/* Agents Grid */
.intelli-agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.intelli-agent {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
}

.intelli-agent.featured {
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.15) 0%, rgba(17, 153, 142, 0.15) 100%);
    border: 2px solid rgba(56, 239, 125, 0.3);
    position: relative;
}

.intelli-agent-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a2e;
}

.intelli-agent-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.intelli-agent-icon {
    font-size: 32px;
}

.intelli-agent-name {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.intelli-agent-name.green {
    color: #38ef7d;
}

.intelli-agent-score {
    color: #38ef7d;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
}

.intelli-agent-score.purple {
    color: #667eea;
}

.intelli-agent-desc {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.intelli-agent.featured .intelli-agent-desc {
    color: rgba(255,255,255,0.85);
}

/* Comparison Section */
.intelli-comparison {
    margin: 48px 0;
}

.intelli-comparison-title {
    color: #1a202c;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px;
}

.intelli-comparison-subtitle {
    color: #4a5568;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.intelli-table-wrap {
    overflow-x: auto;
}

.intelli-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.intelli-table thead tr {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.intelli-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.intelli-table th.center {
    text-align: center;
}

.intelli-table th.highlight {
    background: rgba(56, 239, 125, 0.15);
}

.intelli-table td {
    padding: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.intelli-table tr:last-child td {
    border-bottom: none;
}

.intelli-table tr:nth-child(even) {
    background: #fafbfc;
}

.intelli-table .feature-name {
    font-weight: 600;
    color: #2d3748;
}

.intelli-table .cell-bad {
    text-align: center;
    color: #c53030;
    background: #fff5f5;
}

.intelli-table .cell-ok {
    text-align: center;
    color: #dd6b20;
    background: #fffaf0;
}

.intelli-table .cell-good {
    text-align: center;
    color: #276749;
    background: #f0fff4;
}

.intelli-table .cell-why {
    color: #4a5568;
    font-size: 14px;
}

.intelli-table .cell-value {
    font-weight: 700;
    display: block;
}

.intelli-table .cell-note {
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

/* Takeaway Box */
.intelli-takeaway {
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    padding: 24px 32px;
    border-radius: 16px;
    margin-top: 32px;
    text-align: center;
}

.intelli-takeaway p {
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .intelli-section {
        padding: 40px 20px;
    }

    .intelli-title {
        font-size: 28px;
    }

    .intelli-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .intelli-stat-value {
        font-size: 32px;
    }

    .intelli-agents-grid {
        grid-template-columns: 1fr;
    }

    .intelli-table th,
    .intelli-table td {
        padding: 12px;
        font-size: 14px;
    }
}
