@font-face {
    font-family: un-emanee;
    src: url(../fonts/un-emanee.ttf);
}

.main {
    height: 350px;
    min-height: 350px;
    margin-bottom: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header { padding-top: 3rem; }

.content {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}

.structure--layer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.layer--header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.layer--header h1 { width: max-content; }

.hr {
    display: block;
    flex-grow: 1;
    height: .1rem;
    background-color: rgba(0, 0, 0, 0.205);
}

.admin--profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 3rem;
}

.profiles--profile-card {
    width: min(100%, 300px);
    height: 150px;
    display: flex;
    align-items: flex-end;
}

.profile-card--details {
    background-color: #455565;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 3rem 0 1.5rem 0;
    border-radius: 8px;
    width: 100%;
}

.profile-card--img {
    max-width: 20%;
    border-radius: 100%;
    position: absolute;
    top: -30%;
    box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
}

.profile-card--details span {
    color: white;
}

.details--text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub-text {
    font-size: .8rem;
}