/* 
    * file: products.css
    * author: @TechnicDev
    * description: The styling for the products page
    * version: 1.0.0
*/

.info-banner{
    height: 30rem;
    background-image: url(./images/about-banner.webp);
    background-size: cover;
    background-position: center;
}
.info-banner-logo{
    position: relative;
    margin: auto;
    width: 10rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}
.info-text {
    margin: 0 auto;
    max-width: 60rem;
    position: relative;
    top: -8rem;
    padding: 1rem 3rem;
    border-radius: 3rem;
    background: linear-gradient(180deg, #ff000014, #0000003d);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.info-text > h1{
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
.info-text > p{
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    margin-top: .5rem;
}

.container{
    margin-top: 5rem;
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 10rem;
}
.heading{
    font-size: 2.5rem;
    margin-top: 5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 1rem;
}

.team-card{
    border: .2rem solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 2rem;
    background-color: rgba(65, 65, 65, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
}
.team-card-grid{
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 1.5rem;
}

.team-pfp > img{
    width: 7rem;
    border-radius: 1rem;
}

.team-heading{
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.mt{
    margin-top: .5rem;
}
.team-value{
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
}

.team-badges{
    /* padding: .5rem 1rem 0 1rem; */
    padding-top: .75rem;
}
.team-badge{
    background-color: rgba(255, 255, 255, 0.3);
    padding: .2rem .5rem;
    border-radius: 1rem;
    margin-right: .3rem;
    font-size: .9rem;
    color: #fff;
}