
/* Blog area updates */
.centralise {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
    
    
    /* background: #e2f2f8; */;
}

.articles-layout {
    
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(200px, 300px);
}

.articles-grid {
    
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.article-grid-item {
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
}

.article-content  {
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border: 1px solid #ccc;
    padding: 30px 0;
}

.article-thumb {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ececec;
    
    position: relative;
}

.article-thumb:after {
    content: '';
    display: block;
    width: 100%;
    padding-top: 57.14%;
   
}

.article-thumb A {
   position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

.article-thumb A SPAN {
    position: absolute;
    left: -9999px;
}

.article-title {
    margin: 5px 0;
    font-weight: 100;
    font-size: 20px;
}

.article-inner {
    padding: 5px;
}

.article-summary {
    font-size: 16px;
    line-height: 1em;
}

.article-date, .article-meta {
    font-size: 12px;
    color: #333;
    margin: 5px 0;
}

.articles-sidebar {
    padding-left: 30px;
}

.articles-sidebar .sidemenu {
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border: 1px solid #ccc;
}

.articles-sidebar .sidemenu H3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    margin-bottom: 5px;
    padding-left: 0;
    margin-top: 0;
}

.articles-sidebar .sidemenu UL {
    list-style: none;
    font-size: 14px;
    margin: 0;
    padding: 5px;
}

.articles-sidebar .sidemenu UL LI {
     padding-bottom: 5px;
}

.article-foot {
    margin: 10px 17px 0;
    
    padding-top: 10px;
    border-top: 1px solid #777;
    
    font-size: 14px;
}

UL.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

UL.tag-cloud LI {
    margin: 0 5px;
}

.tl-tag-weight1 {
    
}

.tl-tag-weight2 {
    font-size: 15px
}

.tl-tag-weight3 {
    font-size: 16px
}

.tl-tag-weight4 {
     font-weight: bold;
    font-size: 18px
}

.tl-tag-weight5 {
    font-weight: bold;
    font-size: 20px
}

@media screen and (max-width: 450px) {

.articles-layout {
    
    display: grid;
    gap: 2rem;
    grid-template-columns: none;
}
}