<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fwtext {
    max-height: 180px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.fwtext::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #f4fbfc, transparent);
    display: block;
    pointer-events: none;
}

.fwtext.expanded::after {
    display: none;
}

#fwreadmorebtn {
    margin-top: 20px;
}

.ecategory-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #055968;
    font-weight: bold;
}

.ecategory-item {
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 20px;
}

.ecategory-item span {
    display: inline-block;
    margin-left: 10px;
}

@media screen and (min-width: 750px) and (max-width: 999px) {
    .fwtext {
        max-height: 125px;
    }
}

@media screen and (min-width: 1000px) {
    .fwtext {
        max-height: 350px;
    }
}</pre></body></html>