.blog-post-share-text-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-post-share-text {
    display: flex;
    align-items: center;
    color: #031242;
    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    user-select: none;
}

.blog-post-share-text:hover,
.blog-post-share-text.open {
    color: #5DD2CC;
}

.post-like {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    position: relative;
    color: rgba(3, 18, 66, 0.30);
    font-family: Switzer;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.post-like .heart {
    color: #031242;
    width: 22px;
    height: 22px;
    fill: #FF4F4F;
    stroke: #FF4F4F;
    stroke-width: 2px;
    transition: transform 0.15s ease;
}

.post-like .heart.empty {
    fill: none;
    stroke: rgba(3, 18, 66, 0.30);
}

.post-like:hover .heart {
    transform: scale(1.15);
}

.post-like .like-count {
    color: rgba(3, 18, 66, 0.30);
    font-family: Switzer;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.post-like .like-count.active {
    color: #031242;
    font-weight: 600;
}

.post-like.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* popup */
.blog-post-share-popover {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0 3px 4px 0 rgba(3, 18, 66, 0.10);
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    animation: popIn 0.18s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-option {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: #0866FF;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.share-option:hover {
    transform: translateY(-2px);
}

.share-option svg {
    width: 18px;
    height: 18px;
}

.share-option.facebook svg,
.share-option.facebook {
    background: #0866FF;
    color: #fff;
}

.share-option.linkedin svg,
.share-option.linkedin {
    background: #0A66C2;
    ;
    color: #fff;
}

.share-option.x svg,
.share-option.x {
    background: #000;
    color: #fff;
}

.share-option.copy-link {
    width: 115px;
    background: #fff;
    display: flex;
    height: 32px;
    padding: 0 10px;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid rgba(3, 18, 66, 0.60);
    color: rgba(3, 18, 66, 0.60);
    font-family: Switzer;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.share-option.copy-link.copied {
    color: #5DD2CC;
    border-radius: 2px;
    border: 1px solid #5DD2CC;
}

.share-option.copy-link svg {
    width: 18px;
    height: 15px;
}