.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: "PT Sans", sans-serif;
    font-size: 3.5vmin;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
}

.tile:hover{
    color: var(--c-brightred-mminesweeper);
}

.partner-tile-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
}

.partner-tile {
    text-align: center;
    padding: 1.5rem;
    border: 0.5px solid #ddd;
    border-radius: 25px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

/* Partner Name */
.partner-name {
    font-size: 1rem; /* Slightly larger font size */
    font-weight: bold; /* Make partner names bold */
    color: #333; /* Dark gray color */
    margin-bottom: -0.3rem; /* Small gap below the name */
    text-align: center; /* Center-align text */
}

/* Partner Country */
.partner-country {
    font-size: 0.7rem; /* Slightly smaller font size */
    font-style: italic; /* Italicize the country name */
    color: #666; /* Lighter gray color */
    text-align: center; /* Center-align text */
}
