
/*
cover image
*/
#cover-img {
    width:      1050px;
    height:     380px;
    color: white;

    text-align:  center;
    font-weight: bold;
    position:    relative;
    z-index:     -5;
}

#cover-back {
    background-image: url("/static/home/img_site/cover/jwst-cloud.jpg");
    position: absolute;
    left:     0;
    top:      0;
    width:    1050px;
    height:   380px;
}

#cover-img .hidden {
    display: none;
}

#cover-img .name {
    font-size:              25px;
    top:                    125px;
    position:               relative; 
}

#cover-img em {
    font-size:              40px;
}

#cover-img .abs {
    font-size:              48px;
    position:               relative;
    top:                    145px;
}
#cover-selector {
    position:   absolute;
    bottom:     5px;
    right:      5px;
}
#cover-selector .item {
    width:  10px;
    height: 10px;
    border-radius: 5px;
    background-color: #888;
    display: inline-block;
    margin:     0 5px;
}

#cover-selector .item:hover, #cover-selector .selected {
    background-color:  #444;
}

#cover-credit {
    position: absolute;
    bottom:    8px;
    left:       0;
    color:  #8c8c8c;
    font-size: 0.8em; 
    width:  100%;
}

#cover-credit .white {
    color:      white;
}

#cover-credit .hid-text {
    display:    none;
    position:   absolute;
    bottom:     15px;
}

#cover-credit:hover .hid-text {
    display:    block;
    font-weight: normal;
}

/*

*/

/*
About and news
*/
#about-news-table {
    display:        table;
}

#about-news-row {
    display:        table-row;
}

#about, #news {
    display:         table-cell;
    vertical-align:  top;
    box-sizing:      border-box;
}

#about {
    margin-right:     0px;
    padding-right:    35px;
}

#news {
    width:            300px;
}

.news-item {
    border-bottom:      1px dotted #5faaffb4;
    margin-bottom:      5px;
    padding-bottom:     5px;
}

.news-title {
    font-style:         italic;
    /*text-shadow:       1px 1px 2px #c6c6c6;*/
}

.news-date {
    font-size:          0.9em;
    text-align:         right;
    margin:             5px 0;
}


/*
people
*/

#people-list .left a:hover, #people-list .right a:hover {
    background-color:  rgba(255, 255, 255, 0);
}

#people-list {
    width:          100%;
    display:        flex;
    flex-wrap:  wrap;
}

#people-list .item {
    width:          350px;
    display:        flex;
    margin-top:     10px;
}

#people-list .left {
    width:          80px;
    height:         85px;
    box-sizing:     border-box;
    font-size:      4.0em;
    color:          red;
    margin-right:   10px;
    

    display: flex;
    align-items: center;
    justify-content: center;
}

#people-list img{
    border-radius:  40px;
    border:         3px solid #5faaffb4;
}
#people-list .right{
    max-width:      255px;
}

#people-list .name {
    font-size:      1.15em;
    font-weight:  bold;
    padding-bottom:  3px;
    margin-bottom:  5px;
    border-bottom:      1px dotted #5faaffb4;
}

#people-list .info {
    color:          #888;
    font-size:      0.8em;
}

#people-list .institution {
    margin-right:   15px;
    margin-left:    2px;
}

#people-list .research-area {
    font-size:       0.8em;
}

#people-list .link {
    display:        flex;
    align-items:    center;
    margin-top:     2px;
}

#people-list .homepage .placeholder {
    width:                          18px;
    height:                         18px;
    background-size:                18px;
    
    display:                        inline-block;
    background-repeat:              no-repeat;
    background-image:               url("/static/home/img_site/icon/home-blue.svg");
}

#people-list .homepage .placeholder:hover {
    background-image:               url("/static/home/img_site/icon/home-darkblue.svg");
}

#people-list .email .placeholder {
    margin-top:                     4px;
    margin-left:                    4px;
    width:                          14px;
    height:                         14px;
    background-size:                14px;
    
    display:                        inline-block;
    background-repeat:              no-repeat;
    background-image:               url("/static/home/img_site/icon/Email-blue.svg");
}

#people-list .email .placeholder:hover {
    background-image:               url("/static/home/img_site/icon/Email-darkblue.svg");
}

#people-list .orcid .placeholder {
    margin-top:                     2px;
    margin-left:                    5px;
    width:                          16px;
    height:                         16px;
    background-size:                16px;
    
    display:                        inline-block;
    background-repeat:              no-repeat;
    background-image:               url("/static/home/img_site/icon/orcid.svg");
}

#people-list .orcid .placeholder:hover {
    transform:                      scale(1.15, 1.15);
}

