/* ==========================================================================
   Hometrix Launch Pad: Supplemental Grid & Card Styles
   ========================================================================== */

.launch-pad-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--card-bg, #1a1d23);
    border: 1px solid var(--border-color, #2d333b);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    border-color: var(--hover-border, #444c56);
    background: var(--nav-bg, #161b22);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.tool-card h4 {
    color: var(--text-primary, #e6edf3);
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.tool-card p {
    color: var(--text-secondary, #848d97);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Add these to your launchpad-grid.css */

/* Variant for smaller tools */
.tool-card.compact {
    padding: 1rem;
    flex-direction: row;
    /* Icon/Text horizontal layout */
    align-items: center;
    gap: 1rem;
}

.tool-card.compact h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Strategic Grid: Place tools at the top */
.quick-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}