@charset "UTF-8";

nav.types_of_projects {
    display: block;
    width: 100%;
    height: fit-content;
    margin: 0 auto;
}

nav.types_of_projects > button {
    width: fit-content;
    height: fit-content;
    color: black;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    margin: 10px;
    padding: 10px;
    background-color: rgb(248, 248, 248);
    border: rgb(148, 148, 148) solid thin;
    text-transform: uppercase;
    min-height: 40px;
}

button:focus {
    outline: revert;
}

hr {
    float: left;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-bottom-width: 0;
    clear: both;
}

hr:first-of-type {
    border-top: 1px solid grey;
    margin: 10px 0 30px 0;
}

article {
    width: calc(100% - 40px);
    height: fit-content;
    min-height: 200px;
    filter: drop-shadow(1px 1px 2px #666);
    clear: both;
    margin-bottom: 30px;
    padding: 20px;
}

article:nth-child(even) {
    background-color: white;
}

article:nth-child(odd) {
    background-color: white;
}

article > img.no_pic {
    float:inline-start;
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    background: rgb(248, 248, 248) url("../images/no_pic.webp") no-repeat center center;
    background-size: 82%;
    border:rgb(255, 254, 254) solid thin;
    margin-right: 20px;
}

article > h1.subject {
    display:inline-block;
    text-align: left;
    margin-top: 0;
    padding: 10px 10px 20px 0;
    line-height: 150%;
}

article > time.published_date {
    display:inline-block;
    text-align: right;
    padding: 15px 2px 30px 0;
    font-size: 0.8rem;
    font-weight: bold;
}

article > span.tag {
    float:inline-end;
    width: fit-content;
    height: fit-content;
    padding: 5px 10px 10px 10px;
    font-size: 0.7rem;
    background-color: black;
    color: white;
    margin: 0 5px 20px 0;
    text-transform: uppercase;
    vertical-align: text-bottom;
    min-height: 14px;
}

i.material-symbols-outlined {
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
    line-height: normal;
}

.types_of_projects > button > span.material-symbols-outlined {
    font-size: 1rem;
    padding: 0;
    margin: 0;
    line-height: normal;
}

article > p {
    line-height: 2rem;
    text-align: justify;
    word-wrap: normal;
    word-break: keep-all;
    display: list-item;
    list-style: none;
}

a.read_more {
    color: seagreen;
    line-height: 2rem;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0;
    text-transform: uppercase;
    display: list-item;
    list-style: none;
    text-align: right;
}

a.read_more:hover {
    text-decoration: underline;
}

button.more_views{
    position: relative;
    z-index: 50;
    left: 0;
    width: 50px;
    height: 50px;
    display: block;
    background: transparent url("../images/icons/arrow_down.webp") no-repeat center center;
    background-size: 36px;
    cursor: pointer;
    margin: 0 auto;
    border-color: transparent;
}