/* Hero Section Container */
.hero-section {
    padding: 80px 0 40px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Updated to the new primary blue */
    background: radial-gradient(circle at 10% 20%, rgb(27 67 228 / 14%) 0%, rgba(255, 255, 255, 1) 90%);
}

.hero-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 95%;
}

/* Buttons */
.btn-group-custom {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: #1b43e4; /* Primary Color */
    color: #ffffff;
    border: 2px solid #1b43e4;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #1535b8; /* Darker blue shade for hover */
    border-color: #1535b8;
    color: #ffffff;
}

.btn-outline-custom {
    background-color: #ffffff;
    color: #1b43e4; /* Primary Color */
    border: 1px solid #1b43e4;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #f0f4ff; /* Light blue tint for hover */
    color: #1b43e4;
}

/* --- Mobile View Corrections --- */
@media (max-width: 768px) {
    .btn-group-custom {
        flex-direction: row; 
        align-items: flex-start; 
        gap: 20px;
    }

    /* Optional: If you want them to take full width on mobile, change 'fit-content' to '100%' */
    .btn-primary-custom, 
    .btn-outline-custom {
        width: fit-content; 
    }
}

/* Feature List (Ticks) */
.feature-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #4b5563;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-list svg {
    width: 16px;
    height: 16px;
    fill: #102140;
}

/* Right Side Illustration Container */
.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.illustration-img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   TRUSTED SECTION — Rating badge + Logo carousel
   ========================================================================== */
.trusted-section {
    margin-top: 60px;
    text-align: center;
}

.trusted-text {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Row that holds the rating badge + carousel side by side */
.trusted-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
}

/* --- G2 Rating Badge --- */
.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.rating-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.rating-score {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    white-space: nowrap;
}

.rating-stars {
    color: #ff7a00;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.rating-divider {
    width: 1px;
    height: 40px;
    background-color: #d1d5db;
    flex: 0 0 auto;
}

/* --- Logo Carousel --- */
.logo-carousel-wrapper {
    overflow: hidden;
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 0;
    position: relative;
}

/* Gradient mask for smooth fade on edges */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #edf0fde8, transparent);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    /* Animated via JS */
}

.logo-item {
    width: 140px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%) opacity(1);
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .trusted-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .rating-badge {
        order: 1;
    }

    .rating-divider {
        display: none;
    }

    .logo-carousel-wrapper {
        flex: 1 1 100%;
        order: 2;
    }

    .logo-item {
        width: 110px;
        height: 42px;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: calc(1.6rem + 1vw) !important;
    }
    .illustration-container {
        margin-top: 50px;
    }
    .hero-section {
        text-align: center;
        min-height: 90vh;
        padding: 120px 0 0px 0;
    }
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    .btn-group-custom, .feature-list {
        justify-content: center;
    }
}

.btn-group-custom, .feature-list {
    justify-content: left;
}
        
/* --- CTA Section --- */
.cta-section {
    background-color: #ffffff;
    padding-bottom: 80px;
}

