.biodiversity-threats-home{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
    min-height: 100%;
    height: auto;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    gap: 10px;
}

.biodiversity-threats-home h1{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #595959;
    font-weight: bold;
    font-size: 24pt;
    padding: 0;
}

.biodiversity-threats-home p{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #595959;
    font-size: 12pt;
    line-height: 1.5;
    margin: 0;
}

.biodiversity-threats-intro {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.threat-article{
    width: 32%;
    min-height: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #ffffff;    
    padding: 20px;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.threat-poster{
    width: 100%;
    height: 250px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 5px;
}

.threat-poster img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.threat-article h2{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333333;
    font-weight: bold;
    font-size: 18pt;
    margin: 0;
}

.threat-article p{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #555555;
    font-size: 11pt;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.threat-article a{
    width: 100%;
    text-align: right;
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #00697d;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.threat-article a:hover{
    text-decoration: underline;
}

.no-threats {
    width: 100%;
    text-align: center;
    color: #666;
    font-size: 1.1em;
    padding: 40px;
}

.biodiversity-threat-details{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
    min-height: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    gap: 10px;
}

.biodiversity-threat-details h1{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #595959;
    font-weight: bold;
    font-size: 24pt;
    padding: 0;
}

.biodiversity-threat-details-poster{
    margin-bottom: 20px;
    border-radius: 5px;
}

.biodiversity-threat-details-poster img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.biodiversity-threat-details-content{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    font-size: 12pt;
    line-height: 1.6;
    width: 100%;
}

.biodiversity-threat-details-content p{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    margin-bottom: 15px;
}

.biodiversity-threat-details div p,
.biodiversity-threat-details div span,
.biodiversity-threat-details div samp {
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

.biodiversity-threat-details div {
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
}

.biodiversity-threat-details ol {
    padding-left: 50px;
    margin: 20px 0;
}

.biodiversity-threat-details li {
    margin-bottom: 10px;
}

.biodiversity-threat-details a {
    width: 100% !important;
    color: #007cba;
    text-decoration: underline;
}

@media screen and (max-width: 850px) {
    .biodiversity-threats-home{
        padding: 20px;
    }
    .biodiversity-threats-home h1{
        font-size: 17pt;
    }
    .biodiversity-threats-home p{
        font-size: 10pt;
    }

    .biodiversity-threats-intro {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .threat-article{
        width: 100%;
    }
    .threat-article h2{
        font-size: 16pt;
    }
    .biodiversity-threat-details{
        width: 100%;
        padding: 20px;
    }
    .biodiversity-threat-details h1{
        font-size: 17pt;
    }
    .biodiversity-threat-details-content{
        font-size: 10pt;
    }
    .biodiversity-threat-details div p samp span a span{
        display: block;
        width: 100% !important;
    }
}