﻿body {
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 12pt;
    word-break: break-word;
    background-color: #F8F8F8;
}

a:link, a:visited, a:hover, a:valid {
    text-decoration: none;
    color: #CC0000;
}

.container {
    max-width: 800px;
    margin: auto;
}

@media only screen and (max-width: 1000px) {
    .container {
        max-width: 98%;
    }
}

.main-article-image {
    float: right;
    margin: 0px 0px 5px 5px;
    max-width: 192px;
    max-height: 108px;
    border: 1px solid #F8F8F8;
    border-radius: 6px;
}

@media only screen and (max-width: 1000px) {
    .main-article-image {
        max-width: 144px;
        max-height: 81px;
    }
}

.cluster {
    background-color: white;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}

.date-and-source {
    font-size: 80%;
    color: #A9A9A9;
    margin-bottom: 5px;
}

/* Turn an Entire DIV into a Clickable Link - https://ctrlq.org/code/19639-turn-div-clickable-link */
div.main-article {
    position: relative;
    margin-bottom: 10px;
    overflow: auto;
}

div.main-article:hover {
    cursor: pointer;
    opacity: .9;
}

a.div-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    /* Makes sure the link doesn't get underlined */
    z-index: 10;
    /* raises anchor tag above everything else in div */
    background-color: white;
    /*workaround to make clickable in IE */
    opacity: 0;
    /*workaround to make clickable in IE */
    filter: alpha(opacity=0);
    /*workaround to make clickable in IE */
}

div.title {
    font-size: 120%;
    color: #E82127;
    margin-bottom: 2px;
}

div.social {
    font-size: 90%;
    margin-bottom: 2px;
    color: #A9A9A9;
}