﻿main {
    background: var(--tir-off-white);
}

#data-partners-header {
    text-align: center;
}

    #data-partners-header h1 {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 700;
        margin: 0;
        padding: 2.5rem 0;
        color: white;
    }

#logo-grid {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    #logo-grid > * {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

.logo-grid-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    height: 100%;
    padding: 1rem;
    background-color: white;
    border-radius: 1rem;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

    .logo-grid-card:hover {
        transform: scale(1.02);
    }

    .logo-grid-card > img {
        max-height: 200px;
    }
