/* Breadcrumb */

.posts-breadcrumb a,
.posts-breadcrumb .divider {
    color: #6E6C66;
}

.posts-breadcrumb .current-category {
    color: #0F2845;
}

@media (max-width: 768px) {

    .posts-breadcrumb {
        line-height: 1.4em;
    }

}


/* Hero Section */

#hero-cta {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {

    #hero-cta {
        gap: 3px;
        flex-direction: column;
    }

    #hero-cta > a {
        width: 100%;
    }

    #hero-cta > p {
        height: 0;
    }

}

/* Author Card Information */

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-card__avatar {
    width: 72px;
    height: 72px;
    background: #17304d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0%;
}

.author-card__name {
    margin: 0 0 6px;
    color: #08182B;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0%;
}

.author-card__position {
    color: #2C2A26;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0%;
}

/* Post Content */

#post-content-module img {
    width: 100%;
    max-width: 1320px;
    margin-bottom: 15px;
}

#post-content-module ul {
    margin-left: 15px;
}

#post-content-module ul li::marker {
    color: #B23A2D;
    font-size: 2em;
}

blockquote {
    border-color: #3A5874;
    padding-left: 30px;
}

blockquote h3 {
    color: #0F2845 !important;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif !important;
    font-weight: 600 !important;
    font-style: Italic;
    font-size: 36px !important;
    line-height: 39.6px !important;
    letter-spacing: -1%;
    text-transform: unset !important;
}

blockquote p {
    color: #2C2A26;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: Italic;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
}

#post-content-module ol {
    list-style: none;
    counter-reset: item;
}

#post-content-module ol li {
    counter-increment: item;
    margin: 27px 0px;
    display: flex;
    align-items: center;
}

#post-content-module ol li::before {
    content: counter(item, decimal-leading-zero);
    margin-right: 15px;
    font-weight: bold;
    color: #0F2845;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0%;
}

@media (max-width: 768px) {

    blockquote h3 {
        font-size: 26px !important;
        line-height: 29.9px !important;
    }

    blockquote p {
        font-size: 17px;
        line-height: 25.5px;
    }

}


/* About the author */

.author-card-description {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.author-card-description__avatar {
    width: 115px;
    height: 115px;
    background: #0f2845;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0%;
}

.author-card-description__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.author-card-description__about {
    color: #B8B5AB;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0%;
}

.author-card-description__name {
    color: #FFFFFF;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0%;
}

.author-card-description__position {
    color: #FFFFFF;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0%;
}

.author-card-description__bio {
    color: #FFFFFF;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0%;
    margin-top: 30px;
}

@media (max-width: 768px) {

    .author-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-card-description {
        flex-direction: column;
    }

    .author-card-description__info {
        gap: 15px;
    }

    .author-card-description__about,
    .author-card-description__position {
        font-size: 18px;
        line-height: 22.5px;
    }

    .author-card-description__name {
        font-size: 22px;
        line-height: 26.4px;
    }

}

/* Related Guidance */

.rpg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.rpg-card {
    border: 1px solid #B8B5AB;
}

.rpg-card-image img {
    width: 100%;
}

.rpg-card-body {
    padding: 25px;
}

.rpg-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rpg-card-category {
    color: #7A1F1A;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 13.2px;
    letter-spacing: 16%;
    text-transform: uppercase;
}

.rpg-card-date {
    color: #3A5874;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16.8px;
    letter-spacing: 2%;
}

.rpg-card-title {
    color: #0F2845;
    font-family: 'Source Serif 4', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: 0%;
    min-height: 110px;
}

.rpg-card-excerpt {
    color: #2C2A26;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0%;
    margin-bottom: 13px;
}

.rpg-card-readtime {
    color: #3A5874;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16.8px;
    letter-spacing: 2%;
    border-bottom: 1px solid #E4E2DC;
    padding-bottom: 11px;
    margin-bottom: 15px;
}

.rpg-card-button {
    display: block;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #0F2845;
    color: #0F2845;
    font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    padding: 11px;
}

.rpg-card-button:hover {
    background-color: #0F2845;
    color: #FFFFFF;
}

@media (max-width: 768px) {

    .rpg-grid {
        display: flex;
        flex-direction: column;
    }

    .rpg-card-title {
        min-height: unset;
        font-size: 22px;
        line-height: 26.4px;
    }

}