.entry-header .entry-title {
    margin-bottom: 24px;
}
.site-main .post {
    margin: 50px 0;
}
.post-thumbnail {
    position: relative;
    padding-bottom: 47.25%;
    border-radius: 20px;
    background: #C4C4C4;
    overflow: hidden;
    margin-bottom: 40px;
}

.post-thumbnail img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
}
.meta-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -7px;
}

.meta-info span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: rgba(17, 24, 39, 0.80);
    display: flex;
    align-items: center;
    margin: 7px;
}

.meta-info span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 5px;
}

.site-main .post .entry-header {
    margin-bottom: 40px;
}
.entry-content h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 144%;
    margin-top: 40px;
}

.entry-content  li {
    padding-left: 23px;
    list-style-type: none;
    position: relative;
}

.entry-content ul li:before {
    content: "";
    display: block;
    border-radius: 50px;
    background: #FF6B2C;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 10px;
}
.entry-content ol li {
    background-image: url(../images/check-mark.svg);
    background-repeat: no-repeat;
    background-position: left top 8px;
}
.entry-content p {
    margin-top: 16px;
    color: #0F172A;
    opacity: 0.8;
}
.entry-content li{
    color: #111827;
    opacity: 0.8;
}
.challenges-title h2{
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 144%;
}
.challenges-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -24px;
    margin-top: 16px;
}

.challenges-box {
    width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
    border-left: 1px solid rgba(17, 24, 39, 0.20);
}
.challenges-box h5 {
    margin-bottom: 10px;
}
.challenges-section {
    margin-bottom: 40px;
    margin-top: 40px;
}
.expert-box {
    margin-top: 40px;
    border-radius: 24px;
    border-left: 3px solid #FF6B2C;
    background: #FFFAF8;
    padding: 30px;
}
.expert-box h4 {
    margin-bottom: 10px;
}
span.expert-name {
    font-weight: 500;
    font-size: 16px;
}
.nav-links a span {
    display: block;
}

.nav-links .nav-subtitle {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.nav-links span.nav-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #111827;
    opacity: 0.8;
}

.nav-previous .nav-subtitle svg {
    margin-right: 5px;
}
.nav-next .nav-subtitle svg {
    margin-left: 5px;
}
.title-with-cta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.title-with-cta .section-title {
    text-align: left;
    margin-bottom: 0;
}

.title-with-cta .cta {
    flex-shrink: 0;
    margin-left: 30px;
}



@media only screen and (max-width:1199px){
    .challenges-box {
        width: 33.33%;
    }
}
@media only screen and (max-width:991px){
    .challenges-box {
        width: 50%;
    }
}
@media only screen and (max-width:767px){
    .challenges-box {
        width: 100%;
    }
    .expert-box {
        padding: 20px;
    }
    .nav-links span.nav-title {
        display: none;
    }
    .title-with-cta {
        display: block;
    }
    .title-with-cta .cta {
        flex-shrink: 0;
        margin-left: 0;
        margin-top: 15px;
    }
}