/* Sponsor section styles */
.sponsorImg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    min-height: 100px;
    background: transparent;
}
.sponsorImg img {
    max-height: 90px;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.sponsor h2 {
    margin-bottom: 0.75em;
}
.sponsor {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}
.sponsor:last-child {
    border-bottom: none;
}
.pmm-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.pmm-link:hover {
    color: #da532c;
    text-decoration: none;
}
@media (max-width: 767px) {
    .sponsorImg {
        height: 75px;
        min-height: 75px;
    }
    .sponsorImg img {
        max-height: 65px;
    }
    .sponsor .btn {
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .sponsorImg {
        height: 60px;
        min-height: 60px;
    }
    .sponsorImg img {
        max-height: 48px;
    }
    .sponsor .btn {
        margin-bottom: 40px;
    }
} 