/* Component — Our Lendors (components/lenders/lenders.php) */

/* Title — DM Serif Display Regular 40, navy, centred (Figma). */
.lenders__title {
    font-family: var(--font-display);
    font-weight: var(--weight-regular);
    font-size: 40px;
    line-height: 1.2;
    color: var(--color-navy-mid);
    text-align: center;
    margin: 0 0 48px;
}

/* 4-column logo grid; each logo centred in its cell. */
.lenders__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px 32px;
    align-items: center;
    justify-items: center;
}
.lenders__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
}
.lenders__logo {
    max-width: 180px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .lenders__grid { grid-template-columns: repeat(3, 1fr); gap: 44px 28px; }
}
@media (max-width: 768px) {
    .lenders__title { font-size: 32px; margin-bottom: 36px; }
    .lenders__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    .lenders__logo { max-width: 140px; max-height: 52px; }
}
