:root {
    --primary: #E92128;
    --primary-dark: #C8151B;
    --secondary: #1F2937;
    --bg-body: #F3F4F6;
    --bg-card: #FFFFFF;
    --border: #E5E7EB;
    --text-main: #111827;
    --text-muted: #6B7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.5; }
.hidden { display: none !important; }
.text-red { color: var(--primary); }
.text-muted { color: var(--text-muted); font-size: 0.9rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.p-0 { padding: 0 !important; }
.gap-2 { gap: 0.5rem; }
.flex-1 { flex: 1; }

/* Auth */
.auth-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: url('https://images.unsplash.com/photo-1558449028-b53a39d100fc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; }
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); display: flex; align-items: flex-start; justify-content: center; z-index: 10000; padding-top: 50px; }
.auth-card { background: rgba(255, 255, 255, 0.95); padding: 40px; border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); width: 100%; max-width: 400px; backdrop-filter: blur(10px); }
.auth-card h2 { margin-bottom: 5px; font-weight: 800; }
.input-group { margin-top: 15px; }
.input-group input { width: 100%; padding: 12px 15px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Inter'; outline: none; transition: 0.2s; }
.input-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(233, 33, 40, 0.1); }
.auth-switch { font-size: 14px; text-align: center; }
.auth-switch a { color: var(--primary); font-weight: 600; text-decoration: none; }
.error-text { color: var(--primary); font-size: 13px; font-weight: 500; }

