﻿:root {
    --blue: #2A46FF;
    --yellow: #FFC300;
    --ocean-blue: #0AB0A6;
    --dark: #1E1E1E;
}

.w-100 {
    width: 100%;
}

.fs-7 {
    font-size: 7px;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.page-title-wrap {
    background: url(../images/header-bg.webp) no-repeat center top;
    background-size: cover;
    border-top: 0;
    padding: 81px 0 130px;
}

#main-nav-container {
    height: auto !important;
}

.breadcrumb-container li {
    color: var(--blue);
}

    .breadcrumb-container li a {
        color: #fff;
    }

.breadcrumb-container .breadcrumb {
    font-family: Poppins;
    margin: 0 !important;
    display: flex;
    gap: 6px;
}

.breadcrumb-container nav li::before {
    content: '' !important;
    background: url(../images/icons/double-arrow.svg) no-repeat;
    width: 10px;
    height: 8px;
    position: relative;
    padding-bottom: 0 !important;
    display: inline-block;
    margin-right: 5px;
}

.breadcrumb-container nav li:nth-child(1)::before {
    display: none;
}

.breadcrumb-container nav li {
    position: relative;
    display: flex;
    align-items: center;
}

.forum {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
    background: #fff;
    position: relative;
    margin-top: -68px;
    z-index: 1;
    padding: 18px 30px 33px;
}

.forum-card .card-title .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-block;
    background: #fff;
    padding: 5px;
}

    .forum-card .card-title .icon img {
        width: 100%;
    }

.forum-card .card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-radius: 18px;
    position: relative;
    z-index: 1;
    background: none;
    margin-bottom: 11px;
    border: none;
    justify-content: space-between;
}

.forum-card::before {
    content: '';
    background: var(--blue);
    width: 100%;
    height: 100px;
    border-radius: 20px;
    position: absolute;
    left: 0;
}

.forum-card {
    background: #eee;
    padding: 0 15px;
    position: relative;
    padding-bottom: 16px;
    border-radius: 20px;
    overflow: inherit !important;
}

    .forum-card .card-body {
        background: #fff;
        position: relative;
        margin-top: -15px;
        border-radius: 10px;
        overflow: hidden;
    }

.custom-list {
    padding: 0 !important;
}

    .custom-list .trending-list li a {
        display: block;
        font-size: 14px;
        color: #1E1E1E;
        padding: 12px 0px 12px 30px;
        transition: all 0.4s ease;
    }

    .custom-list .trending-list li {
        border-bottom: 1px solid #D9D9D9;
        position: relative;
        margin: 0;
    }

        .custom-list .trending-list li a::before {
            content: '';
            background: url(../images/icons/right-angle.svg) no-repeat;
            position: absolute;
            top: 17px;
            width: 8px;
            height: 12px;
            left: 14px;
        }

        .custom-list .trending-list li:nth-last-child(1) {
            border-bottom: 0;
        }

        .custom-list .trending-list li a:hover, .custom-list .trending-list li a:active, .custom-list .trending-list li a.active {
            text-decoration: none;
            background: var(--ocean-blue);
            color: #fff;
        }

            .custom-list .trending-list li a:hover::before, .custom-list .trending-list li a.active::before {
                filter: invert(1) brightness(4);
            }

.page-title {
    background: var(--blue);
    color: #fff;
    width: fit-content;
    height: 56px;
    border-radius: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 40px;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: -43px;
}

.forum-filters {
    height: 66px;
    border-radius: 35px;
    background: var(--blue);
    padding: 14px;
    align-items: center;
}

    .forum-filters .filter-tab {
        color: #fff;
        border-bottom: 0;
        border-radius: 20px;
        line-height: 0;
        padding: 20px 12px;
    }

.filter-tab.active {
    background: #fff;
    color: var(--blue);
}

.forum .center-header {
    border-bottom: 1px solid #CECECE;
    position: relative;
    padding-bottom: 12px;
}

    .forum .center-header::before {
        content: '';
        width: 120px;
        height: 1px;
        position: absolute;
        bottom: 0;
        background: var(--ocean-blue);
    }

    .forum .center-header .center-title {
        font-weight: 500;
        font-size: 32px;
        line-height: 48px;
        color: var(--dark);
    }

