:root {
--primary: #548154;
--secondary: #41433a;
--fade-end: rgb(172, 199, 205);
--fade-start: rgb(255, 254, 225);
--box-background: #FFF4EB;
--box-background-alt: #F8EDE4;
--box-border: #D0B8A4;
--box-text: #6E5139;
--box-text-alt: #604429;
--toolbar: rgba(99,81,57,25%);
}

body {
    margin: 0px auto;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, var(--fade-start), var(--fade-end));
    height: 100%;
    max-width: 1000px;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    margin: 6px 10px;
}

.newsitem {
    background-color: var(--box-background-alt);
    color: var(--box-text-alt);
    padding: 4px;
}

.newsitem>.title {
    margin: 2px 10px 2px 0px;
    padding: 6px 0px;
    border-bottom: solid 1px var(--box-border);
    display:flex;
    flex-wrap: wrap;
}

.newsitem>.title>.lead {
    font-weight: bold;
    font-size: large;
    flex: 1;
}

.newsitem>.title>.date {
    font-weight: normal;
    font-size: medium;
    flex: 1;
    text-align: right;
}
a {
    color: var(--box-text);
    font-weight: bold;
}
#toolbar {
    background-color: var(--toolbar);
    color: #fff;
    margin: 5px 10px;
    padding: 10px 10px;
    border-radius: 15px;
}

#toolbar>.link {
    background-color: var(--primary);
    padding: 4px 6px;
    margin: 6px 4px;
    border: solid 1px var(--box-background);
    border-radius: 6px;
}

#toolbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#banner {
    border-radius: 15px;
    margin: 4px;
    max-height: 240px;
    overflow: hidden;
}
#banner img {
    width: 100%; /* 970px; */
    max-height: 299px;
    margin-top: -40px;
}

.textbox {
    margin: 10px;
    padding: 10px;
    background-color: var(--box-background);
    color: var(--box-text);
    border-radius: 10px;
    border: solid 2px var(--box-border);
}

.action {
    display: flex;
}

.action>.thumb img {
    height: 120px;
    width: 180px;
}

.action>.blurb {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 8px;
}

.action>.blurb>.blurbdate {
    flex: 1;
    font-weight: bold;
}

.action>.blurb>.blurbdesc {
    flex: 3;
}

@media only screen and (max-width: 660px) {
    #banner {
        width: 100%;
        height: auto;
        border-radius: 0%;
        margin: 0px;
    }

    #banner img {
        height: auto;
        width: 100%;
        margin: auto;
    }
    #header {
        padding: 0px;
    }
    .toprow {
        padding: 4px 0px 5px 10px;
    }
    .action>.thumb img {
        height: 60px;
        width: 90px;
    }

}