.single-post {
    padding: 40px 0 120px;
}

.single-post__image {
    display: flex;
    margin: 40px 0 60px;
}

.single-post__image img {
    max-width: 100%;
    width: 100%;
    height: 291px;
    object-fit: cover;
}

.article-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.article-content__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 228px;
    width: 100%;
}

.article-content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 808px;
    width: 100%;
}

.post-share {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-size: 18px;
    font-weight: 700;
}

.article-content .badge {
    padding: 4px 14px;
}

.reading-time-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.reading-time-icon {
    display: flex;
}

.reading-time-text {
    font-size: 14px;
    font-weight: 600;
}

.post-share__buttons {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 15px;
    border: 1px solid #BECBD4;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.share-button:hover {
    border: 1px solid #333333;
}

.article-content__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #BECBD4;
    font-size: 14px;
}

.post-share-mobile {
    display: none;
}

@media (max-width: 991px) {
    .article-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
    }
    .post-share {
        display: none;
    }
    .post-share-mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        width: 100%;
        margin-top: 30px;
    }
    .post-share__buttons {
        gap: 16px;
    }
    .share-button {
        padding: 10px;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .single-post {
        padding: 20px 0 60px;
    }
    .single-post__image {
        margin: 20px 0 30px;
    }
    .single-post__image img {
        height: 290px;
    }
    .article-content-inner p {
        line-height: 122%;
    }
    .article-content__meta {
        margin-top: 0;
    }
}