/* # Blog Details */
.blog-detail-page .hero-sec-2 .hero-sec-bottom .hero-sec-bottom-right {
    width: 524px;
}
.blog-detail-page .hero-sec-2 .hero-title .circle-primary-shape {
    /* right: 26px;
    bottom: 31px; */
    right: 4%;
    bottom: 13%;
}
.blog-detail-sec {
    padding-bottom: 150px;
}
.blog-detail-sec .custom-row {
    gap: 100px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box > img {
    margin-bottom: 18px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box p {
    margin: 0;
    font-size: 22px;
    line-height: 29px;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box .blog-meta {
    display: flex;
    align-items: center;
    gap: 59px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box .blog-meta img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box .blog-meta > * {
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box h3 {
    margin: 0;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -1px;
    font-weight: 600;
    text-transform: uppercase;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box ul {
    margin-bottom: 7px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box ul li {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
    letter-spacing: 0.1px;
}
.blog-detail-sec .blog-detail-content-wrap img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 460px;
}
.blog-detail-sec .blog-detail-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-bottom: 52px;
}

/* # Comment */
.comment-lists-wrap {
    margin-bottom: 52px;
}
.comment-form-wrap .title-with-circle,
.comment-lists-wrap .title-with-circle {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -0.1px;
}
.comment-lists {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.comment-box {
    display: flex;
    align-items: center;
    padding: 37px 26px;
    border-radius: 4px;
    gap: 30px;
    position: relative;
    background: rgba(255,255,255,0.1);
}
.comment-box .comment-body .name {
    display: block;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.comment-box .comment-body .date {
    display: block;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
}
.comment-box .comment-body .reply-btn img {
    display: block;
    width: 16px;
}
.comment-box .comment-body .reply-btn {
    position: absolute;
    right: 26px;
    top: 20px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 5px 8px;
}
.comment-box .comment-body p {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
    margin: 10px 0 0 0;
}
.comment-box > img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* # Comment Form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.comment-form .form-col-2 {
    display: flex;
    gap: 28px;
}
.comment-form .input-group textarea,
.comment-form .input-group input {
    width: 100%;
    border: none;
    background: var(--whiteBg);
    color: var(--dark);
    border-radius: 4px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 24px 20px;
}
.comment-form .input-group textarea:focus,
.comment-form .input-group input:focus {
    outline: none;
    box-shadow: none;
}
.comment-form .input-group textarea {
    height: 176px;
}
.comment-form button {
    border: none;
    padding: 12px 15px;
    letter-spacing: 3px;
    font-size: 14px;
    line-height: 20px;
}

.blog-sidebar {
    width: 492px;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sidebar-widget {
    background: rgba(255,255,255,0.1);
    gap: 40px;
    border-radius: 4px;
    padding: 40px;
}
.sidebar-widget-search form {
    position: relative;
}
.sidebar-widget-search form input::placeholder {
    color: #00000099;
}
.sidebar-widget-search form input {
    width: 100%;
    background: var(--whiteBg);
    border-radius: 4px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    border: none;
    padding: 17px 20px;
}
.sidebar-widget-search form input:focus {
    outline: none;
    box-shadow: none;
}
.sidebar-widget-search form button {
    position: absolute;
    right: 20px;
    top: 8px;
    border: none;
    background: var(--primary);
    color: var(--dark);
    width: 42px;
    height: calc(100% - 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    border-radius: 4px;
    cursor: pointer;
    font-size: 22px;
}
.sidebar-widget {
    display: flex;
    flex-direction: column;
    gap: 33px;
}
.title-with-circle,
.sidebar-widget h4 {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 12px;
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
    margin: 0;
}
.title-with-circle .circle-shape,
.sidebar-widget h4 .circle-shape {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    flex: none;
}
.sidebar-widget-recent-comments ul li:first-child,
.sidebar-widget-categories ul li:first-child,
.sidebar-widget-recent-post ul li:first-child {
    padding-top: 0;
}
.sidebar-widget-categories ul li:last-child,
.sidebar-widget-recent-post ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.sidebar-widget-recent-comments ul li,
.sidebar-widget-categories ul li,
.sidebar-widget-recent-post ul li {
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 24px;
    padding-top: 24px;
}
.sidebar-widget-recent-comments ul li a,
.sidebar-widget-categories ul li a,
.sidebar-widget-recent-post ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.2px;
    transition: .5s;
    -webkit-transition: .5s;
}
.sidebar-widget-recent-comments ul li a:hover,
.sidebar-widget-categories ul li a:hover,
.sidebar-widget-recent-post ul li a:hover {
    color: var(--whiteColor);
    color: var(--primary);
}
.sidebar-widget-categories ul li {
    padding-bottom: 12px;
    padding-top: 20px;
}
.sidebar-widget-categories ul li a:hover {
    padding-left: 10px;
}
.sidebar-widget-recent-comments ul li {
    padding-bottom: 15px;
    padding-top: 28px;
}
.sidebar-widget-recent-comments ul li a {
    flex-direction: column;
    align-items: flex-start;
}
.sidebar-widget-tags ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 26px;
}
.sidebar-widget-tags ul li a {
    display: block;
    background: var(--whiteBg);
    color: var(--dark);
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    padding: 6px 24px;
    border-radius: 4px;
    transition: .5s;
    -webkit-transition: .5s;
}
.sidebar-widget-tags ul li a:hover {
    background: var(--primary);
}