﻿.updates-breadcrumb-copy {
    max-width: 720px;
    margin: 18px auto 0;
    text-align: center;
    color: var(--white-color);
}

.breadcrumb-section .breadcrumb-shape::before,
.breadcrumb-section .breadcrumb-shape::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    pointer-events: none;
    background: #2563eb;
    transform: translateX(-50%);
    opacity: .82;
}

.breadcrumb-section .breadcrumb-shape::before {
    top: 0;
    width: 1920px;
    height: 594px;
    -webkit-mask: url("../assets/images/breadcrumb/breadcrumb-shado-top.png") center top / 100% 100% no-repeat;
    mask: url("../assets/images/breadcrumb/breadcrumb-shado-top.png") center top / 100% 100% no-repeat;
}

.breadcrumb-section .breadcrumb-shape::after {
    bottom: 0;
    width: 1920px;
    height: 594px;
    -webkit-mask: url("../assets/images/breadcrumb/breadcrumb-shado-bottom.png") center bottom / 100% 100% no-repeat;
    mask: url("../assets/images/breadcrumb/breadcrumb-shado-bottom.png") center bottom / 100% 100% no-repeat;
}

.breadcrumb-section .breadcrumb-shado-top,
.breadcrumb-section .breadcrumb-shado-bottom {
    opacity: 0 !important;
}

.updates-toolbar-section {
    position: relative;
}

.updates-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px;
    border: 1px solid var(--border-color-one);
    border-radius: var(--border-radius-three);
    background: var(--background-one);
}

.updates-toolbar h2 {
    margin: 6px 0 6px;
}

.updates-toolbar p {
    margin: 0;
    color: var(--white-color);
}

.updates-filter-panel {
    flex: 1;
    max-width: 760px;
    display: grid;
    gap: 14px;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color-one);
    background: transparent;
    color: var(--white-color);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    transition: all .2s ease;
}

.pill:hover,
.pill.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.updates-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border-color-one);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
}

.updates-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white-color);
}

.updates-search input::placeholder {
    color: var(--body-color);
}

.icon-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: transparent;
    color: var(--body-color);
}

.icon-btn:hover {
    color: var(--white-color);
    background: rgba(255, 255, 255, .08);
}

.updates-blog-card {
    height: 100%;
    cursor: pointer;
}

.updates-blog-card .blog-grid-image figure {
    aspect-ratio: 16 / 10;
}

.updates-blog-card .blog-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.updates-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: #1d2027;
    color: #9ca3af;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.updates-blog-card .blog-grid-content {
    display: flex;
    flex-direction: column;
    min-height: 330px;
}

.updates-blog-card .update-version {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--primary-rgb-12);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
}

.updates-blog-card .update-summary {
    margin: 0 0 16px;
    color: var(--white-color);
}

.update-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 18px;
}

.update-tag {
    border: 1px solid var(--border-color-one);
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, .05);
}

.update-tag.major {
    border-color: rgba(242, 184, 75, .45);
    color: #f2b84b;
}

.update-tag.feature {
    border-color: rgba(34, 197, 94, .45);
    color: #22c55e;
}

.update-tag.fix {
    border-color: rgba(239, 68, 68, .45);
    color: #ef4444;
}

.blog-grid-button {
    margin-top: auto;
}

.update-skeleton {
    min-height: 440px;
    opacity: .55;
}

.updates-state {
    max-width: 620px;
    margin: 32px auto 0;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color-one);
    border-radius: var(--border-radius-three);
    background: var(--background-one);
}

.updates-state i {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 14px;
}

.updates-state p,
.updates-support .section-title p {
    color: var(--white-color);
}

.hidden {
    display: none !important;
}

.page-list button {
    border: 0;
}

.updates-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
    border: 1px solid var(--border-color-one);
    border-radius: var(--border-radius-three);
    background: var(--background-one);
}

.updates-support .section-title {
    max-width: 760px;
}

.updates-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 991px) {
    .updates-toolbar,
    .updates-support {
        align-items: stretch;
        flex-direction: column;
    }

    .updates-filter-panel {
        max-width: none;
    }
}
