/*-----------------------------------------------------------------
RetroFlow Group - Custom Fixes & Enhancements
-----------------------------------------------------------------*/

/* ========== RESPONSIVE LOGO SWITCHING ========== */
.header-logo .desktop-logo {
    width: 260px;
    height: auto;
    display: block;
}

.header-logo .mobile-logo {
    width: 70px;
    height: auto;
    display: none;
}

@media (max-width: 1199px) {
    .header-logo .desktop-logo {
        display: none;
    }
    
    .header-logo .mobile-logo {
        display: block;
    }
}

/* ========== HERO SECTION - COMPACT HEIGHT + BOTTOM-ALIGNED MASCOT ========== */
/* Ensure hero content clears the absolute-positioned navigation */
.intro-wrapper.style1 {
    padding-top: 200px;
    padding-bottom: 0;
}

/* Prevent Flowy from being cropped on very wide screens - override .fix overflow */
.intro-wrapper.style1.fix {
    overflow: visible;
}

/* Tighten left content area */
.intro-wrapper.style1 .intro-left-part {
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Align hero columns to top so Flowy stays visually aligned with headings */
.intro-wrapper.style1 .container > .row {
    align-items: flex-start;
}

/* Right part: pin Flowy 150px from top of page on desktop */
.intro-wrapper.style1 .intro-right-part {
    position: static;
}

.intro-wrapper.style1 .intro-right-part .thumb {
    position: absolute;
    top: 150px;
    right: 0;
    width: 50%;
    z-index: 10;
    text-align: center;
}

.intro-wrapper.style1 .intro-right-part .thumb .main-thumb {
    display: flex;
    justify-content: center;
}

.intro-wrapper.style1 .intro-right-part .thumb .main-thumb img {
    max-width: 85%;
    max-height: 650px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1399px) {
    .intro-wrapper.style1 .intro-right-part .thumb .main-thumb img {
        max-width: 85%;
        max-height: 650px;
    }
}

@media (max-width: 1199px) {
    .intro-wrapper.style1 {
        padding-top: 120px;
    }
    
    /* Reset Flowy to normal flow on tablet/mobile */
    .intro-wrapper.style1 .intro-right-part .thumb {
        position: static;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .intro-wrapper.style1 {
        padding-top: 100px;
    }
    
    .intro-wrapper.style1 .intro-left-part {
        padding-top: 10px;
        padding-bottom: 30px;
    }
}

/* ========== STRAPLINE STYLING ========== */
.strapline {
    font-size: 1rem;
    font-weight: 600;
    color: #004540;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.85;
}

.strapline-hero {
    font-size: 1.1rem;
    font-weight: 600;
    color: #004540;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #FFE175;
    display: inline-block;
}

.strapline-section {
    font-size: 0.9rem;
    font-weight: 600;
    color: #004540;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}

/* ========== BUS GRANT HIGHLIGHT ========== */
.bus-grant-highlight {
    background: linear-gradient(135deg, #004540, #006B5F);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 69, 64, 0.3);
}

.bus-grant-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 225, 117, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bus-grant-highlight .grant-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #FFE175;
    line-height: 1;
    margin-bottom: 5px;
}

.bus-grant-highlight .grant-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.bus-grant-highlight .grant-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.bus-grant-highlight .grant-badge {
    display: inline-block;
    background: #FFE175;
    color: #004540;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ========== FOOTER NEWSLETTER FORM ========== */
.email-signup {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.email-signup input[type="email"] {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-signup input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-signup input[type="email"]:focus {
    outline: none;
    border-color: var(--theme2);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 225, 117, 0.2);
}

.email-signup button {
    padding: 15px 35px;
    background-color: var(--theme2);
    color: var(--title);
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-signup button:hover {
    background-color: #ffd94d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 225, 117, 0.4);
}

.email-signup button:active {
    transform: translateY(0);
}

/* Newsletter form message styles */
.newsletter-message {
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
    display: none;
    animation: slideDown 0.3s ease;
}

.newsletter-message.success {
    background-color: rgba(212, 237, 218, 0.9);
    color: #155724;
    border-left: 4px solid #28a745;
}

.newsletter-message.error {
    background-color: rgba(248, 215, 218, 0.9);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */
/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--theme);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-to-main:focus {
    top: 0;
}

/* Focus visible improvements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--theme2);
    outline-offset: 2px;
}

/* ========== COLOR CONTRAST FIXES (WCAG 3:1 minimum) ========== */
/* Ensure all text meets minimum 3:1 contrast ratio */

/* Body text - use #333 (12.6:1 on white) instead of lighter grays */
body {
    color: #333333;
}

/* Secondary text - use #595959 (7:1 on white) instead of #666 or #999 */
.text-muted,
.text-secondary,
small,
.small {
    color: #595959 !important;
}

/* Placeholder text - ensure readable */
::placeholder {
    color: #767676 !important; /* 4.54:1 on white - minimum for placeholder */
    opacity: 1;
}

/* Links on dark backgrounds */
.bg-title a,
.footer-section a {
    color: #ffffff;
}

.bg-title a:hover,
.footer-section a:hover {
    color: #FFE175;
}

/* Warning/info boxes text contrast */
.alert-warning,
[style*="background: #fff3cd"],
[style*="background-color: #fff3cd"] {
    color: #664d03 !important; /* 7:1 on #fff3cd */
}

.alert-success,
[style*="background: #d4edda"],
[style*="background-color: #d4edda"] {
    color: #0f5132 !important; /* 7:1 on #d4edda */
}

/* Ensure form labels are readable */
.form-label,
label {
    color: #333333;
}

/* Accordion buttons */
.accordion-button {
    color: #004540 !important;
}

/* Grant cards and funfact cards - ensure text is readable */
.funfact-card p,
.service-card p {
    color: #4a4a4a; /* 7.7:1 on white */
}

/* Footer text contrast */
.footer-section p {
    color: rgba(255, 255, 255, 0.9); /* High contrast on dark bg */
}

/* Trust cards on green background */
.trust-card h4 {
    color: #ffffff !important; /* 10.5:1 on #004540 */
}

/* ========== NAVIGATION HOVER & ACTIVE - GREEN NOT YELLOW ========== */
.main-menu a:hover,
.main-menu a.active {
    color: var(--theme) !important;
}

.main-menu > ul > li > a:hover {
    color: var(--theme) !important;
}

.main-menu ul li.menu-item-has-children > a:hover:after,
.main-menu ul li.menu-item-has-children > a.active:after {
    color: var(--theme) !important;
}

.main-menu ul .sub-menu li a.active,
.main-menu ul .sub-menu li a:hover {
    color: var(--theme) !important;
}

/* Mobile menu hover */
nav.et-menu-wrapper .et-mobile-menu li a:hover {
    background-color: var(--theme) !important;
    color: #fff !important;
    border-color: var(--theme) !important;
}

/* ========== CTA SECTION COLORS ========== */

/* Ensure CTA wrapper text is always white or yellow */
.cta-wrapper,
.cta-wrapper .cta-card,
.cta-wrapper .card-inner,
.cta-wrapper .content {
    color: #ffffff;
}

.cta-wrapper h3,
.cta-wrapper h4,
.cta-wrapper p {
    color: #ffffff !important;
}

.cta-wrapper h3 span,
.cta-wrapper .title-yellow {
    color: #FFE175 !important;
}

.cta-wrapper a:not(.gt-btn) {
    color: #FFE175 !important;
}

.cta-wrapper a:not(.gt-btn):hover {
    color: #ffffff !important;
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
/* Font display swap for better performance */
@font-face {
    font-display: swap;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========== UTILITY CLASSES ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== MOBILE MENU LOGO FIX ========== */
.mobile-menu-logo img {
    width: 150px;
    height: auto;
}

@media (max-width: 575px) {
    .mobile-menu-logo img {
        width: 120px;
    }
}

/* ========== SERVICE CARD SPACING ========== */
.service-card {
    margin-bottom: 20px;
}

/* ========== HIDE HERO IMAGE ON MOBILE ========== */
@media (max-width: 991px) {
    .intro-right-part .main-thumb {
        display: none;
    }
}

/* ========== REMOVE GAPS BETWEEN SECTIONS ========== */
/* Apply consistent background to all content sections */
main > section,
main > div {
    background-color: #f8f9fa;
}

/* Hero/intro sections keep their own styling */
.intro-section,
.intro-area,
.intro-wrapper {
    background-color: transparent;
}

/* Remove extra margins that create white gaps */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Remove top padding when section follows another section */
main > section + section,
main > div + section,
main > section + div,
main > div + div {
    padding-top: 0;
}

/* Keep top padding for sections that follow hero */
.intro-section + section,
.intro-section + div {
    padding-top: 80px;
}

/* Service wrapper inherits background */
.service-wrapper {
    background-color: transparent;
}

/* About wrapper inherits background */
.about-wrapper {
    background-color: transparent;
}

/* Counter section styling */
.counter-section,
.counter-wrapper {
    background-color: transparent;
}

/* Mission section needs the dark green background for white text readability */
.mission-section .counter-wrapper.style1 {
    background: var(--theme, #004540);
    padding: 80px 0;
    border-radius: 0;
}

/* Contact section styling */
.contact-section,
.contact-wrapper {
    background-color: transparent;
}

/* CTA section spacing handled in Design System section below */

/* Remove bottom padding from certifications when followed by footer */
.credentials-section {
    padding-bottom: 40px;
}

/* Ensure consistent background flow */
.section-bg {
    background-color: #f8f9fa !important;
}

/* =================================================================
   DESIGN SYSTEM - Consistency & Visual Hierarchy Fixes
   (Audit findings: spacing, cards, buttons, icons, colors, headings)
   ================================================================= */

/* ========== 1. CONSISTENT SECTION SPACING ========== */
/* Standardize all major sections to 80px top/bottom */
.trust-services-section,
.about-section,
.grants-section,
.how-it-works-section,
.why-retroflow-section,
.benefits-section,
.cost-section,
.faq-section,
.eligibility-services-section,
.core-values-section,
.why-us-section,
.synergy-section,
.eligibility-form-section,
.certifications-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Counter and mission sections (dark bg) get tighter consistent spacing */
.counter-section,
.mission-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* CTA sections */
.cta-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Reduce padding when sections stack on mobile */
@media (max-width: 991px) {
    .trust-services-section,
    .about-section,
    .grants-section,
    .how-it-works-section,
    .why-retroflow-section,
    .benefits-section,
    .cost-section,
    .faq-section,
    .eligibility-services-section,
    .core-values-section,
    .why-us-section,
    .synergy-section,
    .eligibility-form-section,
    .certifications-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* ========== 2. CARD HEIGHT & ALIGNMENT CONSISTENCY ========== */
/* Trust cards (green bg cards) */
.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 69, 64, 0.25);
}

/* Funfact/grant cards */
.funfact-card.style1 {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.funfact-card.style1:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.funfact-card.style1 .card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.funfact-card.style1 h4 {
    margin-bottom: 10px;
}

.funfact-card.style1 ul li {
    padding: 4px 0;
    font-size: 0.95rem;
}

/* Benefit cards */
.benefit-card {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* Service cards */
.service-card.style1 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.style1:hover {
    transform: translateY(-4px);
}

/* ========== 3. BUTTON SIZING & SPACING STANDARDIZATION ========== */
/* All gt-btn variants get consistent padding and font sizing */
.gt-btn {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 14px 32px;
    transition: all 0.3s ease;
}

/* Primary CTA (style2) - slightly larger for hero/main CTAs */
.gt-btn.style2 {
    padding: 14px 32px;
}

/* Header button (style3) */
.gt-btn.style3 {
    padding: 12px 28px;
    font-size: 14px;
}

/* Dark bg button (style4) */
.gt-btn.style4 {
    padding: 14px 32px;
}

/* Ensure consistent icon spacing in buttons */
.gt-btn-icon-1::after,
.gt-btn-icon-2::after,
.gt-btn-icon-3::after {
    margin-left: 8px;
}

/* Button wrapper consistent spacing */
.btn-wrapper {
    margin-top: 25px;
}

/* ========== 4. ICON COLOR PALETTE STANDARDIZATION ========== */
/* 
   Icon Color System:
   - On dark green bg (#004540): Gold/Yellow (#FFE175)
   - On white/light bg: Dark teal (#004540)
   - Success indicators: Green (#28a745)
   - Grant amounts: Dark teal (#004540)
*/

/* Trust card icons (dark bg) - always gold */
.trust-card .icon i {
    color: #FFE175 !important;
}

/* Funfact/grant card icons (light bg) - always dark teal */
.funfact-card .icon i {
    color: #004540 !important;
}

/* Step numbers consistent styling */
.step-number {
    background: #004540 !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

/* ========== 5. ACCENT COLOR (YELLOW/GOLD) CONSISTENCY ========== */
/*
   Yellow/Gold (#FFE175) Usage Rules:
   - Section heading <span> highlights
   - Strapline borders
   - Trust card icons (on dark bg)
   - Grant badges
   - CTA section heading accents
   - Mission statement text
   - Footer strapline
   
   NOT used for: body text, links on light bg, borders on light sections
*/

/* Title accent color consistency */
.title-section.style3 h3 span {
    color: #004540;
}

/* Counter/dark section title accents use yellow */
.counter-wrapper .title-section h3 .title-yellow,
.mission-section .title-section h3 .title-yellow {
    color: #FFE175 !important;
}

/* Mission section - ensure all text readable on dark background */
.mission-section .counter-wrapper.style1 h3 {
    color: #fff !important;
}

.mission-section .counter-wrapper.style1 .sub-title {
    color: rgba(255, 255, 255, 0.8) !important;
}

.mission-section .counter-wrapper.style1 .side-title-wrapper p {
    color: #fff !important;
}

.mission-section .counter-wrapper.style1 .funfact-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.mission-section .counter-wrapper.style1 .funfact-card h4,
.mission-section .counter-wrapper.style1 .funfact-card p {
    color: #fff !important;
}

/* Yellow callout boxes - consistent styling */
.key-stat,
[class*="callout-yellow"] {
    background: #FFE175;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #004540;
}

/* ========== 6. HEADING HIERARCHY CONSISTENCY ========== */
/* 
   Heading Color System:
   h1: #004540 (dark teal) - page titles
   h2: #004540 - section subtitles  
   h3: #1a1a1a (near-black) with span in #004540
   h4: #004540 or #fff (on dark bg)
   h5: #333 or #fff (on dark bg)
*/

/* Page-level headings */
.title-section.style1 h1 {
    color: #004540;
    font-weight: 800;
    letter-spacing: -1px;
}

.title-section.style1 h2 {
    color: #004540;
    font-weight: 700;
}

/* Section headings (style3) */
.title-section.style3 h3 {
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Card headings - consistent weight */
.service-card h4,
.funfact-card h4,
.trust-card h4,
.benefit-card h4 {
    font-weight: 700;
    line-height: 1.3;
}

/* Description text - consistent sizing */
.service-card p,
.funfact-card p,
.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sub-title badges - consistent across all sections */
.sub-title {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.sub-title img {
    width: 20px;
    height: auto;
    margin-right: 6px;
    vertical-align: middle;
}

/* ========== 7. CERTIFICATION SECTION ALIGNMENT ========== */
.certifications-section .certification-logo {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

.certifications-section p {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ========== 8. MOBILE RESPONSIVE REFINEMENTS ========== */
@media (max-width: 767px) {
    /* Smaller headings on mobile */
    .title-section.style1 h1 {
        font-size: 1.75rem;
    }
    
    .title-section.style1 h2 {
        font-size: 1.25rem;
    }
    
    .title-section.style3 h3 {
        font-size: 1.5rem;
    }
    
    /* Strapline smaller on mobile */
    .strapline-hero {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    /* BUS grant highlight responsive */
    .bus-grant-highlight .grant-amount {
        font-size: 2.2rem;
    }
    
    /* Cards need less min-height on mobile */
    .trust-card {
        min-height: 140px;
    }
    
    .funfact-card.style1 {
        min-height: auto;
    }
    
    .benefit-card {
        min-height: auto;
    }
    
    /* Buttons slightly smaller on mobile */
    .gt-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .title-section.style1 h1 {
        font-size: 1.5rem;
    }
    
    .bus-grant-highlight {
        padding: 20px;
    }
    
    .bus-grant-highlight .grant-amount {
        font-size: 1.8rem;
    }
}

/* ========== TECHNOLOGY SHOWCASE - IMAGE PLACEHOLDER CARDS ========== */
/* These cards serve as visual placeholders until product photos are provided.
   To replace with real images:
   1. Add an <img> tag inside .placeholder-inner
   2. Remove the <i> icon element
   3. The card will adapt automatically */

.image-placeholder-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.image-placeholder-card .placeholder-inner {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f3 100%);
    border-bottom: 4px solid #004540;
}

.image-placeholder-card .placeholder-inner i {
    font-size: 60px;
    color: #004540;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder-card .placeholder-inner h4 {
    color: #004540;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.image-placeholder-card .placeholder-inner p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 320px;
}

/* When real images are added, they'll display like this */
.image-placeholder-card .placeholder-inner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .image-placeholder-card .placeholder-inner {
        min-height: 250px;
        padding: 30px 25px;
    }

    .image-placeholder-card .placeholder-inner i {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .image-placeholder-card .placeholder-inner {
        min-height: 200px;
        padding: 25px 20px;
    }

    .image-placeholder-card .placeholder-inner i {
        font-size: 40px;
    }
}
