/* =========================================================================
   Workflow Logos Grid added via Technology Page
   ========================================================================= */

.tech-workflow-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Tighter gap */
    margin-top: 16px;
    justify-content: flex-start;
    align-items: center;
}

.tech-logo-img {
    width: 96px; /* Exactly sized to fit 3 in a row comfortably */
    height: auto;
    object-fit: contain;
    display: block;
}

.tech-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #0A1837;
    margin-left: 0;
    border: 1px solid #D5D9E2;
    border-radius: 8px;
    padding: 8px 12px;
    background-color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1;
}

@media (max-width: 768px) {
    .tech-workflow-logos {
        gap: 6px; /* Slightly tighter gap on mobile to ensure 3-across fit */
    }
    .tech-logo-img {
        width: 88px; /* Slightly smaller to guarantee 3 fit on very thin phone screens */
    }
    .tech-logo-text {
        font-size: 13px;
        width: auto;
        margin-left: 2px;
    }
}
