.ann-cat-siblings-wrap {
    position: relative;
    margin: 0 -10px 20px;
    padding: 12px;
    background: #fff;
    overflow: hidden;
    clear: both;
}

.ann-cat-siblings-title {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #1d2327;
}

.ann-cat-siblings-slider {
    position: relative;
}

.ann-cat-siblings-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;

    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    transition: all 0.2s ease;
}

.ann-cat-siblings-nav:hover {
    background: rgba(0, 0, 0, 0.22);
}

.ann-cat-siblings-prev {
    left: 0;
}

.ann-cat-siblings-next {
    right: 0;
}

.ann-cat-siblings-nav span {
    font-size: 24px;
    line-height: 1;
    transform: translateY(-1px);
}

.ann-cat-siblings-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (6.7 * 12px)) / 7.7);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    padding-left: 16px;
    padding-right: 36px;
    padding-bottom: 4px;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ann-cat-siblings-track::-webkit-scrollbar {
    display: none;
}

.ann-cat-siblings-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.ann-cat-siblings-page {
    width: 24px;
    height: 4px;
    min-height: unset;
    border: 0;
    border-radius: 999px;
    background: #d7dce2;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ann-cat-siblings-page.is-active {
    background: #198754;
    width: 39px;
}

.ann-cat-siblings-track::-webkit-scrollbar {
    height: 6px;
}

.ann-cat-siblings-track::-webkit-scrollbar-thumb {
    background: #c9ced6;
    border-radius: 999px;
}

.ann-cat-sibling-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 140px;
    padding: 10px 8px;
    text-decoration: none;
    border: 1px solid #e3e7eb;
    border-radius: 10px;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.ann-cat-sibling-item:hover {
    border-color: #198754;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(2px);
}

.ann-cat-sibling-item.is-active {
    border-color: #198754;
    box-shadow: inset 0 0 0 1px #198754;
}

.ann-cat-sibling-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 8px;
}

.ann-cat-sibling-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.ann-cat-sibling-name {
    width: 100%;
    text-align: center;
    color: #1d2327;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 849px) {
    .ann-cat-siblings-wrap {
        padding: 10px;
        padding-bottom: 0;
        margin-top: 0;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 15px;
    }

    .ann-cat-siblings-title {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .ann-cat-siblings-nav {
        width: 34px;
        height: 34px;
        border-radius: 6px;
        margin-bottom: 0;
        transition: opacity 0.9s ease;
    }

    .ann-cat-siblings-track {
        grid-auto-columns: calc((100% - (2.7 * 8px)) / 3.7);
        gap: 8px;
        padding-left: 0;
        padding-right: 0;
    }

    .ann-cat-sibling-item {
        min-height: 118px;
        padding: 6px 5px;
        border-radius: 8px;
    }

    .ann-cat-sibling-name {
        line-height: 1.3;
    }

    .ann-cat-siblings-pagination {
        gap: 5px;
        margin-top: 10px;
    }

    .ann-cat-siblings-page {
        width: 18px;
        height: 4px;
    }

    .ann-cat-siblings-page.is-active {
        width: 39px;
    }
}