/* Side-by-Side Logo Layout - FIXED */
.logo-split {
    display: flex;
    flex-direction: row; /* Forces the items to stay side-by-side */
    gap: 2rem;
    margin: 2rem 0;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap; /* Allows text to wrap safely on very tiny screens */
}

.logo-item {
    flex: 1 1 100px; /* Sets a safe base width for the columns */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sub-solution-logo {
    width: 100%;
    max-width: 100px; /* Strictly caps the logo size so they don't blow up */
    height: auto;
    margin-bottom: 0.8rem;
    display: block;
}

.sub-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e0e0e0;
    margin: 0;
}