.category .breadcrumbs__wrapper {
    margin-top: 170px;
}

.category .category-banner {
    margin-top: 90px;
}

.category .category-header {
    background-color: var(--color-light-blue);
    height: 400px;
    margin-bottom: 90px;
    position: relative;
}

.category .category-header::after {
    background-image: url('../../../img/svg/ellipse_right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    content: "";
    height: 250px;
    pointer-events: none;
    position: absolute;
    right: 0;
    transform: rotate(270deg);
    width: 250px;
    z-index: 0;
}

.category .category-header .container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.category .category-header .container .category-header-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height: 400px;
    min-width: 60%;
}

.category .category-header .container .category-header-text .category-description {
    color: var(--color-canvas-text);
    font-family: 'Poppins';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 90%;
}

.category .category-header .container .category-header-text .category-title {
    color: var(--color-canvas-text);
    font-family: 'Poppins';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.category .most-popular {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 0;
    margin-top: 30px;
}

.category .most-popular h3 {
    align-items: center;
    display: flex;
    margin: 0;
}

.category .most-popular-icon {
    height: 20px;
    margin-right: 10px;
    width: auto;
}

.category .most-popular__wrapper {
    position: relative;
}

.category .most-popular .post-list .post-thumbnail {
    width: 130px;
    height: 85px;
    flex: 0 0 130px;
}

.category .site-header .header-middle {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .category .breadcrumbs__wrapper {
        margin-top: 120px;
    }

    .category .category-header {
        height: auto;
        margin-bottom: 30px;
    }

    .category .category-header::after {
        height: 100px;
        width: 100px;
    }

    .category .category-header .container {
        flex-direction: column;
        padding: 0;
    }

    .category .category-header .container .category-header-text {
        min-height: 200px;
        padding: 30px 15px;
    }

    .category .category-header .container .category-header-text .category-title {
        font-size: 30px;
    }

    .category .category-header .container .category-header-text .category-description {
        font-size: 16px;
    }

    .category .most-popular {
        border-radius: 0;
        margin-top: 0;
        padding: 30px 15px 0;
    }

    .category .most-popular .post-list .post-thumbnail {
        width: 74px;
        height: 50px;
        flex: 0 0 74px;
    }

    .category .navigation.pagination {
        margin-top: 18px;
    }

    .category .category-banner {
        margin-bottom: 64px;
        margin-top: 80px;
    }
}