/* wp-post-content */
.wp-post-content {
    margin-top: 25px;
    color: #565454;
}

.wp-post-content > h1,
.wp-post-content > h2,
.wp-post-content > h3,
.wp-post-content > h4,
.wp-post-content > h5,
.wp-post-content > h6 {
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 25px;
}

.wp-post-content > h1 { font-size: 32px; }
.wp-post-content > h2 { font-size: 28px; }
.wp-post-content > h3 { font-size: 24px; }
.wp-post-content > h4 { font-size: 22px; }
.wp-post-content > h5 { font-size: 20px; }
.wp-post-content > h6 { font-size: 18px; }

.wp-post-content > p {
    font-size: 18px;
    color: inherit;
    line-height: 150%;
    margin-top: 25px;
    margin-bottom: 25px;
}

.wp-post-content > ul {
    margin-top: 25px;
    margin-bottom: 25px;
    list-style: none;
    color: inherit;
}

.wp-post-content > ul li {
    position: relative;
    margin: 0;
    padding-left: 26px;
    font-family: inherit;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.88;
}

.wp-post-content > ul li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #d6e700;
    border-radius: 50%;
}

.wp-post-content > ol {
    margin-top: 25px;
    margin-bottom: 25px;
    counter-reset: list;
    list-style: none;
    color: inherit;
}

.wp-post-content > ol li {
    position: relative;
    margin: 0;
    padding-left: 26px;
    font-family: inherit;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.88;
}

.wp-post-content > ol li:before {
    content: '';
    counter-increment: list;
    content: counter(list) ". ";
    position: absolute;
    top: 0;
    left: 0;
    color: #d6e700;
    font-weight: 700;
}

.wp-post-content > p a,
.wp-post-content > ul a,
.wp-post-content > ol a {
    text-decoration: underline;
    color: #F99A8A
}

.wp-post-content > p a:hover,
.wp-post-content > ul a:hover,
.wp-post-content > ol a:hover {
    text-decoration: none;
}

.wp-post-content blockquote {
    padding: 25px 25px 25px 40px;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    background-color: #F6F6F6;
    position: relative;
}
.wp-post-content blockquote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background-color: #d6e700;
}

.wp-post-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.wp-post-content table th {
    font-weight: 700;
    text-align: left;
    padding: 13px 20px;
}

.wp-post-content table td {
    padding: 16px 20px 28px;
}

.wp-post-content .wp-block-image {
    margin: 25px 0;
}

.wp-post-content > *:first-child {
    margin-top: 0;
}

.wp-post-content > *:last-child {
    margin-bottom: 0;
}