
    /* --- 1. FORCE FULL WIDTH BACKGROUND --- */
    .fuji-l1-wrapper-breakout {
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: #fff;
        padding: 60px 0;
        border-bottom: 1px solid #eee;
    }

    /* --- 2. Inner Container --- */
    .fuji-l1-container {
        width: 96%;
        max-width: 1440px; 
        margin: 0 auto;
        box-sizing: border-box;
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
    }

    /* --- 3. CSS GRID LAYOUT (The Robust Fix) --- */
    .fuji-l1-grid {
        display: grid;
        /* Force exactly 3 equal columns */
        grid-template-columns: repeat(3, 1fr); 
        gap: 30px;
        width: 100%;
    }

    /* --- 4. Card Styling --- */
    .fuji-cat-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        text-decoration: none; /* Base state: no underline */
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        height: 100%; /* Ensure all cards are same height */
    }

    .fuji-cat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #ba372a; 
    }

    /* --- 5. Image Area (Square Aspect Ratio) --- */
    .fuji-card-img-wrap {
        width: 100%;
        padding-top: 100%; /* 1:1 Aspect Ratio */
        position: relative;
        background-color: #f9f9f9;
        overflow: hidden;
    }

    .fuji-card-img-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; 
        object-position: center;
        transition: transform 0.5s ease;
        padding: 20px; 
        box-sizing: border-box;
    }

    .fuji-cat-card:hover .fuji-card-img-wrap img {
        transform: scale(1.05); 
    }

    /* --- 6. Content Area --- */
    .fuji-card-content {
        padding: 25px;
        flex: 1; 
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    /* TITLE: Allow Underline on Hover */
    .fuji-card-title {
        font-size: 22px;
        font-weight: 800;
        color: #000;
        margin: 0 0 15px 0;
        line-height: 1.3;
        transition: color 0.3s;
        text-decoration: none; /* Default none */
    }

    .fuji-cat-card:hover .fuji-card-title {
        color: #ba372a;
        text-decoration: underline; /* SHOW Underline on Hover */
    }

    /* DESCRIPTION: NO Underline on Hover */
    .fuji-card-desc {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1; 
        text-decoration: none !important; /* Force NO underline */
    }
    
    .fuji-cat-card:hover .fuji-card-desc {
        text-decoration: none !important; /* Force NO underline */
    }

    /* --- 7. Button --- */
    .fuji-card-btn {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #ba372a;
        border: 1px solid #ba372a;
        padding: 10px 25px;
        border-radius: 4px;
        transition: all 0.3s;
        margin-top: auto; 
        align-self: center;
        text-decoration: none !important;
    }

    .fuji-cat-card:hover .fuji-card-btn {
        background-color: #ba372a;
        color: #fff;
    }

    /* --- 8. Mobile Optimization --- */
    @media (max-width: 900px) {
        .fuji-l1-wrapper-breakout {
            width: 100%;
            margin: 0;
            left: 0;
            right: 0;
            padding: 40px 0;
        }
        
        .fuji-l1-grid {
            /* Switch to 1 Column on Mobile */
            grid-template-columns: 1fr; 
            gap: 20px;
        }
        
        .fuji-card-title {
            font-size: 20px;
        }
    }
