/* Copy all the CSS from your original HTML file here */
/* I've included a condensed version for brevity */

:root {
    --primary: #20B2AA;
    --primary-dark: #1a8f89;
    /* ... all your CSS variables ... */
}

/* ... all your CSS styles ... */

/* WordPress-specific adjustments */
.tool-card .tool-excerpt {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: center;
    flex-grow: 1;
}

/* Ensure compatibility with WordPress admin bar */
.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}