/* Layout blocks */

.clear30 {
    clear: both;
    height: 30px;
}
#block-blogtop {
    width: 100%;
    height: 220px;
    background: url("../img/bg-yellow-half.jpg");
    background-position: top center;
    overflow: hidden;
}
#block-blogtop .left {
    padding-top: 40px;
}
#block-blogtop .right {
    position: relative;
    right: 0;
    height: 220px;
    background: url("../img/jll-memoji-laptop.png");
    background-repeat: no-repeat;
    background-position: top left;
}
#block-bloglist, #block-blogcontent {
    background-color: #F4F4F4;
    width: 100%;
    min-height: calc(90vh - 260px);
}
#bloglist li {
    position: relative;
    width: 100%;
    height: 280px;
    list-style: none;
    clear: both;
}
.blog-pic {
    top: 20px;
    width: 40%;
    height: 250px;
    position: absolute;
    background-color: #FF0004;
    border-top: solid #b4b4b4 3px;
    border-bottom: solid #a091fa 3px;
    overflow: hidden;
}
.blog-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-blurb {
    color: #666;
    background-color: #fff;
    position: absolute;
    left: 35%;
    width: calc(65% - 20px);
    top: 60px;
    border-top: solid #b4b4b4 3px;
    border-bottom: solid #a091fa 3px;
    padding: 5px 10px 5px 10px;
}

.blog-blurb h3 a {
    color: #000;
    text-decoration: none;
}
.blog-blurb h3 a:hover {
    color: #269aff;
}
.blog-link {
    background-color: #ffc726;
    padding: 4px 8px 4px 8px;
    border-radius: 15px;
    width: auto;
    float: right;
    display: table;
}
.blog-link a {
    font-weight: 800;
    text-decoration: none;
    color: #000;
}
.blog-link:hover {
    background-color: #269aff;
}
#block-blogcontent {
    padding-top: 10px;
}
#block-blogcontent .left {
    border-right: #D0D0D0 2px dotted;
    width: 29%;
}
#block-blogcontent .right {
    padding-left: 5%;
    width: 60%;
    float: left;
}
#blog-bannerpic {
    width: 100%;
    height: 350px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
#blog-bannerpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog typography */

#block-blogcontent h2 {
    font-size: 170%;
    padding: 2px 0 2px 10px;
    border-left: 5px #ffc726 solid;
}
#block-blogcontent ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
#block-blogcontent p, #block-blogcontent li {
    color: #666;
    line-height: 150%;
    padding-left: 20px;
}
#block-blogcontent a {
    text-decoration: none;
    color: #269aff;
    border-bottom: dotted 1px #269aff;
}
#block-blogcontent a:hover {
    background-color: #269aff;
    color: #fff;
}
.drop-cap:first-letter {
    font-weight: 800;
    float: left;
    font-size: 4.5em;
    line-height: 1;
    margin-right: 0;
    margin-top: 0;
    color: #ffc726;
    margin-left: -20px;
}
#block-blogcontent li {
    margin-left: 20px;
}
#block-blogcontent li::marker {
    color: #ffc726;
}
#disclaimer {
    clear: both;
    font-size: 80%;
    text-align: center;
    font-style: italic;
    color: #666;
}

span {
    font-weight: 400;
}
.purple {
    color: #6959c8;
}
/* Extra small devices (phones, 480px and down) */
@media only screen and (max-width: 480px) {
    #block-blogtop {
        height: 180px;
    }
    #block-blogtop .left {
        padding-top: 0;
    }
    #block-blogtop .right {
        height: 180px;
        width: 50%;
    }
    #bloglist li {
        height: 380px;
    }
    .blog-pic {
        top: 20px;
        width: 100%;
        height: 250px;
    }
    .blog-blurb {
        background-color: rgb(255 255 255 / 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        left: 5%;
        width: calc(90% - 20px);
        top: 150px;
    }
    #block-blogcontent .left, #block-blogcontent .right {
        width: 90%;
        margin: auto;
        clear: both;
        border: none;
    }
    #blog-bannerpic {
        height: 175px;
    }
}
/* Small devices (portrait tablets and large phones, 768px and up) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    #bloglist li {
        height: 380px;
    }
    .blog-pic {
        top: 20px;
        width: 80%;
        height: 250px;
    }
    .blog-blurb {
        background-color: rgb(255 255 255 / 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        left: 15%;
        width: calc(85% - 20px);
        top: 150px;
    }
    #blog-bannerpic {
        height: 175px;
    }
}