
.hb3-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--hb-spacing-xxl);
}

.hb3-section-title {
    font-size: var(--hb-font-size-xl);
    font-weight: 600;
    color: var(--hb-text-primary);
    margin: 0;
}

.hb3-see-all-link {
    color: var(--hb-text-secondary);
    text-decoration: none;
    font-size: var(--hb-font-size-base);
    transition: var(--hb-transition-smooth);
}

.hb3-see-all-link:hover {
    color: var(--hb-secondary-color);
    text-decoration: underline;
}


.supplier-card {
    /* Layout */
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    
    margin-top: var(--hb-spacing-section);
    padding-top: 70px !important;
    
    background-color: var(--hb-bg-white);
    border: none;
    border-radius: var(--hb-radius-sm);
}


.hb3-logo-container {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hb3-supplier-logo {
    /* Dimensions */
    width: 110px;
    height: 110px;
    
    border: 4px solid white;
    border-radius: var(--hb-radius-md);
    background-color: white;
    box-shadow: var(--hb-shadow-light);
    
    object-fit: cover;
}


.hb3-company-name {
    font-size: var(--hb-font-size-lg);
    font-weight: 600;
    color: var(--hb-text-primary);
    margin-bottom: var(--hb-spacing-sm);
}

.hb3-company-details {
    font-size: var(--hb-font-size-sm);
    color: var(--hb-text-secondary);
    line-height: 1.4;
}

.hb3-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hb3-card-body-content {
    flex-grow: 1;
}


