.sifency-author-box {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    transition: transform .3s, box-shadow .3s
}

.elementor-widget-author-box .sifency-author-box {
    justify-content: var(--justify-content, flex-start)
}

.sifency-author-box__avatar {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.sifency-author-box__avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.sifency-author-box:hover .sifency-author-box__avatar img {
    transform: scale(1.1)
}

.sifency-author-box__text,
.sifency-comments-area .comment-author-content {
    flex-grow: 1
}

.sifency-author-box__name {
    margin: 0 0 12px;
}

.sifency-author-box__name a {
    text-decoration: none;
    color: inherit;
    transition: color .3s
}

.sifency-author-box__name a:hover {
    color: var(--e-global-color-primary)
}

.sifency-author-box__bio {
    margin: 0 0 20px;
}

.sifency-author-box__social,
.sifency-post-terms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.sifency-author-box__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #f8f9fa;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    transition: .3s
}

.sifency-author-box__social a:hover {
    background-color: var(--e-global-color-primary);
    color: var(--sifency-addons-whitecolor);
    transform: translateY(-3px)
}

.sifency-comments-area {
    margin-top: 60px;
    font-family: inherit
}

.sifency-comments-area h3 {
    margin-bottom: 30px;
    font-weight: 700
}

.sifency-comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px
}

.sifency-comments-area .comment-list .comment {
    list-style: none;
    margin-bottom: 30px
}

.sifency-comments-area .comment-body {
    gap: 20px;
    position: relative;
    padding: 0
}

.sifency-comments-area .comment-list .avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sifency-addons-whitecolor)
}

.sifency-comments-area .comment-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px
}

.sifency-comments-area .comment-metadata a {
    color: inherit;
    text-decoration: none;
    transition: color .3s
}

.sifency-comments-area .comment-metadata a:hover {
    color: var(--e-global-color-primary)
}

.sifency-comments-area .comment-content {
    margin-bottom: 15px
}

.sifency-comments-area .comment-content p:last-child {
    margin-bottom: 0
}

.sifency-comments-area .reply {
    text-align: right
}

.sifency-comments-area .comment-reply-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s
}

.sifency-comments-area .comment-reply-link:hover {
    background-color: var(--e-global-color-primary);
    color: var(--sifency-addons-whitecolor)
}

.sifency-comments-area .comment-reply-link::before {
    content: ">"
}

.sifency-comments-area .comment-list .children {
    list-style: none;
    padding-left: 0;
    margin-left: 30px;
    margin-top: 30px;
    position: relative
}

.sifency-comments-area .comment-list .children .comment-body {
    padding-left: 20px
}

.sifency-comments-area .comment-list .children .avatar {
    width: 50px;
    height: 50px
}

.sifency-comments-area #respond {
    padding: 40px;
    border-radius: 16px;
    margin-top: 50px
}

.sifency-comments-area #reply-title {
    margin-bottom: 25px;
    display: block
}

.sifency-comments-area .comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.sifency-comments-area .comment-form-comment,
.sifency-comments-area .comment-form-cookies-consent,
.sifency-comments-area .comment-form-url,
.sifency-comments-area .form-submit {
    grid-column: 1/-1
}

.sifency-comments-area .comment-form input[type=email],
.sifency-comments-area .comment-form input[type=text],
.sifency-comments-area .comment-form input[type=url],
.sifency-comments-area .comment-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    transition: .3s
}

.sifency-comments-area .comment-form textarea {
    min-height: 150px;
    resize: vertical
}

.sifency-comments-area .comment-form input:focus,
.sifency-comments-area .comment-form textarea:focus {
    outline: 0
}

.sifency-comments-area .comment-form ::placeholder {
    color: #adb5bd
}

.sifency-comments-area .comment-form label {
    margin-bottom: 8px;
    display: block;
}

.sifency-comments-area .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px
}

.sifency-comments-area .comment-form-cookies-consent input {
    width: auto;
    margin: 0
}

.sifency-comments-area .form-submit .submit {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--e-global-color-primary);
    color: var(--sifency-addons-whitecolor);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.sifency-comments-area .form-submit .submit:hover {
    background-color: var(--e-global-color-primary);
    transform: translateY(-2px)
}

@media (max-width:767px) {
    .sifency-author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px
    }

    .sifency-author-box__social {
        justify-content: center
    }

    .sifency-author-box__avatar {
        margin-bottom: 20px
    }

    .sifency-comments-area .comment-body {
        gap: 15px
    }

    .sifency-comments-area .comment-list .avatar {
        width: 45px;
        height: 45px
    }

    .sifency-comments-area .comment-list .children {
        margin-left: 15px
    }

    .sifency-comments-area .comment-form {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .sifency-comments-area #respond {
        padding: 25px
    }
}

.sifency-post-navigation {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center
}

.sifency-post-navigation__next,
.sifency-post-navigation__prev {
    overflow: hidden;
    transition: background-color .3s, box-shadow .3s;
    position: relative;
    z-index: 1
}

.sifency-post-navigation__next .sifency-post-navigation__link {
    justify-content: flex-end
}

.sifency-post-navigation__link {
    display: flex;
    align-items: center;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
    transition: color .3s
}

.sifency-post-navigation__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: .3s
}

.sifency-post-navigation__link-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: color .3s
}

.sifency-post-navigation__prev .sifency-post-navigation__link-content {
    align-items: flex-start;
    text-align: left;
}

.sifency-post-navigation__next .sifency-post-navigation__link-content {
    align-items: flex-end;
    text-align: right;
}

.sifency-post-navigation__link-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .3s;
    word-break: break-word
}

@media (max-width:768px) {
    .sifency-post-navigation {
        flex-direction: column;
        align-items: stretch
    }

    .sifency-post-navigation__next,
    .sifency-post-navigation__prev {
        flex: 1 1 auto;
        width: 100%
    }

    .sifency-post-navigation__link {
        justify-content: space-between
    }

    .sifency-post-navigation__next .sifency-post-navigation__link {
        flex-direction: row-reverse
    }

    .sifency-post-navigation__next .sifency-post-navigation__link-content {
        align-items: flex-start;
        text-align: left;
        margin-right: 0;
        margin-left: 20px
    }
}

.sifency-post-terms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px
}

.sifency-post-terms__prefix {
    flex-shrink: 0
}

.sifency-post-terms-list a {
    display: inline-block;
    padding: 6px 14px;
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
    text-decoration: none;
    line-height: 1.4;
    transition: .3s;
}

.sifency-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    color: #6c757d;
}

.sifency-post-meta__item {
    display: inline-flex;
    align-items: center;
    position: relative
}

.sifency-post-meta__item:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -10px;
    transform: translateX(50%);
    color: #dee2e6;
}

.sifency-post-meta__icon {
    margin-right: 8px;
    color: #a0aec0;
}

.sifency-post-meta__text a {
    color: inherit;
    text-decoration: none;
    ;
    transition: color .3s
}

.sifency-post-meta__text a:hover {
    color: var(--e-global-color-primary);
    text-decoration: underline
}