/* Conference Sponsors (Plugin) */
.conference-sponsors-wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin: 1.5rem 0;
}

.conference-sponsors-wrapper .sponsor-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 6px;
    background: #fafafa;
    transition: .2s ease;
    text-decoration: none;
    color: inherit;
    min-height: 260px; /* adjust as needed */
}

.conference-sponsors-wrapper .sponsor-card:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    background: #fff;
}

/* Center the logo block */
.conference-sponsors-wrapper .sponsor-card .sponsor-thumb,
.conference-sponsors-wrapper .sponsor-card .sponsor-fallback {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.conference-sponsors-wrapper .sponsor-card .sponsor-fallback {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
}

/* Wrapper to center logo vertically */
.conference-sponsors-wrapper .sponsor-card > .sponsor-thumb,
.conference-sponsors-wrapper .sponsor-card > .sponsor-fallback {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sponsorship type pinned at bottom */
.conference-sponsors-wrapper .sponsorship-type {
    text-align: center;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    color: #555;
    margin-top: .5rem;
}
