/* #region Top Logo */
#top-logo {
    display: flex;
    justify-content: center;
    padding: 1em 0 0.5em;
    width: 100%;
}

#top-logo img {
    max-width: 520px;
    min-width: 280px;
    width: 60vw;
}

@media only screen and (max-width: 344px) {
    #top-logo img {
        width: 85vw;
    }
}
/* #endregion */

header {
    width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 5vw auto 5vw;
}

main div {
    background-color: #E6E6E6;
    height: 100%;
    max-width: 800px;
}

main div div {
    background-color: white;
    margin: 15px 20px 15px 20px;
    padding: 5px;
}

h2 {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: larger;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-logo {
    height: 3em;
    width: auto;
    vertical-align: middle;
    margin-bottom: 16px;
}

/* #region Team Member Card */
.team-member {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    margin: 10px 0;
    background-color: #f0f0f0;
    border: 2px solid #000;
    border-radius: 5px;
    min-width: 300px;
}

.team-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #000;
    border-radius: 5px;
    flex-shrink: 0;
}

.team-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    text-decoration: underline;
    color: inherit;
    transition: color 0.3s ease;
}

.team-info h3 a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.team-info h3:hover,
.team-info h3 a:hover {
    color: var(--primary-light-color);
}

.team-info p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 430px) {
    .team-thumb {
        width: 60px;
        height: 60px;
    }

    .team-info h3 {
        font-size: 16px;
    }

    .team-info p {
        font-size: 13px;
    }
}
/* #endregion */
