.blog-list-breadcrumb {
    background: radial-gradient(circle at 20% 0, rgba(201, 0, 89, 0.3), rgba(5, 5, 5, 0.96) 62%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-list-page {
    background: #050505;
    padding: 70px 0 110px;
    position: relative;
    overflow: hidden;
}

.blog-list-page::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -12%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(201, 0, 89, 0.22), transparent 68%);
    pointer-events: none;
}

.blog-list-page::after {
    content: '';
    position: absolute;
    left: -14%;
    bottom: 4%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 62%);
    pointer-events: none;
}

.blog-list-page .container {
    position: relative;
    z-index: 1;
}

.blog-list-hero {
    max-width: 880px;
    margin: 0 auto 52px;
    text-align: center;
}

.blog-list-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(201, 0, 89, 0.12);
    border: 1px solid rgba(201, 0, 89, 0.28);
    color: #C90059;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-list-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 20px;
}

.blog-list-copy,
.blog-list-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.85;
    margin: 0;
}

.blog-list-layout {
    align-items: flex-start;
}

.blog-list-main {
    padding-right: 28px;
}

.blog-card-row {
    row-gap: 28px;
}

.blog-card-col {
    margin-bottom: 0;
}

.blog-list-page .single-blog-box {
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-list-page .single-blog-box:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 0, 89, 0.48);
    box-shadow: 0 32px 90px rgba(201, 0, 89, 0.16);
}

.blog-list-page .single-blog-thumb {
    height: 250px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.blog-list-page .single-blog-thumb::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
    pointer-events: none;
}

.blog-list-page .single-blog-thumb a,
.blog-list-page .single-blog-thumb img {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-list-page .single-blog-thumb img {
    object-fit: cover;
}

.blog-list-page .single-blog-box:hover .single-blog-thumb img {
    transform: scale(1.06);
}

.single-blog-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-list-page .blog-title h3 {
    font-size: 22px;
    line-height: 1.45;
    margin: 0 0 14px;
}

.blog-list-page .blog-title h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-list-page .single-blog-box:hover .blog-title h3 a {
    color: #C90059;
}

.blog-list-page .blog-title p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-page .meta-blog {
    margin-top: auto;
    padding-top: 24px;
}

.blog-list-page .meta-blog p {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    letter-spacing: 0.3px;
    margin: 0;
}

.blog-list-page .pagination-area {
    margin-top: 46px;
    display: flex;
    justify-content: center;
}

.blog-list-page .pagination-area ul,
.blog-list-page .pagination-area .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.blog-list-page .pagination-area li {
    list-style: none;
}

.blog-list-page .pagination-area a,
.blog-list-page .pagination-area span {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.blog-list-page .pagination-area a:hover,
.blog-list-page .pagination-area .active span,
.blog-list-page .pagination-area span.current {
    background: #C90059;
    border-color: #C90059;
    color: #fff;
}

.blog-list-after {
    width: 100%;
    margin-top: 44px;
    padding: 34px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
}

.blog-list-sidebar {
    position: sticky;
    top: 24px;
}

.blog-list-page .widget-categories-box {
    background: rgba(8, 8, 8, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.blog-list-page .categories-title h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 24px;
    padding-bottom: 14px;
    position: relative;
}

.blog-list-page .categories-title h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #C90059, transparent);
}

.blog-list-page .widget-categories-menu ul {
    padding: 0;
    margin: 0;
}

.blog-list-page .widget-categories-menu li {
    list-style: none;
    margin-bottom: 12px;
}

.blog-list-page .widget-categories-menu li:last-child {
    margin-bottom: 0;
}

.blog-list-page .widget-categories-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.blog-list-page .widget-categories-menu a:hover {
    background: rgba(201, 0, 89, 0.16);
    color: #fff;
    transform: translateX(4px);
}

.blog-list-page .sidber-widget-recent-post {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 14px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.blog-list-page .sidber-widget-recent-post:hover {
    transform: translateY(-3px);
    background: rgba(201, 0, 89, 0.1);
    border-color: rgba(201, 0, 89, 0.32);
}

.blog-list-page .recent-widget-thumb {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    overflow: hidden;
    flex: 0 0 74px;
    background: #000;
}

.blog-list-page .recent-widget-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-list-page .recent-widget-content span {
    color: #C90059;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    display: block;
    margin-bottom: 7px;
}

.blog-list-page .recent-widget-content a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-page .recent-widget-content a:hover {
    color: #fff;
}

.blog-list-page .products-collection {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 14px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-list-page .products-collection:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 0, 89, 0.32);
}

.blog-list-page .product-thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.blog-list-page .products-content h6 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-page .product-price span {
    color: #C90059;
    font-weight: 800;
}

.blog-list-page .product-icon-list ul {
    display: flex;
    gap: 2px;
    padding: 0;
    margin: 6px 0 0;
}

.blog-list-page .product-icon-list li {
    list-style: none;
    color: #ffbf3d;
    font-size: 12px;
}

.blog-list-page .widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-list-page .widget-tags a {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    text-decoration: none;
}

.blog-list-page .widget-tags a:hover {
    background: #C90059;
    border-color: #C90059;
    color: #fff;
}

@media (max-width: 1199px) {
    .blog-list-main {
        padding-right: 15px;
    }

    .blog-list-sidebar {
        position: static;
        margin-top: 42px;
    }
}

@media (max-width: 767px) {
    .blog-list-page {
        padding: 48px 0 82px;
    }

    .blog-list-hero {
        margin-bottom: 34px;
    }

    .blog-list-hero h1 {
        letter-spacing: 2px;
    }

    .blog-list-copy,
    .blog-list-copy p {
        font-size: 15px;
    }

    .blog-list-page .single-blog-thumb {
        height: 220px;
    }

    .single-blog-content,
    .blog-list-page .widget-categories-box {
        padding: 22px;
    }

    .blog-list-page .blog-title h3 {
        font-size: 20px;
    }

    .blog-list-after {
        padding: 24px;
    }
}
