.nav-wrapper {
    height: 100px;
}

.fixed-top {
    border-bottom: 1px solid var(--gray-6);
}

.blog-wrapper {
    padding: 20px 0 50px 0;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-wrapper .breadcrubs {
    padding: 0;
    margin-bottom: 20px;
}

.search-container {
    border: 1px solid var(--gray-5);
    padding: 8px;
    border-radius: 4px;
    background: #F8F7F7;
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-input {
    border: none;
    background: transparent;
    max-height: 20px;
}

.search-input::placeholder {
    color: var(--gray-1);
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 10px;
    border: 1px solid var(--gray-5);
    overflow: hidden;
}

.blog-img {
    object-fit: cover;
    aspect-ratio: 5/4;
}

.blog-card-text {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card-disc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card-disc h4 {
    line-height: 1.3;
    letter-spacing: 0.02rem;
    color: #1A202E;
    font-weight: 500;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-disc h5 {
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.03rem;
    color: #1A202E;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-header h3 {
    font-weight: 600;
}

.blog-seperator {
    border: 1px solid var(--gray-6);
}

.blog-profile-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-profile-img {
    max-width: 40px;
    max-height: 40px;
    overflow: hidden;
    border-radius: 20px;
}

.blog-profile-text h5 {
    font-weight: 600;
    letter-spacing: -0.04rem;
    color: #495367;
}

.blog-profile-text h6 {
    color: #96A2BE;
}

.blog-profile-content {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-main-content .col-9 {
    width: 73%;
}

.blog-main-content .col-3 {
    width: 27%;
}

.blog-left {
    display: flex;
    flex-direction: column;
    /* gap: 34px; */
}
.blog-left .ap-pagination-wrapper {
    justify-content: center;
}

.blog-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-right-top {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--gray-6);
    gap: 10px;
}

.related-tags {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    color: var(--gray-1);
}

.single-tag {
    padding: 4px 12px;
    background: #A3117014;
    border: 1px solid #FEE8F7;
    display: inline-block;
    border-radius: 4px;
    margin-top: 10px;
    margin-right: 10px;
}

.single-tag p {
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-right-bottom {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--gray-6);
    border-radius: 12px;
}

.recent-blog-tab {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-dash {
    border: 1px dashed var(--gray-6);
}

.recent-blog {
    display: flex;
    gap: 12px;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    border: 1px solid var(--gray-6);
}

.single-recent-blog {
    display: flex;
    gap: 12px;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    border: 1px solid var(--gray-6);
    min-width: 316px;
}

.recent-blog-img {
    max-width: 116px;
    max-height: 122px;
}

.recent-blog-title p {
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02rem;
    color: var(--gray-1);
}

.recent-blog-profile {
    display: flex;
    gap: 10px;
}

.recent-blog-profile-img {
    max-width: 24px;
    max-height: 24px;
    overflow: hidden;
    border-radius: 20px;
}

.recent-blog-right .blog-dash {
    margin: 6px 0;
}

.recent-title h6 {
    color: #495367;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.04rem;
}

.recent-title p {
    color: #96A2BE;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
}

.recent-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.top-recent-blogs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-tab-blogs {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    /* Hide scrollbar */
    scrollbar-width: none;/* Firefox */
    -ms-overflow-style: none;/* IE and Edge */
}

.blog-image {
    aspect-ratio: 115/122;
}

.mobile-profile-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-profile-content-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-more-blog {
    border: none;
    background: none;
    color: var(--blue-1);
    padding-bottom: 2px;
    border-bottom: 1px dashed var(--blue-1);
}

.mobile-blog {
    flex-direction: column;
    gap: 40px;
}

.mobile-title h4 {
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--gray-1);
    margin-bottom: 12px;
}

.mobile-recent-blog {
    margin-top: 20px;
    overflow-x: scroll;
    display: flex;
    border-radius: 10px;
    gap: 20px;
    /* Hide scrollbar */
    scrollbar-width: none;/* Firefox */
    -ms-overflow-style: none;/* IE and Edge */
}

.mobile-recent-cards {
    border: 1px solid var(--gray-6);
    min-width: 316px;
}

.mobile-recent {
    display: flex;
    flex-direction: column;
    gap: 24px;
}








@media (min-width:1199px) {
    .recent-blog-tab {
        display: none;
    }
}


@media (max-width:1199px) {

    .nav-wrapper,
    .navbar {
        height: 80px;
    }

    .blog-right-bottom {
        display: none;
    }

    .blog-main-content .col-9 {
        width: 100%;
    }

    .blog-main-content .col-3 {
        width: 100%;
    }
}

@media (max-width:991px) {}

@media (max-width: 767px) {

    .nav-wrapper,
    .navbar {
        height: 52px;
    }

    /* mobile responsive */
    .blog-wrapper .breadcrubs {
        margin-bottom: 14px;
    }

    .blog-header h3 {
        font-weight: 500;
        font-size: 20px;
        line-height: 1;
        letter-spacing: 0;
    }

    .blog-header {
        flex-direction: column;
        gap: 24px;
        align-items: start;
    }

    .search-container {
        width: 100%;
        max-height: 36px;
    }

    .blog-img {
        aspect-ratio: 37/24;
    }

    .blog-card-disc h4 {
        font-size: 18px;
        font-weight: 550;
    }

    .blog-card-disc h5 {
        font-size: 16px;
    }
}