.post-entry ol li[data-list="bullet"] {
    list-style-type: disc;
}

.post-entry ol li[data-list="ordered"] {
    list-style-type: decimal;
}

.extra-content ol li[data-list="bullet"] {
    list-style-type: disc;
}

.extra-content ol li[data-list="ordered"] {
    list-style-type: decimal;
}

.post-extra-section .extra-content a {
    color: #93BEFF;
    text-decoration: underline;
    font-weight: 500;
}

.post-extra-section .extra-content a:hover,
.post-extra-section .extra-content a:focus {
    color: #2B80FF;
}

.post-entry blockquote {
    border-left: 4px solid #ccc;
    padding-left: 10px;
    color: #666;
    margin: 15px 0;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f8e8e8;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
    background: #79d4d4;
}

.faq-answer p {
    padding: 2px 0;
    color: #414141;
    margin: 0;
    line-height: 1.6;
}

.icon {
    font-size: 20px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    aspect-ratio: 16/9;
}

.post-social-sharing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: start;
}

@media only screen and (max-width: 767px) {
    .post-image img {
        aspect-ratio: 16/9;
    }
}

@media (min-width: 992px) {
    .sticky-col {
        position: sticky;
        top: 1px;
        align-self: flex-start;
    }

    .share-title {
        text-align: center;
        padding-left: 26px;
    }
}