/* ==========================================================================
   Partner Logos — Category cards with uniform rounded tiles
   ========================================================================== */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.partner-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(60, 80, 50, 0.08);
}

.partner-card-title {
    font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #3B6D11;
    margin: 0 0 8px;
}

.partner-card-rule {
    display: block;
    width: 28px;
    height: 2px;
    background: #639922;
    margin: 0 0 20px;
}

.partner-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.partner-tile {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: #eaf3de;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    text-decoration: none;
}

.partner-tile img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-tile:hover {
    background: #d9e6c3;
}

.partner-tile-placeholder {
    font-size: 10px;
    font-weight: 600;
    color: #27500A;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    .partner-tile {
        width: 96px;
        height: 96px;
        border-radius: 16px;
    }
}
