/* ------Building Info--------*/
#bldg_info {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 
    "note note"
    "img img"
    "info ftnt";
}

#bldg_info_note {
    grid-area: note;
}

#bldg_iso {
    grid-area: img;
    width: 100%;
    max-height: 1000px;
    object-fit: contain;
    display: block; 
}

#bldg_info_tbl {
    grid-area: info;
    justify-self: center;
    align-self: end;
    width: 70%;
}

#bldg_info_ftgs {
    grid-area: ftnt;
    align-self: end;
}



/* -------PH Certifications---- */
.PH_certs_wrapper {
    display: grid;
    grid-template-rows: auto;
}

.PH_cert_type_wrapper{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    margin-top: 20px;
    margin-bottom: 20px;
}

.PH_cert_grid {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
}

.PH_cert_grid_item {
    display: grid; 
    border-width: 1px;
    border-style: dashed;
    border-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    grid-template-areas:
    "title"
    "content"
}

.PH_cert_item_heading{
    grid-area: title;
    margin-block-start: 0.25em;
    margin-block-end: 0.5em;
    overflow: hidden;
    font-size: 1.2em;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.PH_cert_grid_content {
    display: grid;
    grid-area: content;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: 
    "img tble"
    'desc desc'
    "footnotes footnotes";
}

.PH_cert_item_img{
    grid-area: img;
    justify-self: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    background: #f5f5f5;
    z-index: 100;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}

.PH_cert_item_table{
    display: grid;
    grid-area: tble;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}

.PH_cert_description {
    grid-area: desc;
}

.PH_cert_item_footnote {
    display: grid;
    grid-area: footnotes;
}

/* -------Others---- */
.variants_wrapper {
    display: grid;
    grid-template-rows: auto;
}  

.climate_wrapper {
    display: grid;
    grid-template-rows: auto;
}

.per_wrapper {
    display: grid;
    grid-template-rows: auto;
}

#per_illustration{
    justify-self: center;
}

.hc_wrapper{
    display: grid;
    grid-template-rows: auto;
}

.demand_w_wrapper{
    display: grid;
    grid-template-rows: auto;
}

.demand_s_wrapper{
    display: grid;
    grid-template-rows: auto;
}


/* -------Phius---- */
.chart_side_by_side{
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    padding: 10px;
}