/**
 * Sponsors Page specific styles
 */


.image-grid {
   align-items: stretch; 
}


.image-grid figure {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    margin: 0;
    position: relative;
}

.image-grid figure a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.image-grid figure:hover,
.image-grid figure:focus-within {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.28);
}

.image-grid figure a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    margin-bottom: 14px;
    width: 100%;
}

.image-grid figure img {
    max-height: 64px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.image-grid figcaption {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
}



/**
 * Sponsorship Levels
 */

.sponsorship-levels .wp-block-column:last-child p {
    font-weight: 700;
    font-size: 1.1rem;
    color: #f5c518;
    white-space: nowrap;
    text-align: right;
    margin: 0;
}

.sponsorship-levels .wp-block-column:first-child p {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.sponsorship-levels ul.wp-block-list {
    list-style: none;
    margin: 0;
    margin-top: 10px;
    padding: 0;
}

.sponsorship-levels ul.wp-block-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1px;
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 1;
    text-align: left;
}

.sponsorship-levels ul.wp-block-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #7ac142;
    font-weight: 700;
}

.sponsorship-levels .wp-block-group{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2); 
}
.sponsorship-levels .wp-block-group:last-child{border-bottom: none;}

@media (max-width: 781px) {
    .sponsorship-levels .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 40% !important;
    }
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}