.tile-container{
    display: grid;
    grid-template-columns: 40vmin 40vmin; 
    grid-template-rows: 40vmin 40vmin;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tile{
    background-color: var(--c-ocean);
    color: var(--c-grey-3);
    width: 35vmin;
    height: 35vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 3.5vmin;
    line-height: 3.75vmin;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
}

.tile:hover{
    color: var(--c-red-munimar);
}

.tile.white{
    background-color: white;
    border: 0.2em solid var(--c-ocean);
}

.tile img{
    max-width: 80%;
    max-height: 80%;
    padding-bottom: 0.5rem;
}

.partner-logo {
    max-width: 100%;
    max-height: 100px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.partner-tile p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #333;
}

.partner-link{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.partner-name {
    width: 100%;
    border-top: 0.1em solid var(--c-ocean);
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    margin-bottom: -0.5rem;
    text-align: center;
}

.partner-country {
    font-size: 0.7rem;
    font-style: italic;
    color: #666;
    text-align: center;
}