/* Buttons */
.btn { display: inline-block; padding: 10px 20px; font-size: 14px; font-weight: 600; text-align: center; border-radius: 8px; border: 1px solid transparent; cursor: pointer; transition: 0.2s; font-family: 'Inter'; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: white; border-color: var(--border); color: var(--text-main); }
.btn-outline:hover { background: #F9FAFB; border-color: #D1D5DB; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-danger { background: white; border-color: #FCA5A5; color: var(--primary); }
.btn-danger:hover { background: #FEF2F2; }

/* Topbar & Navbar */
.topbar-red { background: var(--primary); color: white; padding: 8px 0; font-size: 13px; font-weight: 500; }
.navbar { background: white; border-bottom: 1px solid var(--border); padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.logo-text { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.2s; padding: 5px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-bottom: 2px solid var(--primary); }

/* Tabs */
.tab-content { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Banner */
.hero-banner { background: linear-gradient(90deg, #111827 0%, #374151 100%); border-radius: 16px; padding: 40px; color: white; box-shadow: var(--shadow-md); }
.hero-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }

/* Forms */
.selector-row { display: flex; gap: 20px; }
.select-group { flex: 1; }
.select-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 5px; }
.form-select, .form-control { width: 100%; padding: 10px 15px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Inter'; font-weight: 500; outline: none; background: white; }
.form-select:focus, .form-control:focus { border-color: var(--primary); }

/* Cards & Grid */
.grid-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; }
@media(max-width: 900px) { 
    .grid-layout, .selector-row { grid-template-columns: 1fr; flex-direction: column; } 
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 15px; box-shadow: var(--shadow-md); z-index: 99; border-top: 1px solid var(--border); }
    .nav-links.show-mobile { display: flex; }
    .hidden-desktop { display: block; }
}
.mobile-menu-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }
@media(min-width: 901px) {
    .hidden-desktop { display: none; }
}
.card { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.card-header { padding: 20px; background: #F9FAFB; }
.card-header h3 { font-size: 16px; font-weight: 700; }
.card-body { padding: 20px; }
.border-bottom { border-bottom: 1px solid var(--border); }

/* Status Cards */
.status-cards { display: flex; gap: 10px; }
.status-box { flex: 1; background: #F9FAFB; padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border); }
.status-box p { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: 5px; }
.status-box h4 { font-size: 20px; font-weight: 800; color: var(--text-main); }

/* Controls Grid */
.controls-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.btn-power { padding: 15px; font-size: 16px; font-weight: 800; border-radius: 12px; background: #10B981; color: white; }
.btn-power.off { background: #EF4444; }

/* Table */
.table-responsive { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; text-align: left; }
.table th, .table td { padding: 12px 15px; border-bottom: 1px solid var(--border); font-size: 14px; }
.table th { background: #F9FAFB; font-weight: 600; color: var(--text-muted); }

/* Add Account Form */
.add-account-form { display: flex; gap: 10px; }

/* Loader */
#loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.8); display: flex; justify-content: center; align-items: center; z-index: 1000; }
.spinner { border: 3px solid #E5E7EB; border-top-color: var(--primary); border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast Notification */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: white; border-left: 4px solid var(--primary); padding: 15px 20px; border-radius: 8px; box-shadow: var(--shadow-md); color: var(--text-main); font-weight: 500; font-size: 14px; animation: slideInRight 0.3s ease forwards; display: flex; align-items: center; justify-content: space-between; min-width: 250px; }
.toast.success { border-left-color: #10B981; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

.chart-wrapper { position: relative; height: 300px; width: 100%; }


/* =========================================
   AZDIGI THEME LANDING PAGE (WITH RPAY BUTTONS)
========================================= */
.landing-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
}
.az-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.az-text-center { text-align: center; }
.mt-3 { margin-top: 15px; } .mt-5 { margin-top: 40px; } .mb-5 { margin-bottom: 40px; }
.w-100 { width: 100%; }

/* RPAY Style Buttons */
.btn-rpay-red { background: #ef4444; color: white; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.2s; font-size: 14px; }
.btn-rpay-red:hover { background: #dc2626; }
.btn-rpay-teal { background: #14b8a6; color: white; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.2s; font-size: 14px; }
.btn-rpay-teal:hover { background: #0d9488; }
.btn-rpay-outline { background: #fff; border: 1px solid #e2e8f0; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; color: #475569; cursor: pointer; transition: 0.2s; }
.btn-rpay-outline:hover { background: #f8fafc; }
.btn-rpay-offer { color: #0ea5e9; border: 1px solid #bae6fd; background: #f0f9ff; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.btn-rpay-offer:hover { background: #e0f2fe; }

/* Header */
.az-header { background: #ffffff; border-bottom: 1px solid #f1f5f9; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.az-header-inner { display: flex; justify-content: space-between; align-items: center; }
.az-nav { display: flex; gap: 30px; align-items: center; }
.az-nav > a, .az-dropdown > a { color: #475569; font-weight: 600; font-size: 14px; text-decoration: none; transition: 0.2s; position: relative; }
.az-nav > a:hover, .az-dropdown > a:hover { color: #1a56db; }
.az-nav a span { font-size: 12px; margin-left: 4px; display: inline-block; transform: translateY(-1px); }

/* Dropdown CSS */
.az-dropdown { position: relative; display: inline-block; }
.az-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background-color: #ffffff; min-width: 180px; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); border-radius: 12px; padding: 10px 0; z-index: 100; border: 1px solid #f1f5f9; margin-top: 15px; }
.az-dropdown-menu::before { content: ''; position: absolute; top: -15px; left: 0; width: 100%; height: 15px; } /* bridge gap for hover */
.az-dropdown:hover .az-dropdown-menu { display: flex; flex-direction: column; animation: fadeInDown 0.2s ease forwards; }
.az-dropdown-menu a { color: #475569; padding: 10px 20px; font-weight: 500; font-size: 14px; display: block; white-space: nowrap; transition: all 0.2s ease; border-radius: 0; }
.az-dropdown-menu a:hover { background-color: #f1f5f9; color: #1a56db; padding-left: 24px; }
@keyframes fadeInDown { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }
.az-header-actions { display: flex; align-items: center; gap: 15px; }

/* Hero */
.az-hero { background: #f8fafc; padding: 80px 0; overflow: hidden; position: relative; }
.az-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.az-hero-content { flex: 1; max-width: 600px; }
.az-badge { display: inline-flex; align-items: center; gap: 8px; background: #eff6ff; color: #1a56db; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.az-hero-title { font-size: 48px; font-weight: 900; color: #0f172a; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.az-hero-desc { font-size: 18px; color: #475569; line-height: 1.6; margin-bottom: 30px; }
.az-hero-stats { display: flex; gap: 30px; margin-top: 40px; padding-top: 40px; border-top: 1px solid #e2e8f0; }
.az-hero-stat { display: flex; align-items: center; gap: 12px; }
.az-hero-icon-wrap { width: 40px; height: 40px; background: #ffffff; border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.az-hero-stat strong { display: block; font-size: 15px; color: #0f172a; }
.az-hero-stat span { font-size: 12px; color: #64748b; }

/* Cards (Right) */
.az-hero-cards { flex: 1; position: relative; height: 450px; }
.az-floating-card { position: absolute; background: #ffffff; border-radius: 12px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); padding: 20px; z-index: 2; border: 1px solid #f1f5f9; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.az-floating-card:not(.center-main):hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 40px -10px rgba(0,0,0,0.15); border-color: #e2e8f0; z-index: 5; }
.center-main { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 280px; z-index: 3; box-shadow: 0 25px 50px -12px rgba(26,86,219,0.25); border: 1px solid #e2e8f0; }
.center-main:hover { transform: translate(-50%, calc(-50% - 12px)) scale(1.03); box-shadow: 0 35px 60px -15px rgba(26,86,219,0.4); border-color: #bae6fd; z-index: 6; }
.top-left { top: 10%; left: 0%; width: 180px; }
.top-right { top: 20%; right: 0%; width: 180px; }
.bottom-left { bottom: 10%; left: 5%; width: 180px; }
.bottom-right { bottom: 5%; right: 10%; width: 180px; }
.fc-header { font-size: 12px; font-weight: 600; color: #64748b; display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.fc-value { font-size: 20px; font-weight: 800; color: #0f172a; }
.fc-sub { font-size: 11px; color: #94a3b8; }
.fc-status { font-size: 11px; font-weight: 700; color: #10b981; display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.dot-green { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 3px #d1fae5; }
.fc-subtitle { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #e2e8f0; }
.fc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fc-list li { font-size: 11px; color: #64748b; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.fc-list strong { color: #0f172a; font-size: 12px; }

/* Sections */
.az-section { padding: 80px 0; }
.az-bg-white { background: #ffffff; }
.az-bg-light { background: #f8fafc; }
.az-category { font-size: 12px; font-weight: 800; color: #1a56db; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.az-section-title { font-size: 32px; font-weight: 800; color: #0f172a; margin-bottom: 20px; letter-spacing: -0.5px; }
.az-section-subtitle { font-size: 16px; color: #475569; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* Split */
.az-features-split { display: flex; gap: 50px; align-items: center; margin-top: 50px; }
.az-features-list { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.az-feature-item { display: flex; gap: 20px; }
.az-feature-icon { width: 50px; height: 50px; flex-shrink: 0; background: #eff6ff; color: #1a56db; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.az-feature-text h4 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.az-feature-text p { font-size: 14px; color: #475569; line-height: 1.6; }
.az-features-diagram { flex: 1; }

/* Diagram */
.az-features-diagram { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.az-diagram-center { position: absolute; z-index: 2; }
.az-logo-circle { width: 100px; height: 100px; background: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(26,86,219,0.15); border: 2px solid #eff6ff; }
.az-diagram-nodes { width: 100%; height: 100%; position: relative; }
.az-diagram-nodes .node { position: absolute; background: #ffffff; padding: 10px 20px; border-radius: 8px; border: 1px solid #e2e8f0; font-size: 12px; font-weight: 600; color: #0f172a; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.az-diagram-nodes .top-left { top: 20%; left: 10%; }
.az-diagram-nodes .top-right { top: 20%; right: 10%; }
.az-diagram-nodes .left { top: 50%; left: 0; transform: translateY(-50%); }
.az-diagram-nodes .right { top: 50%; right: 0; transform: translateY(-50%); }
.az-diagram-nodes .bottom-left { bottom: 20%; left: 10%; }
.az-diagram-nodes .bottom-right { bottom: 20%; right: 10%; }

/* Diagram Animated Lines */
.az-diagram-lines { pointer-events: none; }
.anim-line { stroke-dasharray: 40 150; animation: diagFlow 2.5s linear infinite; }
@keyframes diagFlow { from { stroke-dashoffset: 190; } to { stroke-dashoffset: 0; } }

/* Steps */
.az-steps { display: flex; justify-content: space-between; position: relative; max-width: 600px; margin: 40px auto 0; }
.az-step-line { position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 1; transform: translateY(-50%); }
.az-step-circle { width: 40px; height: 40px; background: #1a56db; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; position: relative; z-index: 2; border: 4px solid #ffffff; box-sizing: content-box; }

/* Grid Headings */
.az-grid-heading { font-size: 20px; font-weight: 700; margin-bottom: 5px; color: #0f172a; display: flex; align-items: center; gap: 10px; }
.az-grid-subheading { font-size: 14px; color: #475569; margin-bottom: 30px; }

/* Services Grid */
.az-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.az-service-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 25px; transition: 0.2s; cursor: pointer; }
.az-service-card:hover { border-color: #1a56db; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-3px); }
.az-service-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.az-service-icon { width: 32px; height: 32px; background: #eff6ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.az-service-card h4 { font-size: 15px; font-weight: 700; color: #0f172a; display: flex; align-items: center; justify-content: space-between; width: 100%; margin-left: 10px; margin-top: 0; margin-bottom: 0; }
.az-service-card p { font-size: 13px; color: #475569; line-height: 1.5; margin: 0; margin-top: 10px; }
.az-service-card .arrow { color: #94a3b8; transition: 0.2s; }
.az-service-card:hover .arrow { color: #1a56db; transform: translateX(3px); }

/* Audience Grid */
.az-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.az-audience-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 30px 25px; text-align: center; }
.az-audience-icon { width: 48px; height: 48px; background: #eff6ff; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.az-audience-card h4 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 10px; margin-top: 0; }
.az-audience-card p { font-size: 13px; color: #475569; line-height: 1.6; margin: 0; }

/* Testimonials */
.az-testimonials-wrapper { overflow: hidden; white-space: nowrap; width: 100%; padding: 20px 0; position: relative; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.az-testimonials-track { display: flex; gap: 30px; width: max-content; animation: marquee 35s linear infinite; }
.az-testimonials-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 15px)); } }
.az-testimonial-card { white-space: normal; flex: 0 0 auto; width: 350px; background: #ffffff; border-radius: 12px; padding: 25px; border: 1px solid #f1f5f9; box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05); transition: transform 0.3s; }
.az-testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: #e2e8f0; }
.az-stars { color: #f59e0b; margin-bottom: 12px; font-size: 14px; display: flex; gap: 2px; }
.az-testimonial-card p { font-size: 14px; color: #475569; line-height: 1.6; font-style: italic; margin-bottom: 25px; }
.az-user { display: flex; align-items: center; gap: 12px; }
.az-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; background: #e2e8f0; display: flex; align-items: center; justify-content: center; font-size: 20px; overflow: hidden; }
.az-user-info strong { display: block; font-size: 15px; color: #0f172a; }
.az-user-info span { font-size: 13px; color: #64748b; }

/* Footer */
.az-footer { background: #0f172a; color: #94a3b8; padding: 30px 0; text-align: center; font-size: 14px; }

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .hidden-mobile { display: none !important; }
    .az-header-inner { justify-content: center; position: relative; }
    .az-logo { position: absolute; left: 15px; }
    .az-header-actions { margin-left: auto; }
    .btn-rpay-outline { display: none; } /* Hide secondary button on mobile header to save space */
    
    .az-hero-inner { flex-direction: column; text-align: center; gap: 30px; }
    .az-hero-content { align-items: center; display: flex; flex-direction: column; }
    .az-hero-title { font-size: 32px; }
    .az-hero-desc { font-size: 15px; }
    .az-hero-stats { flex-direction: column; align-items: center; gap: 15px; padding-top: 20px; margin-top: 20px; }
    
    .az-hero-cards { height: 250px; width: 100%; }
    .az-floating-card:not(.center-main) { display: none; }
    .center-main { width: 90%; max-width: 320px; }
    
    .az-section { padding: 40px 0; }
    .az-section-title { font-size: 24px; }
    .az-section-subtitle { font-size: 14px; }
    
    .az-features-split { flex-direction: column; }
    .az-features-diagram { display: none; } /* Hide complex diagram on small screens */
    
    .az-audience-grid { grid-template-columns: 1fr; }
    
    .az-testimonials-wrapper { margin: 0 -15px; width: calc(100% + 30px); padding: 20px 15px; }
    .az-testimonial-card { width: 280px; padding: 20px; }
}

