/* ==========================================================================
   /tools — Tools page specific styles
   Extends static-pages.css
   ========================================================================== */

/* Tool tag chips (feature tags on tool cards) */
.tool-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.tool-tag {
    font-size: 0.75rem;
    background: #fbfde8;
    color: #111827;
    padding: 2px 10px;
    border-radius: 10px;
}

/* Photogen showcase visual (dark card) */
.tools-photogen-visual {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}
.tools-photogen-inner {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.tools-photogen-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.tools-photogen-subtitle {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.tools-photogen-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.tools-photogen-badge {
    font-size: 0.7rem;
    background: rgba(204, 234, 74, 0.2);
    color: #111827;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(204, 234, 74, 0.3);
}
.tools-photogen-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(204, 234, 74, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Inline code in tool descriptions */
.tools-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Breadcrumb overrides */
.tools-breadcrumb {
    padding-top: 1.5rem;
}
.tools-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}
.tools-breadcrumb .breadcrumb-item a {
    color: #111827;
    text-decoration: none;
}
.tools-breadcrumb .breadcrumb-item.active {
    color: #6b7280;
}

/* FAQ max-width */
.tools-faq {
    max-width: 800px;
    margin: 0 auto;
}
