/* Trust Badges */
.trust-indicators {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-body);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-accent-green);
    stroke-width: 3;
}

/* 3x2 Horizontal Grid Layout (ALWAYS 3 COLUMNS) */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Locks it to 3 columns globally */
    gap: 8px;
}

/* Horizontal Quick Link Cards - CLEAN VERSION */
.ql-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;          
    border: 1px solid var(--color-border);
    border-radius: 4px;          
    background-color: var(--color-bg-white);
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 70px;            
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ql-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* SVG ICON */
.ql-icon {
    width: 24px;                 
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;          
    background: none;
    border-radius: 0;
}

.ql-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-accent-yellow); 
    stroke: none;
}

/* TEXT */
.ql-text {
    font-size: 12px;             
    font-weight: 600;
    color: var(--color-primary-blue);
    line-height: 1.2;
}

/* ==========================================================================
   MOBILE OPTIMIZATION (Shrinks content to fit 3 columns on small screens)
   ========================================================================== */
@media (max-width: 768px) {
    .ql-card {
        padding: 8px 4px; /* Tighter padding for mobile */
        min-height: 60px;
    }
    
    .ql-icon svg {
        width: 20px; /* Slightly smaller icons */
        height: 20px;
    }
    
    .ql-text {
        font-size: 10px; /* Smaller text so 3 columns fit side-by-side */
    }
    
    .quick-links-grid {
        gap: 6px; /* Slightly smaller gap between boxes */
    }
}