.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #CECECE;
    padding: 10px 0;
    margin: 0;
}

    .icon-list li .text {
        width: 90%;
    }

    .icon-list li:nth-last-child(1) {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .icon-list li .icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ff948c;
        padding: 10px;
    }

        .icon-list li .icon img {
            width: 100%;
        }

    .icon-list li a {
        color: var(--dark);
    }

        .icon-list li a:hover, .icon-list li a.active {
            color: var(--blue)
        }

.pr {
    font-size: 14px;
}

.forum-layout {
    grid-template-columns: 354px minmax(0, 1fr) 350px;
}

.tag-wrap {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

    .tag-wrap .tag {
        display: inline-block;
        background: none;
        border: 1px solid #D2D2D2;
        padding: 2px 6px;
    }

        .tag-wrap .tag a {
            color: var(--dark);
        }

        .tag-wrap .tag:hover {
            background: var(--yellow);
        }
/*----- post card -----*/
.all-post-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.post-card {
    width: 100%;
    background: #F6F6F6;
    border: 1px solid #ededed;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 12px;
}

    .post-card .post-left {
        flex: 1;
    }

    .post-card .avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #f2c200;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 11px;
        margin: 0 auto;
        margin-bottom: 8px;
    }

    .post-card .post-title {
        font-size: 18px;
        font-weight: 600;
    }

        .post-card .post-title a:hover, .post-card .post-title a:focus, .post-card .post-title a:active {
            color: var(--blue);
        }

    .post-card .group-name {
        font-size: 14px;
        margin-top: 3px;
        color: #444;
    }

        .post-card .group-name span {
            color: red;
            font-weight: bold;
        }

    .post-card .author {
        margin-top: 5px;
        font-weight: 500;
        font-size: 13px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .post-card .desc {
        margin: 12px 0;
        font-size: 14px;
        color: var(--dark);
        margin-bottom: 17px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .post-card .tags {
        border-top: 1px solid #CECECE;
        padding-top: 15px;
    }

.post-card .tags span {
    border: 1px solid #f9d74b;
    color: #f07d31;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 3px;
    display: inline-block;
    transition: all 0.4s ease;
    background: #fff;
    font-weight: 500;
}

.post-card .tags span a {
color: #f07d31;
}

.post-card .tags span:hover {
background: var(--yellow);
}

.post-card .tags span:hover a {
    color: #000;
}

.post-card .post-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.post-card .stat-box {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    width: 100px;
    height: 100px;
}

.post-card .stat-box .icon {
    background: var(--yellow);
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    margin: 0 auto;
    margin-bottom: 13px;
}

.post-card .stat-box .icon img {
    width: 100%;
}

.post-card .stat-box .num {
margin: 5px 0;
font-size: 14px;
font-weight: 600;
line-height: 5px;
}

.post-card .stat-box p {
font-size: 12px;
color: #555;
margin: 0;
}

.post-card .profile a {
    color: var(--dark);
}

.post-card .profile {
    width: 70px;
}

.post-card a {
    color: var(--dark);
}

.heading-md {
    margin-top: 38px;
}

.heading-md .center-title {
    font-size: 18px !important;
    line-height: 8px !important;
}
/*----- post card end -----*/

/*----- form info ------*/
.stats-container {
    background: #F6F6F6;
    border: 1px solid #ededed;
    padding: 30px;
    border-radius: 20px;
    margin: auto;
    margin-top: 20px;
}

    /* Top Stats Boxes */
    .stats-container .top-stats {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 11px;
    }

    .stats-container .stat-box {
        flex: 1;
        display: flex;
        gap: 14px;
    }

        .stats-container .stat-box .icon {
            background: #fff;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stats-container .stat-box h2 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .stats-container .stat-box p {
            margin: 0;
            font-size: 14px;
            color: #555;
        }

    /* Middle Section */
    .stats-container .middle-section {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
        margin-bottom: 14px;
    }

    .stats-container .mini-icon {
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        flex: none;
        justify-content: center;
        align-items: center;
        padding: 8px;
        border: 1px solid #ddd;
    }

    .stats-container .middle-section .item .content p {
        line-height: 5px;
        font-size: 14px;
    }

    .stats-container .middle-section p {
        margin: 5px 0;
        color: #444;
    }

    /* Bottom Section */
    .stats-container .bottom-icons {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        margin-top: 12px;
    }

        .stats-container .bottom-icons h4 {
            margin-bottom: 5px;
            font-size: 18px;
        }

.dot {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 50%;
}

.stats-container .topic-icons span {
    font-size: 16px;
}

.stats-container .middle-section .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .stats-container .middle-section .item .content p {
        line-height: 5px;
    }
/*----- form info end ------*/

.forum-center .post-card blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

.forum-center .post-card h1, .forum-center .post-card h2, .forum-center .post-card h3, .forum-center .post-card h4, .forum-center .post-card h5, .forum-center .post-card h6 {
    font-size: 15px !important;
}

.forum-center .post-card b {
    font-weight: 600;
}

.forum-center .post-card p {
    font-size: 14px;
}

.post-card .profile .author {
    font-size: 12px;
}

.forum-right {
    overflow: inherit;
    position: static;
}

.btn-new-post {
    border-radius: 25px;
    background: var(--blue);
    transition: all 0.4s ease;
    padding: 10px 20px;
}

    .btn-new-post:hover, .btn-new-post:focus, .btn-new-post:active {
        background: var(--yellow);
        color: var(--dark);
    }

.topic-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.post-card .post-title .icon {
    display: inline-block;
    width: 18px;
    margin-right: 4px;
}

.add-btn {
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

.category-header blockquote {
    padding: 0;
    border: none;
}

.detail-forum-layout {
    grid-template-columns: 354px minmax(0, 1fr) !important;
}

.stats-container .topic-icons span {
    display: flex;
    gap: 4px;
}

    .stats-container .topic-icons span .icon {
        width: 15px;
    }

    .stats-container .topic-icons span img {
        width: 100%;
    }

.tags span {
    border: 1px solid #f9d74b;
    color: #f07d31;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 3px;
    display: inline-block;
    transition: all 0.4s ease;
    background: #fff;
    font-weight: 500;
}

    .tags span:hover {
        background: var(--yellow);
    }

        .tags span:hover a {
            color: #000;
        }

/*--- comment reply ---*/
.comment-section {
    border-top: 1px solid #efefef;
    padding-top: 15px;
    margin-top: 22px;
}

    .comment-section .comment, .comment-section .reply {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .comment-section .avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

    .comment-section .content {
        width: 100%;
    }

    .comment-section .header {
        display: flex;
        gap: 10px;
        align-items: center;
    }

        .comment-section .header .title {
            font-size: 16px;
            font-weight: bold;
        }

        .comment-section .header .time {
            color: gray;
            font-size: 13px;
        }

    .comment-section p {
        margin: 8px 0 12px 0;
        line-height: 1.4;
        font-size: 13px;
    }

    .comment-section .actions {
        display: flex;
        gap: 15px;
        font-size: 14px;
        color: #444;
    }

        .comment-section .actions span {
            cursor: pointer;
        }

    .comment-section .verified {
        color: #0095ff;
        font-size: 14px;
        margin-left: 4px;
    }

    /* Indent reply */
    .comment-section .replies {
        margin-left: 60px;
    }

    .comment-section .avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px;
    }

    .comment-section .reply-btn {
        background: none;
        outline: none;
        border: none;
    }

    .comment-section .replies .pagination-container {
        width: auto;
        display: block;
        margin-top: 0;
    }

        .comment-section .replies .pagination-container .pagination {
            border: none;
            padding: 0;
            gap: 0;
            margin-top: 0;
            margin-bottom: 30px;
        }

            .comment-section .replies .pagination-container .pagination span {
                font-size: 14px;
                padding: 5px 12px;
            }

        .comment-section .replies .pagination-container .arrow-btn {
            width: 30px;
            height: 30px;
        }

        .comment-section .replies .pagination-container .btn-left {
            margin-right: 5px;
        }

        .comment-section .replies .pagination-container .btn-right {
            margin-left: 5px;
        }
/*--- comment reply end ---*/
.pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

    .pagination-container .pagination {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 10px 25px;
        border-radius: 20px;
        border: 1px solid #ddd;
    }

    /* Prev & Next text */
    .pagination-container .prev-text, .pagination-container .next-text {
        font-size: 18px;
        color: #444;
        cursor: pointer;
    }

    /* Arrow Buttons */
    .pagination-container .arrow-btn {
        width: 40px;
        height: 40px;
        border: none;
        background: #efefef;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        /* Hover Effect */
        .pagination-container .arrow-btn:hover, .pagination-container .prev-text:hover, .pagination-container .next-text:hover {
            color: #2f8bfd;
        }

    /* Page Numbers */
    .pagination-container .page {
        font-size: 18px;
        color: #888;
        cursor: pointer;
    }

        .pagination-container .page.active {
            background: var(--blue);
            color: #fff;
            padding: 4px 12px;
            border-radius: 50%;
            font-weight: 600;
        }

    .pagination-container .dots {
        font-size: 20px;
        color: #666;
        padding: 0 5px;
    }

    .pagination-container .left-arrow {
        transform: rotate(-180deg)
    }

.detail-forum-layout .center-header {
    display: block;
}

    .detail-forum-layout .center-header .center-title {
        line-height: 33px;
        font-size: 28px;
    }

.detail-forum-layout .forum-center .action {
    margin-bottom: 18px;
}

    .detail-forum-layout .forum-center .action .btn-new-post {
        padding: 5px 12px;
    }

.post-card .icon-wrap-2 {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.alrt-box {
    background: #ff72725e;
    padding: 15px;
    color: #f00000;
    text-align: center;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff2b2b;
    margin-bottom: 15px;
}

    .alrt-box p {
        margin: 0;
    }

.topics-section.group-section {
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .topics-section.group-section.tag-section {
        display: flex;
        flex-wrap: wrap;
        flex-direction: inherit;
        gap: 10px
    }

    .topics-section.group-section .post-card {
        height: 115px;
        align-items: center;
    }

        .topics-section.group-section .post-card .profile a {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

            .topics-section.group-section .post-card .profile a .author {
                margin: 0;
            }

            .topics-section.group-section .post-card .profile a .icon {
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
                gap: 2px;
            }

                .topics-section.group-section .post-card .profile a .icon img {
                    width: 20px;
                }

                .topics-section.group-section .post-card .profile a .icon .group-name {
                    margin: 0;
                    font-size: 11px;
                }

            .topics-section.group-section .post-card .profile a .author:hover {
                color: var(--blue);
            }

.like-btn {
    display: flex;
    align-items: center;
    border: none;
    background: #fff;
    padding: 5px 10px;
    gap: 5px;
    border-radius: 12px;
    width: 38px;
    justify-content: center;
    outline: none;
}

    .like-btn .icon {
        width: 16px;
    }

        .like-btn .icon img {
            transition: all 0.4s ease;
        }

        .like-btn .icon .liked {
            display: none;
        }

    .like-btn .like {
        display: block;
    }

    .like-btn.active .liked {
        display: block;
    }

    .like-btn.active .like {
        display: none;
    }


.detail-forum-layout .grp-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .detail-forum-layout .grp-wrap span {
        color: #444;
    }

.detail-forum-layout .post-card {
    display: block;
    height: auto;
}

.post-card .post-right {
    display: flex;
    margin-top: 15px;
}

.post-card .post-right .stat-box, .post-card .post-right .stat-box button {
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    gap: 6px;
    padding: 8px;
}

.post-card .post-right .stat-box .icon {
    margin: 0;
    width: 28px;
    height: 28px;
    padding: 7px;
    align-items: normal;
}

.detail-forum-layout .post-card .avatar {
    margin: 0;
}

.detail-forum-layout .post-card .post-left .profile {
    display: flex;
    align-items: center;
    width: auto;
    gap: 10px;
}

.detail-forum-layout .post-card .post-left .profile .author {
    font-size: 16px !important;
    font-weight: 600;
}

.detail-forum-layout .post-card .post-left .profile p {
    margin: 0;
    line-height: 18px;
}

.detail-forum-layout .post-card .post-left .duration {
    color: #747474;
}

.breadcrumb a {
   text-transform: none !important;
}

.all-post-card .post-card .profile .like-btn {
    height: 38px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: 10px;
}

.page-header-bg {
    background: var(--blue);
    height: 70px;
}

.forum .breadcrumb-container {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 19px;
    display: flex;
}

.breadcrumb-container li a {
    color: var(--dark);
}

.login-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    height: 580px;
}

.left-form-box {
    border-radius: 15px 0 0 15px;
    overflow: hidden;
    background: #0a3f70;
    height: 100%;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
}

.login-container form .form-group .icon {
    width: 20px;
    display: block;
    position: absolute;
    top: 43px;
    right: 14px;
}

.login-container form .form-group {
    position: relative;
}

    .login-container form .form-group input {
        padding-right: 43px;
    }

.login-container .remember-me {
    font-weight: 500;
}

    .login-container .remember-me input {
        margin-top: 0;
    }

.export-btn-2 {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: #0a3f70;
    color: #fff;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
}

    .export-btn-2 .button__icon-wrapper {
        flex-shrink: 0;
        width: 25px;
        height: 25px;
        position: relative;
        color: #246DFF;
        background-color: #fff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
    }

    .export-btn-2:hover {
        background-color: #000;
    }

        .export-btn-2:hover .button__icon-wrapper {
            color: #000;
        }

    .export-btn-2 .button__icon-svg--copy {
        position: absolute;
        transform: translate(-150%, 150%);
    }

    .export-btn-2:hover .button__icon-svg:first-child {
        transition: transform 0.3s ease-in-out;
        transform: translate(150%, -150%);
    }

    .export-btn-2:hover .button__icon-svg--copy {
        transition: transform 0.3s ease-in-out 0.1s;
        transform: translate(0);
    }

.signup-link {
    margin-top: 15px;
}

.sign-up-form .form-group input {
    border-radius: 12px;
}

.sign-up-form .form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
}

.sign-up-form .form-group {
    margin-bottom: 0;
    flex: 49%;
}

    .sign-up-form .form-group select {
        border-radius: 12px;
        height: 47px;
    }

.sign-up-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    height: 620px;
}

    .sign-up-wrap .login-container {
        height: 100%;
        border-radius: 0 15px 15px 0;
    }

.sign-up-form .form-wrap .form-group input {
    padding-right: 12px;
    padding-left: 12px;
}

.sign-up-form .form-group:nth-child(3) {
    flex: 100%;
}

#footer-lock-up {
    background: var(--dark);
}

.forum-modal .modal-content {
    padding: 0 !important;
}

    .forum-modal .modal-content .modal-body {
        padding: 0;
    }

.forum-modal .close {
    position: absolute;
    right: 26px;
    top: 26px;
    z-index: 9;
    opacity: 1;
    outline: none;
}

.btn-round {
    border: none;
}

.forum-modal .forum-card {
    margin-bottom: 0;
    border: none;
}

.block-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-box {
    width: 350px;
    border: 1px solid #ededed;
    padding: 14px;
    border-radius: 14px;
}

.link-box a {
    font-size: 14px;
    color: #ff0000;
    font-weight: 600;
}

.inline-box {
    display: flex;
    gap: 14px;
    align-items: center;
}

.post-card .stat-box button {
    padding: 0 !important;
}

.post-card .stat-box button.active .icon {
    background: var(--blue);
}

.post-card .stat-box button.active .icon img {
    filter: invert(1) brightness(5);
}
.post-card .profile .duration {
    font-size: 13px;
    line-height: 15px;
    color: #626262;
}
.forum-card .card-title span {
    display: flex;
    align-items: center;
    gap: 7px;
}
.forum-card .card-title .view-icon {
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 7px;
}
.detail-forum-layout .desc {
    -webkit-box-orient: inherit;
}