/* 1. GRID MET JOUW FIX (400px) */
.pf-partners-grid-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)) !important; 
    gap: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 30px 0 !important;
    align-items: stretch !important; 
}

/* 2. DE PARTNER KAART */
.pf-partner-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
    color: #333 !important;
    border-bottom: 1px solid #d1d1d1 !important;
    padding-bottom: 50px !important; 
    transition: all 0.3s ease;
}

.pf-partner-card:hover {
    border-bottom-color: #ff5522 !important;
}

/* 3. AFBEELDING: FIX VOOR DUBBELE IMAGE */
.pf-partner-image-wrapper {
    height: 180px !important;
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: transparent !important;
}

.pf-partner-bg-image {
    width: 100% !important;
    height: 100% !important;
    background-size: contain !important; 
    background-repeat: no-repeat !important; /* STOPT HERHALING */
    background-position: center bottom !important; 
    transition: transform 0.4s ease;
}

/* 4. HET PIJLTJE: RECHTS EN OP DE LIJN */
.pf-partner-arrow-wrapper {
    position: absolute !important;
    right: 0 !important;
    bottom: 5px !important;
    font-size: 24px !important;
    color: #1a1a1a !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
}

.pf-partner-card:hover .pf-partner-arrow-wrapper {
    color: #ff5522 !important;
    transform: translateX(5px);
}

/* 5. CONTENT EN TEKST */
.pf-partner-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pf-partner-excerpt {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #444 !important;
    margin-bottom: 10px !important;
}