﻿.news-feed-message {
    display: flex;
    flex-direction: column;
    width: 300px;
    min-width: 100%;
    line-height: 1.2;
    font-size: 1rem;
}

.news-feed-message-meta {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    align-items: center;
    color: #999;
}

.news-feed-message > h1 {
    font-size: 20px;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 10px;
}

.news-feed-message > h2 {
    font-size: 16px;
    font-weight: bold;
    padding-top: 0px;
    padding-bottom: 0px;
}

.news-feed-message > p {

}

.news-feed-message > ul {
    font-size: 14px;
}

.news-feed-message > img {

}

.news-feed-button-link {
    display: inline-block;
    font-weight: bold;
    padding: 5px 5px;
    background-color: #97c11d;
    color: #fff !important;
    text-decoration: none;
    border-radius: 0px;
}

    .news-feed-button-link:hover {
        background-color: #629c44;
        color: #fff;
    }

.news-feed-horizontal-line {
    border-top: 1px solid black;
    margin: 0 0 1rem 0;
}

.release-date {
    font-size: 18px;
    font-weight: bold;
}

.release-version {
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem;
}

.release-notes {
    font-size: 15px;
    white-space: nowrap;
    padding-left: 2rem;
    line-height: 2rem;
}

.release-notes li {
    white-space: wrap;
    font-size: 13px;
    padding-left: 1rem;
    line-height: 1.3rem;
}

.release-notes-video-wrapper {
    display: flex;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-left: 1rem;
}

    .release-notes-video-wrapper iframe {
        position: absolute;
        width: 50%;
        height: 50%;
    }
