.main__title {
    display: none;
}

.weblogPost__introduction {
    font-size: 1.125rem;
}

.weblogPost__meta {
    margin-bottom: 0;
}

.weblogPost__date {
    font-size: 1rem;
    color: #757575;
}

.weblogPost__titleLink {
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.weblogPost__titleLink:hover {
    text-decoration: none;
    color: inherit;
}

@media screen and (min-width: 940px) {
    .weblogPost__text {
        max-width: calc(66.666% - 15px);
    }

    .weblogPost__introContainer {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .weblogPost__introduction {
        max-width: calc(66.666% - 15px);
    }
}

/**
 * Expert
 */

.weblogPost__experts {
    border-radius: 8px;
    margin-bottom: 1.5em;
    padding: 20px;
    font-size: 16px;
    background-color: #f4f7f9;
}

@media screen and (min-width: 940px) {
    .weblogPost__experts {
        width: 33.33%;
    }
}

.weblogPost__expertsTitle {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
}

.weblogPost__expertsList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.weblogPost__expert {
    display: flex;
    margin-bottom: 1em;
}

.weblogPost__expertImageContainer {
    overflow: hidden;
    width: 50px;
    height: 50px;
    margin-right: 1em;
    border-radius: 25px;
    vertical-align: middle;
    background-color: #7cc2e6;
}

.weblogPost__expertInfo {
    width: calc(100% - 50px - 1em);
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.weblogPost__expertName {
    margin-bottom: 0;
    text-decoration: none;
    font-size: 1rem;
}

.weblogPost__expertUrl {
    color: #000;
}

.weblogPost__expertInfo p {
    margin: 0;
    font-size: 0.8em;
}

/**
 * Post
 */

.weblogPost__image {
    display: block;
    margin-bottom: 1.5em;
}

.weblogPost__image img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
}

/**
 *  Related
 */

.relatedWeblogPosts__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.relatedWeblogPosts__post {
    width: calc(50% - 8px);
    margin-right: 15px;
    margin-bottom: 2em;
}

.relatedWeblogPosts__post:nth-child(2n) {
    margin-right: 0;
}

@media screen and (min-width: 500px) {
    .relatedWeblogPosts__post,
    .relatedWeblogPosts__post:nth-child(2n) {
        width: calc(33.333% - 10px);
        margin-right: 15px;
    }

    .relatedWeblogPosts__post:nth-child(3n) {
        margin-right: 0;
    }
}

.relatedWeblogPosts__postLink {
    display: block;
    position: relative;
    text-decoration: none;
    color: #00517c;
}

.relatedWeblogPosts__postLink .c-tagCategories__category {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.relatedWeblogPosts__postImageContainer {
    position: relative;
    overflow: hidden;
    padding-bottom: 50%;
    border-radius: 5px;
    background-color: #7dc2e6;
    transition: background-color 0.3s ease-out;
}

.relatedWeblogPosts__postImageContainer--hasImage {
    background-color: #F4F7F9;
}

.relatedWeblogPosts__postImage {
    position: absolute;
    display: block;
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale(1.01);
    transition: transform 0.3s ease-out;
}

.relatedWeblogPosts__postDate {
    margin: 0.4em 0;
    font-size: 0.8777em;
    color: #757575;
}

.relatedWeblogPosts__postTitle {
    font-size: 1rem;
    font-weight: bold;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    transition: color 0.2s;
}

.relatedWeblogPosts__postLink:hover .relatedWeblogPosts__postTitle {
    color: #00507C;
}

.relatedWeblogPosts__postLink:hover .relatedWeblogPosts__postImageContainer {
    background-color: #6ab6de;
}

.relatedWeblogPosts__postLink:hover .relatedWeblogPosts__postImage {
    transform: scale(1.06);
}
