.partners-grid-lite-wrapper {
    width: 100%;
    font-family: inherit;
}

.pgl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.pgl-card {
    background-color: #ffffff;
    border: 1px solid #eaddd3; /* Adjusted border color based on image */
    border-radius: 8px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

a.pgl-card.pgl-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-decoration: none;
}

.pgl-initials-wrapper {
    margin-bottom: 12px;
}

.pgl-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.pgl-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f3e5d8;
    color: #b54c00;
    font-weight: 700;
    font-size: 20px;
}

.pgl-title-wrapper {
    width: 100%;
}

.pgl-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
}

.pgl-more-link-wrapper {
    text-align: center;
    margin-top: 15px;
}

.pgl-more-link {
    color: #cc5511;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.pgl-more-link:hover {
    color: #aa4400;
    text-decoration: underline;
}