/* Wrapper */
.ibm-brandlist-wrapper {
    margin: 25px 0;
}

/* UL reset */
.ibm-brandlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each item */
.ibm-brandlist-item {
    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* Top row: logo on left, name+stars on right */
.ibm-brandlist-top {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

/* Name + stars column */
.ibm-brandlist-name-stars {
    display: flex;
    flex-direction: column;
}

/* Brand name */
.ibm-brandlist-name-stars b u {
    font-size: 19px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

/* Stars */
.ibm-brandlist-stars {
    font-size: 18px;
    color: #fcc50a;
}

/* Logo */
.ibm-brandlist-logo {
    flex: 0 0 auto;
    align-self: center;
}

.ibm-brandlist-logo img {
    width: 160px;   /* bigger */
    height: auto;
    display: block;
}

/* Description */
.ibm-brandlist-item > p {
    margin: 0 0 14px 0;
    line-height: 1.48;
    font-size: 15px;
    color: #333;
}

/* Buttons */
.ibm-brandlist-buttons a {
    display: inline-block;
    padding: 10px 22px;
    background: #0023a7;
    color: #fff !important;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s;
    font-weight: 600;
    margin-right: 10px;
}

.ibm-brandlist-buttons a:hover {
    background: #fcc50a;
    color: #000 !important;
}

/* Mobile */
@media (max-width: 600px) {
    .ibm-brandlist-top {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 12px;
        margin-bottom: 10px;
    }

    .ibm-brandlist-name-stars {
        flex: 1;
    }

    .ibm-brandlist-logo {
        flex: 0 0 auto;
    }

    .ibm-brandlist-logo img {
        width: 110px;
    }

    .ibm-brandlist-buttons a {
        padding: 9px 18px;
        font-size: 14px;
    }
}