.cta-box {
    background-color: #020617; /* Replaced dark purple base with deep blue slate */
    background-image: 
    radial-gradient(at 90% 10%, #476af0 0px, transparent 50%), /* Replaced with lighter blue */
    radial-gradient(at 30% 40%, #0f2785 0px, transparent 60%), /* Replaced with deeper blue */
    radial-gradient(at 0% 100%, #000000 0px, transparent 50%),
    radial-gradient(at 80% 80%, #081547 0px, transparent 50%); /* Replaced with dark navy */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    padding-right: 0px;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.cta-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.cta-btn {
    background-color: #ffffff;
    color: #0b1528;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-btn:hover {
    background-color: #f1f5f9;
    color: #0b1528;
    transform: scale(1.02);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.cta-features li {
    color: #e2e8f0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cta-features svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.cta-illustration-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .stat-number { font-size: 2.2rem; }
    .cta-box { padding: 40px 30px; text-align: center; }
    .cta-features { justify-content: center; }
    .cta-title { font-size: 2rem; }
    .cta-illustration-container { margin-top: 40px; }
}
        
/* Reusable Feature Showcase Styles */
.feature-showcase-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.feature-showcase-title {
    color: #102140;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.feature-showcase-subtitle {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Items List */
.feature-item {
    padding: 24px 30px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.feature-item:hover {
    background-color: #f8fafc;
}

/* Active State */
.feature-item.active {
    background-color: #f4f7fb;
}

.feature-item-title {
    color: #102140;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

h3 .feature-item-title{
    font-size: 1.1rem !important;
}

.feature-item.active .feature-item-title {
    color: #1b43e4; /* Replaced purple */
}

.feature-item-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Image Transition Styles (desktop shared image) */
.feature-showcase-image {
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
}

.feature-showcase-image.fading {
    opacity: 0.2;
}

/* Per-item image, hidden on desktop, shown on mobile */
.feature-item-mobile-image {
    display: none;
    width: 100%;
    border-radius: 12px;
    margin-top: 16px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-showcase-title { font-size: 1.8rem; }
    .feature-item { padding: 20px; cursor: default; }
    .feature-item:hover { background-color: transparent; }

    /* Hide the shared swapping image column on mobile */
    .feature-showcase-image {
        display: none;
    }

    /* Show each item's own image right below its content */
    .feature-item-mobile-image {
        display: block;
    }
    
    .feature-item.active .feature-item-title {
        color: black;
    }

    .feature-item.active{
        background-color:#f4f7fb00;
    }
}

@media (max-width: 768px) {
    .feature-showcase-title { font-size: 1.8rem; }
}

/*card section*/

/* Core Section Styling */
.banking-features-section {
    background-color: #020617; /* Replaced dark purple */
    background-image: 
    radial-gradient(at 90% 10%, #476af0 0px, transparent 50%), /* Lighter blue */
    radial-gradient(at 30% 40%, #0f2785 0px, transparent 60%), /* Deep blue */
    radial-gradient(at 0% 100%, #000000 0px, transparent 50%),
    radial-gradient(at 80% 80%, #081547 0px, transparent 50%); /* Dark navy */
    background-size: 100% 100%;
    background-repeat: no-repeat; /* Keep the background dark */
}

.section-title {
    color: #ffffff; /* White text for contrast on dark bg */
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: #cbd1d9; /* Muted text for the subtitle */
    font-size: 1.1rem;
}

/* Light Card Layout */
.feature-card {
    background: #ffffff; /* Solid light color for the cards */
    border: 1px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Default subtle shadow */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Dark text for inside the light cards */
.card-title {
    color: #1e293b; 
}

.card-text {
    color: #475569; 
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Interactive Hover States */
.feature-card:hover {
    transform: translateY(-8px);
    border-color: #1b43e4; /* Main accent color border on hover */
    box-shadow: 0 12px 32px rgba(27, 67, 228, 0.25); /* Main accent color glow */
}

/* Icon Styling */
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(27, 67, 228, 0.08); /* 8% opacity of #1b43e4 */
    color: #1b43e4; /* Main accent color */
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Invert icon colors on card hover */
.feature-card:hover .icon-wrapper {
    background: #1b43e4; 
    color: #ffffff;
    transform: scale(1.05);
}

/* Link Styling */
.learn-more-link {
    color: #1b43e4; /* Main accent color */
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.learn-more-link:hover {
    color: #0d2170; /* Slightly darker shade of #1b43e4 for hover effect */
    text-decoration: underline;
}

/* Section Background & Container */
.faq-template-section {
    padding: 80px 20px;
}

.faq-template-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-header h2 {
    color: black;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* Individual FAQ Card */
.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* Subtle, clean border for the card */
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* KILLS THE UNPLEASANT BORDER */
.faq-question, 
.faq-question:focus, 
.faq-question:active {
    border: none !important;      /* Overrides any global button borders */
    outline: none !important;     /* Removes the ugly browser focus box */
    box-shadow: none !important;  /* Removes any Bootstrap focus glows */
}

/* The Question Button */
.faq-question {
    width: 100%;
    text-align: left;
    background-color: transparent;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

/* Hover & Active text color */
.faq-question:hover,
.faq-item.active .faq-question {
    color: #1b43e4; /* Replaced purple */
}

/* Font Awesome Icon Base Styling */
.faq-icon {
    font-size: 1.1rem;
    color: #64748b;
    transition: all 0.3s ease; /* Smooth rotation transition */
}

/* When the FAQ is active/open... */
.faq-item.active .faq-icon {
    color: #1b43e4; /* Replaced purple */
    transform: rotate(90deg); /* Optional: spins the icon when clicked */
}

/* CSS trick: Swap the Font Awesome Plus (\f067) to a Minus (\f068) */
.faq-item.active .faq-icon::before {
    content: "\f067"; 
}

/* The Answer Container */
.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out; 
}

.faq-answer-content {
    padding: 0 24px 24px 24px;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
}


/*bread crumb*/
.hero-breadcrumb {
    margin-bottom: 22px;
}
.hero-breadcrumb .breadcrumb {
    margin-bottom: 0;
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 0.9rem;
    align-items: center;
}
.hero-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}
.hero-breadcrumb .breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
}
.hero-breadcrumb .breadcrumb-item a:hover {
    color: #1b43e4; /* Replaced purple */
}
.hero-breadcrumb .breadcrumb-item.active {
    color: #111827;
    font-weight: 500;
}
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-left: 10px;
}
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "";
}
.hero-breadcrumb .breadcrumb-divider {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    font-size: 10px;
    color: #9ca3af;
}
@media (max-width: 576px) {
    .hero-breadcrumb {
        margin-bottom: 14px;
    }
    .hero-breadcrumb .breadcrumb {
        font-size: 0.8rem;
    }
    .hero-breadcrumb .breadcrumb-divider {
        margin: 0 6px;
        font-size: 9px;
    }
}

/* ============================================================
   SECTION 6 — Explore Payroll Features (8-item benefits grid)
   Reference layout: icon square + title + text, divider
   lines between rows, two columns on desktop.
   ============================================================ */
.ihp-benefits-section {
    background-color: #ffffff;
}

.ihp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.ihp-benefit-item--last {
    border-bottom: none;
}

.ihp-benefit-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #1b43e4; /* Replaced purple */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.ihp-benefit-title {
    color: #102140;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.ihp-benefit-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .ihp-benefit-item {
        padding: 18px 4px;
    }
}

/* ============================================================
   SECTION 4 — Getting Started Takes Minutes (steps strip)
   ============================================================ */
.ihp-steps-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.ihp-step {
    flex: 1 1 180px;
    text-align: center;
    padding: 20px 16px;
    position: relative;
}

.ihp-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1b43e4; /* Replaced purple */
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.ihp-step-title {
    color: #102140;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   SECTION 3 — BENEFITS GRID
   (2-column icon list, matches "Why Choose Our Time Attendance Software" ref)
   ========================================================================== */
.benefits-grid-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefits-grid-title {
    color: #102140;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.benefits-grid-subtitle {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 16px;
    border-radius: 12px;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-row:last-child {
    border-bottom: none;
}

.benefit-row:hover,
.benefit-row.active {
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 33, 64, 0.08);
    border-bottom-color: transparent;
}

.benefit-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #2041E2;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.benefit-copy h4 {
    color: #102140;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.benefit-copy p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .benefits-grid-title { font-size: 1.8rem; }
    .benefit-row { padding: 18px 10px; }
}


/* ==========================================================================
   SECTION 4 — "ONE PLATFORM FOR..." BENTO GRID
   (matches "One Platform for Every Leave Process" ref screenshot)
   ========================================================================== */
.platform-bento-section {
    padding: 80px 0;
    background-color: #f5f9ff;
}

.bento-title {
    color: #102140;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.bento-subtitle {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-card {
    grid-column: span 1;
    background-color: #ffffff;
    border: 1px solid #ececf3;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(16, 33, 64, 0.05);
}

/* First two cards take the top row (matches ref: 2 large cards up top) */
.bento-card,
.bento-card-lg {
    grid-column: span 1;
}

.bento-grid::before {
    content: "";
    display: none;
}

/* Force bottom row of 3 equal cards under the top row of 2 */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.bento-grid .bento-card:nth-child(3),
.bento-grid .bento-card:nth-child(4),
.bento-grid .bento-card:nth-child(5) {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Make the large cards span the full 2 columns on tablet so they don't look squished */
    .bento-card-lg {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bento-grid .bento-card-lg {
        grid-column: span 3;
    }
    .bento-grid .bento-card:nth-child(3),
    .bento-grid .bento-card:nth-child(4),
    .bento-grid .bento-card:nth-child(5) {
        grid-column: span 2;
    }
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2041e20a;
    color: #2041e2;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.bento-card h3 {
    color: #102140;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bento-card p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Mini mock widgets inside cards */
.bento-mock {
    background-color: #f8fafc;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 14px 16px;
}

.mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #334155;
    padding: 6px 0;
}

.mock-line-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #334155;
    padding: 6px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.mock-line-row:last-child {
    border-bottom: none;
}

.mock-line-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mock-line-total {
    font-weight: 700;
    color: #102140;
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 auto;
}

.mock-dot-green { background-color: #16a34a; }
.mock-dot-amber { background-color: #d97706; }
.mock-dot-red   { background-color: #dc2626; }
.mock-dot-blue  { background-color: #2563eb; }

.mock-status {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.mock-status-done    { background-color: #dcfce7; color: #15803d; }
.mock-status-pending { background-color: #fef3c7; color: #b45309; }
.mock-status-rejected{ background-color: #fee2e2; color: #b91c1c; }

.bento-mock-notif .mock-notif-row {
    font-size: 0.85rem;
    color: #334155;
    padding: 8px 10px;
    background-color: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 8px;
    margin-bottom: 8px;
}

.bento-mock-notif .mock-notif-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .bento-title { font-size: 1.8rem; }
    .bento-card { padding: 22px; }
}

.bento-img-wrapper img {
    object-fit: contain !important;
    width: 100% !important;
}

